From: Andrew Morton <akpm@linux-foundation.org>
To: Dean Nelson <dcn@sgi.com>, Andy Whitcroft <apw@shadowen.org>
Cc: linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-mm@kvack.org, tony.luck@intel.com, jes@sgi.com
Subject: Re: [RFC 3/3] SGI Altix cross partition memory (XPMEM)
Date: Wed, 22 Aug 2007 19:49:28 +0000 [thread overview]
Message-ID: <20070822124928.19bf0431.akpm@linux-foundation.org> (raw)
In-Reply-To: <20070822191516.GA24018@sgi.com>
On Wed, 22 Aug 2007 14:15:16 -0500
Dean Nelson <dcn@sgi.com> wrote:
> On Wed, Aug 22, 2007 at 11:04:22AM -0700, Andrew Morton wrote:
> > On Wed, 22 Aug 2007 12:00:11 -0500
> > Dean Nelson <dcn@sgi.com> wrote:
> >
> > >
> > > 3) WARNING: declaring multiple variables together should be avoided
> > >
> > > checkpatch.pl is erroneously commplaining about the following found in five
> > > different functions in arch/ia64/sn/kernel/xpmem_pfn.c.
> > >
> > > int n_pgs = xpmem_num_of_pages(vaddr, size);
> >
> > What warning does it generate here?
>
> The WARNING #3 above "declaring multiple variables together should be avoided".
> There is only one variable being declared, which happens to be initialized by
> the function xpmem_num_of_pages().
Ah, I think I recall seeing a report of that earlier. Maybe it's been fixed?
> ...
> > > I've switched from using nopage to using fault. I read that it is intended
> > > that nopfn also goes away. If this is the case, then the BUG_ON if VM_PFNMAP
> > > is set would make __do_fault() a rather unfriendly replacement for do_no_pfn().
> > >
> > > > - xpmem_attach() does smp_processor_id() in preemptible code. Lucky that
> > > > ia64 doesn't do preempt?
> > >
> > > Actually, the code is fine as is even with preemption configured on. All it's
> > > doing is ensuring that the thread was previously pinned to the CPU it's
> > > currently running on. If it is, it can't be moved to another CPU via
> > > preemption, and if it isn't, the check will fail and we'll return -EINVAL
> > > and all is well.
> >
> > OK. Running smp_processor_id() from within preemptible code will generate
> > a warning, but the code is sneaky enough to prevent that warning if the
> > calling task happens to be pinned to a single CPU.
>
> Would it make more sense in this particular case to replace the call to
> smp_processor_id() in xpmem_attach() with a call to raw_smp_processor_id()
> instead, and add a comment explaining why?
Your call ;) Either will be OK, I expect.
WARNING: multiple messages have this Message-ID (diff)
From: Andrew Morton <akpm@linux-foundation.org>
To: Dean Nelson <dcn@sgi.com>, Andy Whitcroft <apw@shadowen.org>
Cc: linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-mm@kvack.org, tony.luck@intel.com, jes@sgi.com
Subject: Re: [RFC 3/3] SGI Altix cross partition memory (XPMEM)
Date: Wed, 22 Aug 2007 12:49:28 -0700 [thread overview]
Message-ID: <20070822124928.19bf0431.akpm@linux-foundation.org> (raw)
In-Reply-To: <20070822191516.GA24018@sgi.com>
On Wed, 22 Aug 2007 14:15:16 -0500
Dean Nelson <dcn@sgi.com> wrote:
> On Wed, Aug 22, 2007 at 11:04:22AM -0700, Andrew Morton wrote:
> > On Wed, 22 Aug 2007 12:00:11 -0500
> > Dean Nelson <dcn@sgi.com> wrote:
> >
> > >
> > > 3) WARNING: declaring multiple variables together should be avoided
> > >
> > > checkpatch.pl is erroneously commplaining about the following found in five
> > > different functions in arch/ia64/sn/kernel/xpmem_pfn.c.
> > >
> > > int n_pgs = xpmem_num_of_pages(vaddr, size);
> >
> > What warning does it generate here?
>
> The WARNING #3 above "declaring multiple variables together should be avoided".
> There is only one variable being declared, which happens to be initialized by
> the function xpmem_num_of_pages().
Ah, I think I recall seeing a report of that earlier. Maybe it's been fixed?
> ...
> > > I've switched from using nopage to using fault. I read that it is intended
> > > that nopfn also goes away. If this is the case, then the BUG_ON if VM_PFNMAP
> > > is set would make __do_fault() a rather unfriendly replacement for do_no_pfn().
> > >
> > > > - xpmem_attach() does smp_processor_id() in preemptible code. Lucky that
> > > > ia64 doesn't do preempt?
> > >
> > > Actually, the code is fine as is even with preemption configured on. All it's
> > > doing is ensuring that the thread was previously pinned to the CPU it's
> > > currently running on. If it is, it can't be moved to another CPU via
> > > preemption, and if it isn't, the check will fail and we'll return -EINVAL
> > > and all is well.
> >
> > OK. Running smp_processor_id() from within preemptible code will generate
> > a warning, but the code is sneaky enough to prevent that warning if the
> > calling task happens to be pinned to a single CPU.
>
> Would it make more sense in this particular case to replace the call to
> smp_processor_id() in xpmem_attach() with a call to raw_smp_processor_id()
> instead, and add a comment explaining why?
Your call ;) Either will be OK, I expect.
WARNING: multiple messages have this Message-ID (diff)
From: Andrew Morton <akpm@linux-foundation.org>
To: Dean Nelson <dcn@sgi.com>, Andy Whitcroft <apw@shadowen.org>
Cc: linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-mm@kvack.org, tony.luck@intel.com, jes@sgi.com
Subject: Re: [RFC 3/3] SGI Altix cross partition memory (XPMEM)
Date: Wed, 22 Aug 2007 12:49:28 -0700 [thread overview]
Message-ID: <20070822124928.19bf0431.akpm@linux-foundation.org> (raw)
In-Reply-To: <20070822191516.GA24018@sgi.com>
On Wed, 22 Aug 2007 14:15:16 -0500
Dean Nelson <dcn@sgi.com> wrote:
> On Wed, Aug 22, 2007 at 11:04:22AM -0700, Andrew Morton wrote:
> > On Wed, 22 Aug 2007 12:00:11 -0500
> > Dean Nelson <dcn@sgi.com> wrote:
> >
> > >
> > > 3) WARNING: declaring multiple variables together should be avoided
> > >
> > > checkpatch.pl is erroneously commplaining about the following found in five
> > > different functions in arch/ia64/sn/kernel/xpmem_pfn.c.
> > >
> > > int n_pgs = xpmem_num_of_pages(vaddr, size);
> >
> > What warning does it generate here?
>
> The WARNING #3 above "declaring multiple variables together should be avoided".
> There is only one variable being declared, which happens to be initialized by
> the function xpmem_num_of_pages().
Ah, I think I recall seeing a report of that earlier. Maybe it's been fixed?
> ...
> > > I've switched from using nopage to using fault. I read that it is intended
> > > that nopfn also goes away. If this is the case, then the BUG_ON if VM_PFNMAP
> > > is set would make __do_fault() a rather unfriendly replacement for do_no_pfn().
> > >
> > > > - xpmem_attach() does smp_processor_id() in preemptible code. Lucky that
> > > > ia64 doesn't do preempt?
> > >
> > > Actually, the code is fine as is even with preemption configured on. All it's
> > > doing is ensuring that the thread was previously pinned to the CPU it's
> > > currently running on. If it is, it can't be moved to another CPU via
> > > preemption, and if it isn't, the check will fail and we'll return -EINVAL
> > > and all is well.
> >
> > OK. Running smp_processor_id() from within preemptible code will generate
> > a warning, but the code is sneaky enough to prevent that warning if the
> > calling task happens to be pinned to a single CPU.
>
> Would it make more sense in this particular case to replace the call to
> smp_processor_id() in xpmem_attach() with a call to raw_smp_processor_id()
> instead, and add a comment explaining why?
Your call ;) Either will be OK, I expect.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2007-08-22 19:49 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-10 1:06 [RFC 0/3] SGI Altix cross partition memory (XPMEM) Dean Nelson
2007-08-10 1:06 ` Dean Nelson
2007-08-10 1:06 ` Dean Nelson
2007-08-10 1:11 ` [RFC 1/3] " Dean Nelson
2007-08-10 1:11 ` Dean Nelson
2007-08-10 1:11 ` Dean Nelson
2007-08-10 1:12 ` [RFC 2/3] " Dean Nelson
2007-08-10 1:12 ` Dean Nelson
2007-08-10 1:12 ` Dean Nelson
2007-08-10 1:14 ` [RFC 3/3] " Dean Nelson
2007-08-10 1:14 ` Dean Nelson
2007-08-10 6:15 ` Andrew Morton
2007-08-10 6:15 ` Andrew Morton
2007-08-10 6:15 ` Andrew Morton
2007-08-22 17:00 ` Dean Nelson
2007-08-22 17:00 ` Dean Nelson
2007-08-22 18:04 ` Andrew Morton
2007-08-22 18:04 ` Andrew Morton
2007-08-22 18:04 ` Andrew Morton
2007-08-22 19:15 ` Dean Nelson
2007-08-22 19:15 ` Dean Nelson
2007-08-22 19:15 ` Dean Nelson
2007-08-22 19:49 ` Andrew Morton [this message]
2007-08-22 19:49 ` Andrew Morton
2007-08-22 19:49 ` Andrew Morton
2007-08-23 13:58 ` Andy Whitcroft
2007-08-23 13:58 ` Andy Whitcroft
2007-08-23 13:58 ` Andy Whitcroft
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=20070822124928.19bf0431.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=apw@shadowen.org \
--cc=dcn@sgi.com \
--cc=jes@sgi.com \
--cc=linux-ia64@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=tony.luck@intel.com \
/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 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.