[PATCH] eventdev/eth_tx: fix queue delete logic

2022-10-20 Thread Naga Harish K S V
To delete all the queues of a ethernet device associated with adapter instance the queue_id can be passed as -1 to the queue delete API. When a subset of queues of a ethernet device are associated, the queue delete logic is exiting without deleting the queues in some cases (higher numbered associa

Re: [PATCH] eventdev/eth_tx: fix queue delete

2022-07-04 Thread Jerin Jacob
Sent: Thursday, June 23, 2022 3:35 PM > > To: Jayatheerthan, Jay ; jer...@marvell.com > > Cc: dev@dpdk.org; sta...@dpdk.org > > Subject: [PATCH] eventdev/eth_tx: fix queue delete > > > > Add spinlock protection in queue delete function. > > This protects the data path

RE: [PATCH] eventdev/eth_tx: fix queue delete

2022-06-23 Thread Jayatheerthan, Jay
Looks good to me. Acked-by: Jay Jayatheerthan -Jay > -Original Message- > From: Naga Harish K, S V > Sent: Thursday, June 23, 2022 3:35 PM > To: Jayatheerthan, Jay ; jer...@marvell.com > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: [PATCH] eventdev/eth_tx: fix que

[PATCH] eventdev/eth_tx: fix queue delete

2022-06-23 Thread Naga Harish K S V
Add spinlock protection in queue delete function. This protects the data path while the queue delete operation is in progress. Fixes: a3bbf2e09756 ("eventdev: add eth Tx adapter implementation") Cc: sta...@dpdk.org Signed-off-by: Naga Harish K S V --- lib/eventdev/rte_event_eth_tx_adapter.c | 6