public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cred: Remove unnecessary kdebug atomic reads
@ 2015-08-25 16:53 Joe Perches
  2015-08-25 20:39 ` Andrew Morton
  0 siblings, 1 reply; 6+ messages in thread
From: Joe Perches @ 2015-08-25 16:53 UTC (permalink / raw)
  To: David Howells, James Morris; +Cc: Andrew Morton, LKML

commit e0e817392b9a ("CRED: Add some configurable debugging [try #6]")
added the kdebug mechanism to this file back in 2009.

The kdebug macro calls no_printk which always evaluates arguments.

Most of the kdebug uses have an unnecessary call of
	atomic_read(&cred->usage)

Make the kdebug macro do nothing by defining it with
	do { if (0) no_printk(...); } while (0)
when not enabled.

$ size kernel/cred.o* (defconfig x86-64)
   text	   data	    bss	    dec	    hex	filename
   2748	    336	      8	   3092	    c14	kernel/cred.o.new
   2788	    336	      8	   3132	    c3c	kernel/cred.o.old

Miscellanea:
o Neaten the #define kdebug macros while there

Signed-off-by: Joe Perches <joe@perches.com>
---
 kernel/cred.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/kernel/cred.c b/kernel/cred.c
index ec1c076..71179a0 100644
--- a/kernel/cred.c
+++ b/kernel/cred.c
@@ -20,11 +20,16 @@
 #include <linux/cn_proc.h>
 
 #if 0
-#define kdebug(FMT, ...) \
-	printk("[%-5.5s%5u] "FMT"\n", current->comm, current->pid ,##__VA_ARGS__)
+#define kdebug(FMT, ...)						\
+	printk("[%-5.5s%5u] " FMT "\n",					\
+	       current->comm, current->pid, ##__VA_ARGS__)
 #else
-#define kdebug(FMT, ...) \
-	no_printk("[%-5.5s%5u] "FMT"\n", current->comm, current->pid ,##__VA_ARGS__)
+#define kdebug(FMT, ...)						\
+do {									\
+	if (0)								\
+		no_printk("[%-5.5s%5u] " FMT "\n",			\
+			  current->comm, current->pid, ##__VA_ARGS__);	\
+} while (0)
 #endif
 
 static struct kmem_cache *cred_jar;



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

* Re: [PATCH] cred: Remove unnecessary kdebug atomic reads
  2015-08-25 16:53 [PATCH] cred: Remove unnecessary kdebug atomic reads Joe Perches
@ 2015-08-25 20:39 ` Andrew Morton
  2015-08-25 20:51   ` Joe Perches
  2015-08-25 23:30   ` David Howells
  0 siblings, 2 replies; 6+ messages in thread
From: Andrew Morton @ 2015-08-25 20:39 UTC (permalink / raw)
  To: Joe Perches; +Cc: David Howells, James Morris, LKML

On Tue, 25 Aug 2015 09:53:51 -0700 Joe Perches <joe@perches.com> wrote:

