Re: [dpdk-dev] [PATCH v2] net/mlx5: fix reusing Rx/Tx queues

2017-03-22 Thread Ferruh Yigit
On 3/22/2017 7:50 AM, Nélio Laranjeiro wrote: > On Tue, Mar 21, 2017 at 10:50:51AM -0700, Yongseok Koh wrote: >> When configuring Rx/Tx queue, if queue already exists, it is reused. But if >> the queue size is changed, it must be resized to not access/overwrite >> invalid memory. >> >> Fixes: 2e229

Re: [dpdk-dev] [PATCH v2] net/mlx5: fix reusing Rx/Tx queues

2017-03-22 Thread Nélio Laranjeiro
On Tue, Mar 21, 2017 at 10:50:51AM -0700, Yongseok Koh wrote: > When configuring Rx/Tx queue, if queue already exists, it is reused. But if > the queue size is changed, it must be resized to not access/overwrite > invalid memory. > > Fixes: 2e22920b85d9 ("mlx5: support non-scattered Tx and Rx") >

[dpdk-dev] [PATCH v2] net/mlx5: fix reusing Rx/Tx queues

2017-03-21 Thread Yongseok Koh
When configuring Rx/Tx queue, if queue already exists, it is reused. But if the queue size is changed, it must be resized to not access/overwrite invalid memory. Fixes: 2e22920b85d9 ("mlx5: support non-scattered Tx and Rx") CC: sta...@dpdk.org Signed-off-by: Yongseok Koh --- v2: * fix typo and