Looks good, thanks. Acked-by: Eddie Wai <eddie.wai@xxxxxxxxxxxx> On Thu, 2012-02-02 at 14:03 +0100, Eric Dumazet wrote: > bnx2i_percpu_thread_create() create per cpu kthread, and should use > proper NUMA aware API. > > Signed-off-by: Eric Dumazet <eric.dumazet@xxxxxxxxx> > Cc: Eddie Wai <eddie.wai@xxxxxxxxxxxx> > Cc: Benjamin Li <benli@xxxxxxxxxxxx> > Cc: Michael Chan <mchan@xxxxxxxxxxxx> > Cc: James Bottomley <JBottomley@xxxxxxxxxxxxx> > --- > drivers/scsi/bnx2i/bnx2i_init.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/scsi/bnx2i/bnx2i_init.c b/drivers/scsi/bnx2i/bnx2i_init.c > index 1a947f1..62c8c0a 100644 > --- a/drivers/scsi/bnx2i/bnx2i_init.c > +++ b/drivers/scsi/bnx2i/bnx2i_init.c > @@ -393,8 +393,9 @@ static void bnx2i_percpu_thread_create(unsigned int cpu) > > p = &per_cpu(bnx2i_percpu, cpu); > > - thread = kthread_create(bnx2i_percpu_io_thread, (void *)p, > - "bnx2i_thread/%d", cpu); > + thread = kthread_create_on_node(bnx2i_percpu_io_thread, (void *)p, > + cpu_to_node(cpu), > + "bnx2i_thread/%d", cpu); > /* bind thread to the cpu */ > if (likely(!IS_ERR(thread))) { > kthread_bind(thread, cpu); > > > -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html