public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Jaswinder Singh Rajput <jaswinder@kernel.org>
To: Ingo Molnar <mingo@elte.hu>
Cc: mingo@redhat.com, hpa@zytor.com, linux-kernel@vger.kernel.org,
	andreas.herrmann3@amd.com, akpm@linux-foundation.org,
	mark.langsdorf@amd.com, tglx@linutronix.de,
	linux-tip-commits@vger.kernel.org
Subject: Re: [tip:x86/cpu] x86: cacheinfo: replace sysfs interface for cache_disable feature
Date: Tue, 14 Apr 2009 18:18:20 +0530	[thread overview]
Message-ID: <1239713300.3079.22.camel@ht.satnam> (raw)
In-Reply-To: <20090414115805.GW3558@elte.hu>

On Tue, 2009-04-14 at 13:58 +0200, Ingo Molnar wrote:
> * Jaswinder Singh Rajput <jaswinder@kernel.org> wrote:
> 
> > On Mon, 2009-04-13 at 10:22 +0530, Jaswinder Singh Rajput wrote:
> > > Hello Mark,
> > > 
> > > On Fri, 2009-04-10 at 12:37 +0000, Mark Langsdorf wrote:
> > > > Commit-ID:  f8b201fc7110c3673437254e8ba02451461ece0b
> > > > Gitweb:     http://git.kernel.org/tip/f8b201fc7110c3673437254e8ba02451461ece0b
> > > > Author:     Mark Langsdorf <mark.langsdorf@amd.com>
> > > > AuthorDate: Thu, 9 Apr 2009 15:18:49 +0200
> > > > Committer:  Ingo Molnar <mingo@elte.hu>
> > > > CommitDate: Fri, 10 Apr 2009 14:21:53 +0200
> > > > 
> > > > x86: cacheinfo: replace sysfs interface for cache_disable feature
> > > > 
> > > > Impact: replace sysfs attribute
> > > > 
> > > > Current interface violates against "one-value-per-sysfs-attribute
> > > > rule". This patch replaces current attribute with two attributes --
> > > > one for each L3 Cache Index Disable register.
> > > > 
> > > > Signed-off-by: Mark Langsdorf <mark.langsdorf@amd.com>
> > > > Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com>
> > > > Cc: Andrew Morton <akpm@linux-foundation.org>
> > > > LKML-Reference: <20090409131849.GJ31527@alberich.amd.com>
> > > > Signed-off-by: Ingo Molnar <mingo@elte.hu>
> > > > 
> > > > 
> > > > ---
> > > >  arch/x86/kernel/cpu/intel_cacheinfo.c |   90 ++++++++++++++++----------------
> > > >  1 files changed, 45 insertions(+), 45 deletions(-)
> > > > 
> > > > diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c
> > > > index 0cde071..fc28291 100644
> > > > --- a/arch/x86/kernel/cpu/intel_cacheinfo.c
> > > > +++ b/arch/x86/kernel/cpu/intel_cacheinfo.c
> > > > @@ -697,73 +697,69 @@ static ssize_t show_type(struct _cpuid4_info *this_leaf, char *buf)
> > > >  #define to_object(k)	container_of(k, struct _index_kobject, kobj)
> > > >  #define to_attr(a)	container_of(a, struct _cache_attr, attr)
> > > >  
> > > > -static ssize_t show_cache_disable(struct _cpuid4_info *this_leaf, char *buf)
> > > > +static ssize_t show_cache_disable(struct _cpuid4_info *this_leaf, char *buf,
> > > > +				  unsigned int index)
> > > >  {
> > > > -	const struct cpumask *mask = to_cpumask(this_leaf->shared_cpu_map);
> > > > -	int node = cpu_to_node(cpumask_first(mask));
> > > > -	struct pci_dev *dev = NULL;
> > > > -	ssize_t ret = 0;
> > > > -	int i;
> > > > +	int cpu = cpumask_first(to_cpumask(this_leaf->shared_cpu_map));
> > > > +	int node = cpu_to_node(cpu);
> > > > +	struct pci_dev *dev = node_to_k8_nb_misc(node);
> > > > +	unsigned int reg = 0;
> > > 
> > > This leads to compilation warnings:
> > >   CC      arch/x86/kernel/cpu/intel_cacheinfo.o
> > > arch/x86/kernel/cpu/intel_cacheinfo.c: In function ‘show_cache_disable’:
> > > arch/x86/kernel/cpu/intel_cacheinfo.c:712: warning: unused variable ‘node’
> > > 
> > > >  
> > > > -static ssize_t
> > > > -store_cache_disable(struct _cpuid4_info *this_leaf, const char *buf,
> > > > -		    size_t count)
> > > > +static ssize_t store_cache_disable(struct _cpuid4_info *this_leaf,
> > > > +	const char *buf, size_t count, unsigned int index)
> > > >  {
> > > > -	const struct cpumask *mask = to_cpumask(this_leaf->shared_cpu_map);
> > > > -	int node = cpu_to_node(cpumask_first(mask));
> > > > -	struct pci_dev *dev = NULL;
> > > > -	unsigned int ret, index, val;
> > > > +	int cpu = cpumask_first(to_cpumask(this_leaf->shared_cpu_map));
> > > > +	int node = cpu_to_node(cpu);
> > > > +	struct pci_dev *dev = node_to_k8_nb_misc(node);
> > > > +	unsigned long val = 0;
> > > >  
> > > 
> > >   CC      arch/x86/kernel/cpu/intel_cacheinfo.o
> > > arch/x86/kernel/cpu/intel_cacheinfo.c: In function ‘store_cache_disable’:
> > > arch/x86/kernel/cpu/intel_cacheinfo.c:737: warning: unused variable ‘cpu’
> > 
> > Oops it is also pointing to node:
> > 
> > arch/x86/kernel/cpu/intel_cacheinfo.c: In function ‘store_cache_disable’:
> > arch/x86/kernel/cpu/intel_cacheinfo.c:739: warning: unused variable ‘node’
> 
> Mind sending a fix? We really dont want warnings noise in the x86 
> tree.
> 

Ok I send it.

when I fixed node then it gives warnings for :
  arch/x86/kernel/cpu/intel_cacheinfo.c: In function ‘show_cache_disable’:
  arch/x86/kernel/cpu/intel_cacheinfo.c:713: warning: unused variable ‘cpu’

So I also fixed it.


> I was also thinking about adopting the Sparc trick: adding -Werror 
> to arch/x86/ files only, fixing all the fallout and ensuring no new 
> warnings from a flag day on. Anyone interested in doing that?
> 

Yes, this will be nice idea. Should I send patch for:
"adding -Werror to arch/x86/ files only"

Thanks,
--
JSR


  reply	other threads:[~2009-04-14 12:49 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-09 12:56 [PATCH 0/8] x86: cacheinfo: cache_disable fixes/cleanup Andreas Herrmann
2009-04-09 12:59 ` [PATCH 1/8] Revert "x86, cpu: intel_cacheinfo.c: use cpumask_first(to_cpumask())" Andreas Herrmann
2009-04-09 13:02 ` [PATCH 2/8] Revert "x86, cpu: conform L3 Cache Index Disable to Linux standards" Andreas Herrmann
2009-04-09 13:05 ` [PATCH 3/8] x86: cacheinfo: use L3 cache index disable feature only for CPUs that support it Andreas Herrmann
2009-04-10 12:36   ` [tip:x86/cpu] " Andreas Herrmann
2009-04-09 13:07 ` [PATCH 4/8] x86: cacheinfo: correct return value when cache_disable feature is not active Andreas Herrmann
2009-04-10 12:36   ` [tip:x86/cpu] " Andreas Herrmann
2009-04-09 13:16 ` [PATCH 5/8] x86: cacheinfo: use cached K8 NB_MISC devices instead of scanning for it Andreas Herrmann
2009-04-10 12:36   ` [tip:x86/cpu] " Andreas Herrmann
2009-04-09 13:18 ` [PATCH 6/8] x86: cacheinfo: replace sysfs interface for cache_disable feature Andreas Herrmann
2009-04-10 12:37   ` [tip:x86/cpu] " Mark Langsdorf
2009-04-13  4:52     ` Jaswinder Singh Rajput
2009-04-13  4:56       ` Jaswinder Singh Rajput
2009-04-14 11:58         ` Ingo Molnar
2009-04-14 12:48           ` Jaswinder Singh Rajput [this message]
2009-04-14 13:28             ` Ingo Molnar
2009-04-09 13:24 ` [PATCH 7/8] x86: cacheinfo: disable L3 ECC scrubbing when L3 cache index is disabled Andreas Herrmann
2009-04-10 12:37   ` [tip:x86/cpu] " Mark Langsdorf
2009-04-09 13:31 ` [PATCH 8/8] x86/docs: add description for cache_disable sysfs interface Andreas Herrmann
2009-04-10 12:37   ` [tip:x86/cpu] " Mark Langsdorf
2009-04-10 12:28 ` [PATCH 0/8] x86: cacheinfo: cache_disable fixes/cleanup Ingo Molnar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1239713300.3079.22.camel@ht.satnam \
    --to=jaswinder@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=andreas.herrmann3@amd.com \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tip-commits@vger.kernel.org \
    --cc=mark.langsdorf@amd.com \
    --cc=mingo@elte.hu \
    --cc=mingo@redhat.com \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox