All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] sched/sysctl: Fix attributes of some extern declarations
       [not found] ` <20171030082612.omuaefugp5nmnnfy@hirez.programming.kicks-ass.net>
@ 2017-10-30 17:27   ` Matthias Kaehlcke
  2017-10-30 17:42     ` Peter Zijlstra
  0 siblings, 1 reply; 2+ messages in thread
From: Matthias Kaehlcke @ 2017-10-30 17:27 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Ingo Molnar, Shile Zhang, linux-kernel, Nick Desaulniers,
	Douglas Anderson, Guenter Roeck

El Mon, Oct 30, 2017 at 09:26:12AM +0100 Peter Zijlstra ha dit:

> On Fri, Oct 27, 2017 at 04:40:20PM -0700, Matthias Kaehlcke wrote:
> > The definition of sysctl_sched_migration_cost, sysctl_sched_nr_migrate
> > and sysctl_sched_time_avg includes the attribute const_debug. This
> > attribute is not part of the extern declaration of these variables in
> > include/linux/sched/sysctl.h, as a result clang generates warnings like
> > this:
> > 
> >   kernel/sched/sched.h:1618:33: warning: section attribute is specified on
> >     redeclared variable [-Wsection]
> >   extern const_debug unsigned int sysctl_sched_time_avg;
> 
> Since they're already declared in sched/sysctl.h this redeclaration in
> sched/sched.h seems pointless.

We could remove it, but it would require to move the definition of
const_debug to the 'globally' visible header sched/sysctl.h. Would
that be your preference? In that case we should probably use a more
unique name, like const_sched_debug.

> >   ./include/linux/sched/sysctl.h:42:21: note: previous declaration is here
> >   extern unsigned int sysctl_sched_time_avg;
> > 
> > The header only declares the variables when CONFIG_SCHED_DEBUG is defined,
> > therefore it is not necessary to duplicate the definition of const_debug
> > (or put it in a common header). Instead we can use the attribute
> > __read_mostly, which is the expansion of const_debug when CONFIG_SCHED_DEBUG
> > is set.
> > 
> > Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
> > ---
> >  include/linux/sched/sysctl.h | 7 ++++---
> >  1 file changed, 4 insertions(+), 3 deletions(-)
> > 
> > diff --git a/include/linux/sched/sysctl.h b/include/linux/sched/sysctl.h
> > index 0f5ecd4d298e..f09afd55ecb5 100644
> > --- a/include/linux/sched/sysctl.h
> > +++ b/include/linux/sched/sysctl.h
> > @@ -1,6 +1,7 @@
> >  #ifndef _LINUX_SCHED_SYSCTL_H
> >  #define _LINUX_SCHED_SYSCTL_H
> >  
> > +#include <linux/static_key.h>
> >  #include <linux/types.h>
> >  
> >  struct ctl_table;
> 
> That extra include also seems entirely pointless.

Sorry, I wrongly associated the header with const_debug/__read_mostly
since it is included right before the definition of const_debug. I
should have double-checked.

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

* Re: [PATCH] sched/sysctl: Fix attributes of some extern declarations
  2017-10-30 17:27   ` [PATCH] sched/sysctl: Fix attributes of some extern declarations Matthias Kaehlcke
@ 2017-10-30 17:42     ` Peter Zijlstra
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Zijlstra @ 2017-10-30 17:42 UTC (permalink / raw)
  To: Matthias Kaehlcke
  Cc: Ingo Molnar, Shile Zhang, linux-kernel, Nick Desaulniers,
	Douglas Anderson, Guenter Roeck

On Mon, Oct 30, 2017 at 10:27:10AM -0700, Matthias Kaehlcke wrote:
> El Mon, Oct 30, 2017 at 09:26:12AM +0100 Peter Zijlstra ha dit:
> 
> > On Fri, Oct 27, 2017 at 04:40:20PM -0700, Matthias Kaehlcke wrote:
> > > The definition of sysctl_sched_migration_cost, sysctl_sched_nr_migrate
> > > and sysctl_sched_time_avg includes the attribute const_debug. This
> > > attribute is not part of the extern declaration of these variables in
> > > include/linux/sched/sysctl.h, as a result clang generates warnings like
> > > this:
> > > 
> > >   kernel/sched/sched.h:1618:33: warning: section attribute is specified on
> > >     redeclared variable [-Wsection]
> > >   extern const_debug unsigned int sysctl_sched_time_avg;
> > 
> > Since they're already declared in sched/sysctl.h this redeclaration in
> > sched/sched.h seems pointless.
> 
> We could remove it, but it would require to move the definition of
> const_debug to the 'globally' visible header sched/sysctl.h. Would
> that be your preference? In that case we should probably use a more
> unique name, like const_sched_debug.

Ah, I see; I got lost in the #ifdef maze. Yes you're right. Keep it like
it is then.

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

end of thread, other threads:[~2017-10-30 17:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20171027234020.26927-1-mka@chromium.org>
     [not found] ` <20171030082612.omuaefugp5nmnnfy@hirez.programming.kicks-ass.net>
2017-10-30 17:27   ` [PATCH] sched/sysctl: Fix attributes of some extern declarations Matthias Kaehlcke
2017-10-30 17:42     ` Peter Zijlstra

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.