Re: [PATCH 10/20] net: pktgen: Use kthread_create_on_node()
From: Frederic Weisbecker
Date: Thu Oct 24 2024 - 10:32:28 EST
Le Mon, Sep 30, 2024 at 10:49:39PM +0530, Vishal Chourasia a écrit :
> On Fri, Sep 27, 2024 at 12:48:58AM +0200, Frederic Weisbecker wrote:
> > Use the proper API instead of open coding it.
> >
> > Signed-off-by: Frederic Weisbecker <frederic@xxxxxxxxxx>
> > ---
> > net/core/pktgen.c | 7 ++-----
> > 1 file changed, 2 insertions(+), 5 deletions(-)
> >
> > diff --git a/net/core/pktgen.c b/net/core/pktgen.c
> > index 34f68ef74b8f..7fcb4fc7a5d6 100644
> > --- a/net/core/pktgen.c
> > +++ b/net/core/pktgen.c
> > @@ -3883,17 +3883,14 @@ static int __net_init pktgen_create_thread(int cpu, struct pktgen_net *pn)
> > list_add_tail(&t->th_list, &pn->pktgen_threads);
> > init_completion(&t->start_done);
> >
> > - p = kthread_create_on_node(pktgen_thread_worker,
> > - t,
> > - cpu_to_node(cpu),
> > - "kpktgend_%d", cpu);
> > + p = kthread_create_on_cpu(pktgen_thread_worker, t, cpu, "kpktgend_%d");
> Hi Frederic,
>
> The Subject line says "Use kthread_create_on_node()" while
> kthread_create_on_cpu is used in the diff.
Thanks!
Fixing this.