Re: [dpdk-dev] [PATCH 1/5] net/mlx5: last WQE no room inline

2017-02-08 Thread Ferruh Yigit
On 1/23/2017 12:27 PM, Ferruh Yigit wrote: > On 1/8/2017 3:41 PM, Elad Persiko wrote: >> Prior to this patch, when sending a packet and the following >> conditions were reached: >> 1. last working queue element is used. >> 2. inline was requested by the user >> 3. no room for inline

Re: [dpdk-dev] [PATCH 1/5] net/mlx5: last WQE no room inline

2017-01-23 Thread Ferruh Yigit
On 1/8/2017 3:41 PM, Elad Persiko wrote: > Prior to this patch, when sending a packet and the following > conditions were reached: > 1. last working queue element is used. > 2. inline was requested by the user > 3. no room for inline packet. > then the inline request was ignored a

[dpdk-dev] [PATCH 1/5] net/mlx5: last WQE no room inline

2017-01-08 Thread Elad Persiko
Prior to this patch, when sending a packet and the following conditions were reached: 1. last working queue element is used. 2. inline was requested by the user 3. no room for inline packet. then the inline request was ignored and the packet was sent by pointer completely.