Re: [dpdk-dev] [PATCH v2 1/6] eal: reset lcore function pointer and argument

2021-09-11 Thread Honnappa Nagarahalli
> > On Fri, Sep 10, 2021 at 9:49 AM Bruce Richardson > wrote: > > > > On Thu, Sep 09, 2021 at 06:13:07PM -0500, Honnappa Nagarahalli wrote: > > > In the rte_eal_remote_launch function, the lcore function pointer is > > > checked for NULL. However, the pointer is never reset to NULL. Reset > > >

Re: [dpdk-dev] [PATCH v2 1/6] eal: reset lcore function pointer and argument

2021-09-10 Thread David Marchand
On Fri, Sep 10, 2021 at 9:49 AM Bruce Richardson wrote: > > On Thu, Sep 09, 2021 at 06:13:07PM -0500, Honnappa Nagarahalli wrote: > > In the rte_eal_remote_launch function, the lcore function pointer is > > checked for NULL. However, the pointer is never reset to NULL. Reset the > > lcore function

Re: [dpdk-dev] [PATCH v2 1/6] eal: reset lcore function pointer and argument

2021-09-10 Thread Bruce Richardson
On Thu, Sep 09, 2021 at 06:13:07PM -0500, Honnappa Nagarahalli wrote: > In the rte_eal_remote_launch function, the lcore function pointer is > checked for NULL. However, the pointer is never reset to NULL. Reset the > lcore function pointer and argument after the worker has completed > executing th

[dpdk-dev] [PATCH v2 1/6] eal: reset lcore function pointer and argument

2021-09-09 Thread Honnappa Nagarahalli
In the rte_eal_remote_launch function, the lcore function pointer is checked for NULL. However, the pointer is never reset to NULL. Reset the lcore function pointer and argument after the worker has completed executing the lcore function. Signed-off-by: Honnappa Nagarahalli Reviewed-by: Ruifeng W