[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ZxpZ5fJEbjc9IucL@localhost.localdomain>
Date: Thu, 24 Oct 2024 16:29:57 +0200
From: Frederic Weisbecker <frederic@...nel.org>
To: Vishal Chourasia <vishalc@...ux.ibm.com>
Cc: LKML <linux-kernel@...r.kernel.org>,
"David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>,
Andrew Morton <akpm@...ux-foundation.org>,
Peter Zijlstra <peterz@...radead.org>,
Thomas Gleixner <tglx@...utronix.de>
Subject: Re: [PATCH 10/20] net: pktgen: Use kthread_create_on_node()
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@...nel.org>
> > ---
> > 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.
Powered by blists - more mailing lists