* [PATCH 3/9] net: xfrm: use this_cpu_ptr per-cpu helper
@ 2012-10-31 11:22 Shan Wei
2012-10-31 17:35 ` Christoph Lameter
0 siblings, 1 reply; 7+ messages in thread
From: Shan Wei @ 2012-10-31 11:22 UTC (permalink / raw)
To: steffen.klassert, David Miller, NetDev, Herbert Xu,
Kernel-Maillist, cl
From: Shan Wei <davidshan@tencent.com>
Signed-off-by: Shan Wei <davidshan@tencent.com>
---
net/xfrm/xfrm_ipcomp.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/net/xfrm/xfrm_ipcomp.c b/net/xfrm/xfrm_ipcomp.c
index e5246fb..af6c78a 100644
--- a/net/xfrm/xfrm_ipcomp.c
+++ b/net/xfrm/xfrm_ipcomp.c
@@ -276,14 +276,13 @@ static struct crypto_comp * __percpu *ipcomp_alloc_tfms(const char *alg_name)
struct crypto_comp * __percpu *tfms;
int cpu;
- /* This can be any valid CPU ID so we don't need locking. */
- cpu = raw_smp_processor_id();
-
list_for_each_entry(pos, &ipcomp_tfms_list, list) {
struct crypto_comp *tfm;
tfms = pos->tfms;
- tfm = *per_cpu_ptr(tfms, cpu);
+
+ /* This can be any valid CPU ID so we don't need locking. */
+ tfm = *this_cpu_ptr(tfms);
if (!strcmp(crypto_comp_name(tfm), alg_name)) {
pos->users++;
--
1.7.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH 3/9] net: xfrm: use this_cpu_ptr per-cpu helper
2012-10-31 11:22 [PATCH 3/9] net: xfrm: use this_cpu_ptr per-cpu helper Shan Wei
@ 2012-10-31 17:35 ` Christoph Lameter
2012-11-01 3:41 ` Herbert Xu
2012-11-01 8:56 ` Shan Wei
0 siblings, 2 replies; 7+ messages in thread
From: Christoph Lameter @ 2012-10-31 17:35 UTC (permalink / raw)
To: Shan Wei
Cc: steffen.klassert, David Miller, NetDev, Herbert Xu,
Kernel-Maillist
On Wed, 31 Oct 2012, Shan Wei wrote:
> -
> list_for_each_entry(pos, &ipcomp_tfms_list, list) {
> struct crypto_comp *tfm;
>
> tfms = pos->tfms;
> - tfm = *per_cpu_ptr(tfms, cpu);
> +
> + /* This can be any valid CPU ID so we don't need locking. */
> + tfm = *this_cpu_ptr(tfms);
It would be better to use
this_cpu_read(tfms)
since that would also make it atomic vs interrupts. The above code (both
original and modified) could determine a pointer to a per cpu structure
and then take an interrupt which would move the task. On return we would
be accessing the per cpu variable of another processor.
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH 3/9] net: xfrm: use this_cpu_ptr per-cpu helper
2012-10-31 17:35 ` Christoph Lameter
@ 2012-11-01 3:41 ` Herbert Xu
2012-11-01 9:00 ` Shan Wei
2012-11-01 8:56 ` Shan Wei
1 sibling, 1 reply; 7+ messages in thread
From: Herbert Xu @ 2012-11-01 3:41 UTC (permalink / raw)
To: Christoph Lameter
Cc: Shan Wei, steffen.klassert, David Miller, NetDev, Kernel-Maillist
On Wed, Oct 31, 2012 at 05:35:46PM +0000, Christoph Lameter wrote:
> On Wed, 31 Oct 2012, Shan Wei wrote:
>
> > -
> > list_for_each_entry(pos, &ipcomp_tfms_list, list) {
> > struct crypto_comp *tfm;
> >
> > tfms = pos->tfms;
> > - tfm = *per_cpu_ptr(tfms, cpu);
> > +
> > + /* This can be any valid CPU ID so we don't need locking. */
> > + tfm = *this_cpu_ptr(tfms);
>
> It would be better to use
>
> this_cpu_read(tfms)
>
> since that would also make it atomic vs interrupts. The above code (both
> original and modified) could determine a pointer to a per cpu structure
> and then take an interrupt which would move the task. On return we would
> be accessing the per cpu variable of another processor.
Please refer to the comment in the patch above.
But I think the patch is wrong anyway because it would introduce
a warning, no?
Thanks,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH 3/9] net: xfrm: use this_cpu_ptr per-cpu helper
2012-10-31 17:35 ` Christoph Lameter
2012-11-01 3:41 ` Herbert Xu
@ 2012-11-01 8:56 ` Shan Wei
2012-11-01 9:18 ` Steffen Klassert
2012-11-01 12:15 ` David Laight
1 sibling, 2 replies; 7+ messages in thread
From: Shan Wei @ 2012-11-01 8:56 UTC (permalink / raw)
To: Christoph Lameter
Cc: steffen.klassert, David Miller, NetDev, Herbert Xu,
Kernel-Maillist
Christoph Lameter said, at 2012/11/1 1:35:
> It would be better to use
>
> this_cpu_read(tfms)
>
> since that would also make it atomic vs interrupts. The above code (both
> original and modified) could determine a pointer to a per cpu structure
> and then take an interrupt which would move the task. On return we would
> be accessing the per cpu variable of another processor.
this_cpu_read
|-----_this_cpu_generic_read
#define _this_cpu_generic_read(pcp) \
({ typeof(pcp) ret__; \
preempt_disable(); \
ret__ = *this_cpu_ptr(&(pcp)); \
preempt_enable(); \
ret__; \
})
this_cpu_read operations locate per-cpu variable with preemption safe, not
disable interrupts. why is it atomic vs interrupts?
I have no idea whether we need to disable preemption for this code?
At least, xfrm code run well with per_cpu_ptr which don't disable preemption.
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH 3/9] net: xfrm: use this_cpu_ptr per-cpu helper
2012-11-01 8:56 ` Shan Wei
@ 2012-11-01 9:18 ` Steffen Klassert
2012-11-01 12:15 ` David Laight
1 sibling, 0 replies; 7+ messages in thread
From: Steffen Klassert @ 2012-11-01 9:18 UTC (permalink / raw)
To: Shan Wei
Cc: Christoph Lameter, David Miller, NetDev, Herbert Xu,
Kernel-Maillist
On Thu, Nov 01, 2012 at 04:56:54PM +0800, Shan Wei wrote:
> Christoph Lameter said, at 2012/11/1 1:35:
> > It would be better to use
> >
> > this_cpu_read(tfms)
> >
> > since that would also make it atomic vs interrupts. The above code (both
> > original and modified) could determine a pointer to a per cpu structure
> > and then take an interrupt which would move the task. On return we would
> > be accessing the per cpu variable of another processor.
>
> this_cpu_read
> |-----_this_cpu_generic_read
>
> #define _this_cpu_generic_read(pcp) \
> ({ typeof(pcp) ret__; \
> preempt_disable(); \
> ret__ = *this_cpu_ptr(&(pcp)); \
> preempt_enable(); \
> ret__; \
> })
>
>
> this_cpu_read operations locate per-cpu variable with preemption safe, not
> disable interrupts. why is it atomic vs interrupts?
>
> I have no idea whether we need to disable preemption for this code?
> At least, xfrm code run well with per_cpu_ptr which don't disable preemption.
We compare the name of the newly allocated crypto transform against the
existing ones. The name is the same on every percpu transform and it
does not change after the transform is allocated. So we don't care
if we get migrated or not, we can just take the transform from an
arbitrary cpu to read the name from it.
^ permalink raw reply [flat|nested] 7+ messages in thread* RE: [PATCH 3/9] net: xfrm: use this_cpu_ptr per-cpu helper
2012-11-01 8:56 ` Shan Wei
2012-11-01 9:18 ` Steffen Klassert
@ 2012-11-01 12:15 ` David Laight
1 sibling, 0 replies; 7+ messages in thread
From: David Laight @ 2012-11-01 12:15 UTC (permalink / raw)
To: Shan Wei, Christoph Lameter
Cc: steffen.klassert, David Miller, NetDev, Herbert Xu,
Kernel-Maillist
> this_cpu_read
> |-----_this_cpu_generic_read
>
> #define _this_cpu_generic_read(pcp) \
> ({ typeof(pcp) ret__; \
> preempt_disable(); \
> ret__ = *this_cpu_ptr(&(pcp)); \
> preempt_enable(); \
> ret__; \
> })
>
>
> this_cpu_read operations locate per-cpu variable with preemption safe, not
> disable interrupts. why is it atomic vs interrupts?
Hmmm... what effect do those preemt_dis/enable() actually have?
Since a pre-empt can happen either side of them, the value
the caller sees can be for the wrong cpu anyway.
The only time I could see them being necessary is if
*this_cpu_ptr() itself needs mutex protection in order to
function correctly - and that is likely to be port specific.
On i386/amd64 where (I guess) it is an access offset by fs/gs
this isn't necessary and just wastes cpu cycles.
If the caller cares which cpu the value comes from (eg to
increment a counter) then the caller would need to disable
pre-emption across the whole operation.
David
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2012-11-01 12:15 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-31 11:22 [PATCH 3/9] net: xfrm: use this_cpu_ptr per-cpu helper Shan Wei
2012-10-31 17:35 ` Christoph Lameter
2012-11-01 3:41 ` Herbert Xu
2012-11-01 9:00 ` Shan Wei
2012-11-01 8:56 ` Shan Wei
2012-11-01 9:18 ` Steffen Klassert
2012-11-01 12:15 ` David Laight
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).