> commit e0e817392b9a ("CRED: Add some configurable debugging [try #6]")
> added the kdebug mechanism to this file back in 2009.
> 
> The kdebug macro calls no_printk which always evaluates arguments.
> 
> Most of the kdebug uses have an unnecessary call of
> 	atomic_read(&cred->usage)
> 
> Make the kdebug macro do nothing by defining it with
> 	do { if (0) no_printk(...); } while (0)
> when not enabled.
> 
> $ size kernel/cred.o* (defconfig x86-64)
>    text	   data	    bss	    dec	    hex	filename
>    2748	    336	      8	   3092	    c14	kernel/cred.o.new
>    2788	    336	      8	   3132	    c3c	kernel/cred.o.old
> 
> Miscellanea:
> o Neaten the #define kdebug macros while there
> 
> ...
>
> --- a/kernel/cred.c
> +++ b/kernel/cred.c
> @@ -20,11 +20,16 @@
>  #include <linux/cn_proc.h>
>  
>  #if 0
> -#define kdebug(FMT, ...) \
> -	printk("[%-5.5s%5u] "FMT"\n", current->comm, current->pid ,##__VA_ARGS__)
> +#define kdebug(FMT, ...)						\
> +	printk("[%-5.5s%5u] " FMT "\n",					\
> +	       current->comm, current->pid, ##__VA_ARGS__)
>  #else
> -#define kdebug(FMT, ...) \
> -	no_printk("[%-5.5s%5u] "FMT"\n", current->comm, current->pid ,##__VA_ARGS__)
> +#define kdebug(FMT, ...)						\
> +do {									\
> +	if (0)								\
> +		no_printk("[%-5.5s%5u] " FMT "\n",			\
> +			  current->comm, current->pid, ##__VA_ARGS__);	\
> +} while (0)
>  #endif
>  
>  static struct kmem_cache *cred_jar;

Did you consider doing this within no_printk()?  That would break code
which is relying on side-effects in the evaluation of a printk arg but
that's pretty weird and I bet there isn't (and won't be) such code.


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

* Re: [PATCH] cred: Remove unnecessary kdebug atomic reads
  2015-08-25 20:39 ` Andrew Morton
@ 2015-08-25 20:51   ` Joe Perches
  2015-08-25 20:56     ` Andrew Morton
  2015-08-25 23:30   ` David Howells
  1 sibling, 1 reply; 6+ messages in thread
From: Joe Perches @ 2015-08-25 20:51 UTC (permalink / raw)
  To: Andrew Morton; +Cc: David Howells, James Morris, LKML, Julia Lawall

On Tue, 2015-08-25 at 13:39 -0700, Andrew Morton wrote:
> On Tue, 25 Aug 2015 09:53:51 -0700 Joe Perches <joe@perches.com> wrote:
> > commit e0e817392b9a ("CRED: Add some configurable debugging [try #6]")
> > added the kdebug mechanism to this file back in 2009.
> > 
> > The kdebug macro calls no_printk which always evaluates arguments.
> > 
> > Most of the kdebug uses have an unnecessary call of
> > 	atomic_read(&cred->usage)
> > 
> > Make the kdebug macro do nothing by defining it with
> > 	do { if (0) no_printk(...); } while (0)
> > when not enabled.
[]
> Did you consider doing this within no_printk()?

Yes.

> That would break code
> which is relying on side-effects in the evaluation of a printk arg but
> that's pretty weird and I bet there isn't (and won't be) such code.

I'll bet you there is more than a little and I don't want to
experiment with it unconditionally.

All printks would need to be evaluated for that side-effect.

Safer would be to create a new no_eval_printk macro and convert
the no_printk uses over to that as appropriate and possibly create
a CONFIG_ option to use no_eval_printk instead of no_printk/printk
and let the adventurous find the side-effects.

Maybe a coccinelle script can be written to find all the locations
with evaluated non-constant expression arguments with side-effects.


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

* Re: [PATCH] cred: Remove unnecessary kdebug atomic reads
  2015-08-25 20:51   ` Joe Perches
@ 2015-08-25 20:56     ` Andrew Morton
  2015-08-25 21:10       ` Joe Perches
  0 siblings, 1 reply; 6+ messages in thread
From: Andrew Morton @ 2015-08-25 20:56 UTC (permalink / raw)
  To: Joe Perches; +Cc: David Howells, James Morris, LKML, Julia Lawall

On Tue, 25 Aug 2015 13:51:06 -0700 Joe Perches <joe@perches.com> wrote:

> On Tue, 2015-08-25 at 13:39 -0700, Andrew Morton wrote:
> > On Tue, 25 Aug 2015 09:53:51 -0700 Joe Perches <joe@perches.com> wrote:
> > > commit e0e817392b9a ("CRED: Add some configurable debugging [try #6]")
> > > added the kdebug mechanism to this file back in 2009.
> > > 
> > > The kdebug macro calls no_printk which always evaluates arguments.
> > > 
> > > Most of the kdebug uses have an unnecessary call of
> > > 	atomic_read(&cred->usage)
> > > 
> > > Make the kdebug macro do nothing by defining it with
> > > 	do { if (0) no_printk(...); } while (0)
> > > when not enabled.
> []
> > Did you consider doing this within no_printk()?
> 
> Yes.
> 
> > That would break code
> > which is relying on side-effects in the evaluation of a printk arg but
> > that's pretty weird and I bet there isn't (and won't be) such code.
> 
> I'll bet you there is more than a little and I don't want to
> experiment with it unconditionally.
> 
> All printks would need to be evaluated for that side-effect.
> 
> Safer would be to create a new no_eval_printk macro and convert
> the no_printk uses over to that as appropriate and possibly create
> a CONFIG_ option to use no_eval_printk instead of no_printk/printk
> and let the adventurous find the side-effects.
> 
> Maybe a coccinelle script can be written to find all the locations
> with evaluated non-constant expression arguments with side-effects.

wimp.


That duplicated printk in cred.c is nasty.  We could do this?

#if 0
#define __kdebug printk
#else
#define __kdebug if (0) no_printk
#endif

#define kdebug(FMT, ...) \
	__kdebug(...)



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

* Re: [PATCH] cred: Remove unnecessary kdebug atomic reads
  2015-08-25 20:56     ` Andrew Morton
@ 2015-08-25 21:10       ` Joe Perches
  0 siblings, 0 replies; 6+ messages in thread
From: Joe Perches @ 2015-08-25 21:10 UTC (permalink / raw)
  To: Andrew Morton; +Cc: David Howells, James Morris, LKML, Julia Lawall

On Tue, 2015-08-25 at 13:56 -0700, Andrew Morton wrote:
> On Tue, 25 Aug 2015 13:51:06 -0700 Joe Perches <joe@perches.com> wrote:
> 
> > On Tue, 2015-08-25 at 13:39 -0700, Andrew Morton wrote:
> > > On Tue, 25 Aug 2015 09:53:51 -0700 Joe Perches <joe@perches.com> wrote:
> > > > commit e0e817392b9a ("CRED: Add some configurable debugging [try #6]")
> > > > added the kdebug mechanism to this file back in 2009.
> > > > 
> > > > The kdebug macro calls no_printk which always evaluates arguments.
> > > > 
> > > > Most of the kdebug uses have an unnecessary call of
> > > > 	atomic_read(&cred->usage)
> > > > 
> > > > Make the kdebug macro do nothing by defining it with
> > > > 	do { if (0) no_printk(...); } while (0)
> > > > when not enabled.
> > []
> > > Did you consider doing this within no_printk()?
> > 
> > Yes.
> > 
> > > That would break code
> > > which is relying on side-effects in the evaluation of a printk arg but
> > > that's pretty weird and I bet there isn't (and won't be) such code.
> > 
> > I'll bet you there is more than a little and I don't want to
> > experiment with it unconditionally.
> > 
> > All printks would need to be evaluated for that side-effect.
> > 
> > Safer would be to create a new no_eval_printk macro and convert
> > the no_printk uses over to that as appropriate and possibly create
> > a CONFIG_ option to use no_eval_printk instead of no_printk/printk
> > and let the adventurous find the side-effects.
> > 
> > Maybe a coccinelle script can be written to find all the locations
> > with evaluated non-constant expression arguments with side-effects.
> 
> wimp.

twice shy...

Coccinelle isn't very good at calling tree analysis, so it'd
be a difficult thing for it to do well anyway.

btw; I seems to recall suggestions around the same thing when
no_printk was moved from subsystems to kernel.h by David Howells
in 2010.

> That duplicated printk in cred.c is nasty.  We could do this?
> 
> #if 0
> #define __kdebug printk
> #else
> #define __kdebug if (0) no_printk
> #endif

You could, but what's there is a very common idiom and what
you suggest is unsafe for if/else



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

* Re: [PATCH] cred: Remove unnecessary kdebug atomic reads
  2015-08-25 20:39 ` Andrew Morton
  2015-08-25 20:51   ` Joe Perches
@ 2015-08-25 23:30   ` David Howells
  1 sibling, 0 replies; 6+ messages in thread
From: David Howells @ 2015-08-25 23:30 UTC (permalink / raw)
  To: Andrew Morton; +Cc: dhowells, Joe Perches, James Morris, LKML

Andrew Morton <akpm@linux-foundation.org> wrote:

> Did you consider doing this within no_printk()?  That would break code
> which is relying on side-effects in the evaluation of a printk arg but
> that's pretty weird and I bet there isn't (and won't be) such code.

The reasons that no_printk() is like it is are (1) so that the side-effects
stay intact and (2) you still get format warnings.  If someone prints a device
register, for example, it *must* work the same whether or not you use printk()
or no_printk().  Of course, printing a device register like this is probably
not a good idea...

David

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

end of thread, other threads:[~2015-08-25 23:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-25 16:53 [PATCH] cred: Remove unnecessary kdebug atomic reads Joe Perches
2015-08-25 20:39 ` Andrew Morton
2015-08-25 20:51   ` Joe Perches
2015-08-25 20:56     ` Andrew Morton
2015-08-25 21:10       ` Joe Perches
2015-08-25 23:30   ` David Howells

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox