All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] klp: remove superfluous errors in asm/livepatch.h
@ 2016-03-04  9:53 Miroslav Benes
  2016-03-04 21:45 ` Josh Poimboeuf
  0 siblings, 1 reply; 9+ messages in thread
From: Miroslav Benes @ 2016-03-04  9:53 UTC (permalink / raw)
  To: jpoimboe, sjenning, vojtech, jikos
  Cc: pmladek, mpe, live-patching, linux-kernel, Miroslav Benes

There is an #error in asm/livepatch.h for both x86 and s390 in
!CONFIG_LIVEPATCH cases. It does not make much sense as pointed out by
Michael Ellerman. One can happily include asm/livepatch.h with
CONFIG_LIVEPATCH. Remove it as useless.

Suggested-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Miroslav Benes <mbenes@suse.cz>
---
 arch/s390/include/asm/livepatch.h | 2 --
 arch/x86/include/asm/livepatch.h  | 2 --
 2 files changed, 4 deletions(-)

diff --git a/arch/s390/include/asm/livepatch.h b/arch/s390/include/asm/livepatch.h
index a52b6cca873d..105074582d86 100644
--- a/arch/s390/include/asm/livepatch.h
+++ b/arch/s390/include/asm/livepatch.h
@@ -36,8 +36,6 @@ static inline void klp_arch_set_pc(struct pt_regs *regs, unsigned long ip)
 {
 	regs->psw.addr = ip;
 }
-#else
-#error Include linux/livepatch.h, not asm/livepatch.h
 #endif
 
 #endif
diff --git a/arch/x86/include/asm/livepatch.h b/arch/x86/include/asm/livepatch.h
index e795f5274217..8acfe798625b 100644
--- a/arch/x86/include/asm/livepatch.h
+++ b/arch/x86/include/asm/livepatch.h
@@ -40,8 +40,6 @@ static inline void klp_arch_set_pc(struct pt_regs *regs, unsigned long ip)
 {
 	regs->ip = ip;
 }
-#else
-#error Include linux/livepatch.h, not asm/livepatch.h
 #endif
 
 #endif /* _ASM_X86_LIVEPATCH_H */
-- 
2.7.2

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-03-15 11:37 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-04  9:53 [PATCH] klp: remove superfluous errors in asm/livepatch.h Miroslav Benes
2016-03-04 21:45 ` Josh Poimboeuf
2016-03-06 21:13   ` Jiri Kosina
2016-03-07  4:10     ` Josh Poimboeuf
2016-03-08 21:28     ` Jessica Yu
2016-03-09 10:06       ` Petr Mladek
2016-03-09 10:39       ` Jiri Kosina
2016-03-09 16:11         ` Josh Poimboeuf
2016-03-15 11:37   ` [PATCH] " Miroslav Benes

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.