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

* Re: [PATCH] klp: remove superfluous errors in asm/livepatch.h
  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-15 11:37   ` [PATCH] " Miroslav Benes
  0 siblings, 2 replies; 9+ messages in thread
From: Josh Poimboeuf @ 2016-03-04 21:45 UTC (permalink / raw)
  To: Miroslav Benes
  Cc: sjenning, vojtech, jikos, pmladek, mpe, live-patching,
	linux-kernel

On Fri, Mar 04, 2016 at 10:53:39AM +0100, Miroslav Benes wrote:
> 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>

Looks fine to me.  While we're at it, do we even need the '#ifdef
CONFIG_LIVEPATCH' in these files?  And in include/linux/livepatch.h?

> ---
>  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
> 

-- 
Josh

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

* Re: [PATCH] klp: remove superfluous errors in asm/livepatch.h
  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-15 11:37   ` [PATCH] " Miroslav Benes
  1 sibling, 2 replies; 9+ messages in thread
From: Jiri Kosina @ 2016-03-06 21:13 UTC (permalink / raw)
  To: Josh Poimboeuf
  Cc: Miroslav Benes, sjenning, vojtech, pmladek, mpe, live-patching,
	linux-kernel

On Fri, 4 Mar 2016, Josh Poimboeuf wrote:

> > 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>
> 
> Looks fine to me.  

Thanks. I consider this to be your Ack then :) (if you disagree, please 
shout loudly).

> While we're at it, do we even need the '#ifdef CONFIG_LIVEPATCH' in 
> these files?  And in include/linux/livepatch.h?

You are right, this seems indeed completely unnecessary. I'll remove it 
for 4.6 as well, if noone has any objections.

-- 
Jiri Kosina
SUSE Labs

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

* Re: [PATCH] klp: remove superfluous errors in asm/livepatch.h
  2016-03-06 21:13   ` Jiri Kosina
@ 2016-03-07  4:10     ` Josh Poimboeuf
  2016-03-08 21:28     ` Jessica Yu
  1 sibling, 0 replies; 9+ messages in thread
From: Josh Poimboeuf @ 2016-03-07  4:10 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: Miroslav Benes, sjenning, vojtech, pmladek, mpe, live-patching,
	linux-kernel

On Sun, Mar 06, 2016 at 10:13:56PM +0100, Jiri Kosina wrote:
> On Fri, 4 Mar 2016, Josh Poimboeuf wrote:
> 
> > > 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>
> > 
> > Looks fine to me.  
> 
> Thanks. I consider this to be your Ack then :) (if you disagree, please 
> shout loudly).

:-)

Acked-by: Josh Poimboeuf <jpoimboe@redhat.com>

> 
> > While we're at it, do we even need the '#ifdef CONFIG_LIVEPATCH' in 
> > these files?  And in include/linux/livepatch.h?
> 
> You are right, this seems indeed completely unnecessary. I'll remove it 
> for 4.6 as well, if noone has any objections.

-- 
Josh

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

* Re: klp: remove superfluous errors in asm/livepatch.h
  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
  1 sibling, 2 replies; 9+ messages in thread
From: Jessica Yu @ 2016-03-08 21:28 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: Josh Poimboeuf, Miroslav Benes, sjenning, vojtech, pmladek, mpe,
	live-patching, linux-kernel

+++ Jiri Kosina [06/03/16 22:13 +0100]:
>On Fri, 4 Mar 2016, Josh Poimboeuf wrote:
>
>> > 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>
>>
>> Looks fine to me.
>
>Thanks. I consider this to be your Ack then :) (if you disagree, please
>shout loudly).
>
>> While we're at it, do we even need the '#ifdef CONFIG_LIVEPATCH' in
>> these files?  And in include/linux/livepatch.h?
>
>You are right, this seems indeed completely unnecessary. I'll remove it
>for 4.6 as well, if noone has any objections.

Hm, I should've caught this earlier, but the notifier cleanup patch
that removes the livepatch module notifier had kernel/module.c include
livepatch.h for the klp_module_{coming,going} function stubs in the
!CONFIG_LIVEPATCH case. See here: https://lkml.org/lkml/2016/2/8/1182

Looking back, I now don't think it makes sense for module.c to include
all those livepatch definitions in the first place, since all it
needed was the klp_module_{coming,going} declarations. I guess my
question is, since we've removed the #ifdef CONFIG_LIVEPATCH blocks
from livepatch.h, where might be a better place for the
klp_module_{coming,going} stubs? Perhaps they could go in module.h
instead?

Jessica

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

* Re: klp: remove superfluous errors in asm/livepatch.h
  2016-03-08 21:28     ` Jessica Yu
@ 2016-03-09 10:06       ` Petr Mladek
  2016-03-09 10:39       ` Jiri Kosina
  1 sibling, 0 replies; 9+ messages in thread
From: Petr Mladek @ 2016-03-09 10:06 UTC (permalink / raw)
  To: Jessica Yu
  Cc: Jiri Kosina, Josh Poimboeuf, Miroslav Benes, sjenning, vojtech,
	mpe, live-patching, linux-kernel

On Tue 2016-03-08 16:28:20, Jessica Yu wrote:
> >On Fri, 4 Mar 2016, Josh Poimboeuf wrote:
> >>While we're at it, do we even need the '#ifdef CONFIG_LIVEPATCH' in
> >>these files?  And in include/linux/livepatch.h?
> >
> >You are right, this seems indeed completely unnecessary. I'll remove it
> >for 4.6 as well, if noone has any objections.
> 
> Hm, I should've caught this earlier, but the notifier cleanup patch
> that removes the livepatch module notifier had kernel/module.c include
> livepatch.h for the klp_module_{coming,going} function stubs in the
> !CONFIG_LIVEPATCH case. See here: https://lkml.org/lkml/2016/2/8/1182

