Skip to content

Commit

Permalink
klp: remove CONFIG_LIVEPATCH dependency from klp headers
Browse files Browse the repository at this point in the history
There is no need for livepatch.h (generic and arch-specific) to depend
on CONFIG_LIVEPATCH. Remove that superfluous dependency.

Reported-by: Josh Poimboeuf <jpoimboe@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
Jiri Kosina committed Mar 6, 2016
1 parent b24b78a commit 335e073
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions arch/s390/include/asm/livepatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

#include <linux/module.h>

#ifdef CONFIG_LIVEPATCH
static inline int klp_check_compiler_support(void)
{
return 0;
Expand All @@ -36,6 +35,5 @@ static inline void klp_arch_set_pc(struct pt_regs *regs, unsigned long ip)
{
regs->psw.addr = ip;
}
#endif

#endif
2 changes: 0 additions & 2 deletions arch/x86/include/asm/livepatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
#include <linux/module.h>
#include <linux/ftrace.h>

#ifdef CONFIG_LIVEPATCH
static inline int klp_check_compiler_support(void)
{
#ifndef CC_USING_FENTRY
Expand All @@ -40,6 +39,5 @@ static inline void klp_arch_set_pc(struct pt_regs *regs, unsigned long ip)
{
regs->ip = ip;
}
#endif

#endif /* _ASM_X86_LIVEPATCH_H */
4 changes: 0 additions & 4 deletions include/linux/livepatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
#include <linux/module.h>
#include <linux/ftrace.h>

#if IS_ENABLED(CONFIG_LIVEPATCH)

#include <asm/livepatch.h>

enum klp_state {
Expand Down Expand Up @@ -134,6 +132,4 @@ int klp_unregister_patch(struct klp_patch *);
int klp_enable_patch(struct klp_patch *);
int klp_disable_patch(struct klp_patch *);

#endif /* CONFIG_LIVEPATCH */

#endif /* _LINUX_LIVEPATCH_H_ */

0 comments on commit 335e073

Please sign in to comment.