Re: [PATCH v4 1/9] net: core: use this_cpu_ptr per-cpu helper

2012-11-19 Thread David Miller
From: Shan Wei Date: Fri, 16 Nov 2012 16:38:01 +0800 > Shan Wei said, at 2012/11/13 9:51: >> From: Shan Wei >> >> flush_tasklet is a struct, not a pointer in percpu var. >> so use this_cpu_ptr to get the member pointer. >> >> Signed-off-by: Shan Wei >> Reviewed-by: Christoph Lameter > > Dav

Re: [PATCH v4 1/9] net: core: use this_cpu_ptr per-cpu helper

2012-11-16 Thread Shan Wei
Shan Wei said, at 2012/11/13 9:51: > From: Shan Wei > > flush_tasklet is a struct, not a pointer in percpu var. > so use this_cpu_ptr to get the member pointer. > > Signed-off-by: Shan Wei > Reviewed-by: Christoph Lameter David Miller, would you like to pick it up to your net-next tree? > -

[PATCH v4 1/9] net: core: use this_cpu_ptr per-cpu helper

2012-11-12 Thread Shan Wei
From: Shan Wei flush_tasklet is a struct, not a pointer in percpu var. so use this_cpu_ptr to get the member pointer. Signed-off-by: Shan Wei Reviewed-by: Christoph Lameter --- no changes vs v3. --- net/core/flow.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/ne