Great catch! And you are in time because Mirek has vacation this week :-)

> Looking back, I now don't think it makes sense for module.c to include
> all those livepatch definitions in the first place, since all it
> needed was the klp_module_{coming,going} declarations. I guess my
> question is, since we've removed the #ifdef CONFIG_LIVEPATCH blocks
> from livepatch.h, where might be a better place for the
> klp_module_{coming,going} stubs? Perhaps they could go in module.h
> instead?

I personally prefer to keep the klp_module_{coming,going} declarations
in livepatch.h. It means to keep the '#ifdef CONFIG_LIVEPATCH' there
as well. It is a standard solution. It helps to find things where
one would expect them.

Best Regards,
Petr

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

* Re: klp: remove superfluous errors in asm/livepatch.h
  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
  1 sibling, 1 reply; 9+ messages in thread
From: Jiri Kosina @ 2016-03-09 10:39 UTC (permalink / raw)
  To: Jessica Yu
  Cc: Josh Poimboeuf, Miroslav Benes, sjenning, vojtech, pmladek, mpe,
	live-patching, linux-kernel

On Tue, 8 Mar 2016, Jessica Yu wrote:

> Hm, I should've caught this earlier, but the notifier cleanup patch
> that removes the livepatch module notifier had kernel/module.c include
> livepatch.h for the klp_module_{coming,going} function stubs in the
> !CONFIG_LIVEPATCH case. See here: https://lkml.org/lkml/2016/2/8/1182
> 
> Looking back, I now don't think it makes sense for module.c to include
> all those livepatch definitions in the first place, since all it
> needed was the klp_module_{coming,going} declarations. I guess my
> question is, since we've removed the #ifdef CONFIG_LIVEPATCH blocks
> from livepatch.h, where might be a better place for the
> klp_module_{coming,going} stubs? Perhaps they could go in module.h
> instead?

Well, once there actually are alternate stubs to be included through the 
header file (like in the proposed notifier removal), it indeed makes sense 
to reintroduce the #ifdef. And once it's there, it probably doesn't make 
too much sense to have it guard only portion of the file.

Thanks,

-- 
Jiri Kosina
SUSE Labs

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

* Re: klp: remove superfluous errors in asm/livepatch.h
  2016-03-09 10:39       ` Jiri Kosina
@ 2016-03-09 16:11         ` Josh Poimboeuf
  0 siblings, 0 replies; 9+ messages in thread
From: Josh Poimboeuf @ 2016-03-09 16:11 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: Jessica Yu, Miroslav Benes, sjenning, vojtech, pmladek, mpe,
	live-patching, linux-kernel

On Wed, Mar 09, 2016 at 11:39:05AM +0100, Jiri Kosina wrote:
> On Tue, 8 Mar 2016, Jessica Yu wrote:
> 
> > Hm, I should've caught this earlier, but the notifier cleanup patch
> > that removes the livepatch module notifier had kernel/module.c include
> > livepatch.h for the klp_module_{coming,going} function stubs in the
> > !CONFIG_LIVEPATCH case. See here: https://lkml.org/lkml/2016/2/8/1182
> > 
> > Looking back, I now don't think it makes sense for module.c to include
> > all those livepatch definitions in the first place, since all it
> > needed was the klp_module_{coming,going} declarations. I guess my
> > question is, since we've removed the #ifdef CONFIG_LIVEPATCH blocks
> > from livepatch.h, where might be a better place for the
> > klp_module_{coming,going} stubs? Perhaps they could go in module.h
> > instead?
> 
> Well, once there actually are alternate stubs to be included through the 
> header file (like in the proposed notifier removal), it indeed makes sense 
> to reintroduce the #ifdef. And once it's there, it probably doesn't make 
> too much sense to have it guard only portion of the file.

It's a minor issue but I think it would be cleaner if we only guard the
parts of the file which need to be guarded.

-- 
Josh

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

* Re: [PATCH] klp: remove superfluous errors in asm/livepatch.h
  2016-03-04 21:45 ` Josh Poimboeuf
  2016-03-06 21:13   ` Jiri Kosina
@ 2016-03-15 11:37   ` Miroslav Benes
  1 sibling, 0 replies; 9+ messages in thread
From: Miroslav Benes @ 2016-03-15 11:37 UTC (permalink / raw)
  To: Josh Poimboeuf
  Cc: sjenning, vojtech, jikos, pmladek, mpe, live-patching,
	linux-kernel

On Fri, 4 Mar 2016, Josh Poimboeuf wrote:

> On Fri, Mar 04, 2016 at 10:53:39AM +0100, Miroslav Benes wrote:
> > 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>
> 
> Looks fine to me.  While we're at it, do we even need the '#ifdef
> CONFIG_LIVEPATCH' in these files?  And in include/linux/livepatch.h?

IIRC there was a reason to this. If you build a patch module on (against) 
the kernel with CONFIG_LIVEPATCH=n the build fails immediately with 
those ifdefs, because there is no declaration of needed symbols present 
(klp_register_patch(), data structures and such). Without ifdefs the build 
succeeds and modprobe/insmod fails. The former could be advantageous in 
some scenarios. 

But since the guard in include/linux/livepatch.h (which is the only 
important header file in fact) returns with Jessica's patches for better 
reason there is no point to discuss this further :)

Miroslav

^ permalink raw reply	[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.