Re: [dpdk-dev] [PATCH] net/octeontx: fix stop clearing fastpath functions

2018-08-02 Thread Thomas Monjalon
> > On dev_stop the Rx/Tx_burst functions are being set to NULL, this causes > > a SEGFAULT in cases where control path calls stop and a paket is still > > being processed by a worker. > > Instead clear the fastpath functions in dev_close. > > > > Fixes: da6c687471a3 ("net/octeontx: add start and

Re: [dpdk-dev] [PATCH] net/octeontx: fix stop clearing fastpath functions

2018-07-24 Thread Jerin Jacob
-Original Message- > Date: Tue, 24 Jul 2018 16:13:50 +0530 > From: Pavan Nikhilesh > To: jerin.ja...@caviumnetworks.com, santosh.shu...@caviumnetworks.com, > ferruh.yi...@intel.com > Cc: dev@dpdk.org, Pavan Nikhilesh > Subject: [dpdk-dev] [PATCH] net/octeontx: fix stop

[dpdk-dev] [PATCH] net/octeontx: fix stop clearing fastpath functions

2018-07-24 Thread Pavan Nikhilesh
On dev_stop the Rx/Tx_burst functions are being set to NULL, this causes a SEGFAULT in cases where control path calls stop and a paket is still being processed by a worker. Instead clear the fastpath functions in dev_close. Fixes: da6c687471a3 ("net/octeontx: add start and stop support") Signed-o