Re: [dpdk-dev] [PATCH 1/2] net/tap: remove redundant syscall on Tx

2017-03-14 Thread Ferruh Yigit
On 3/14/2017 1:52 PM, Wiles, Keith wrote: > >> On Mar 14, 2017, at 8:51 PM, Adrien Mazarguil >> wrote: >> >> Polling the Tx queue file descriptor before writing to it is not mandatory >> since it is configured as non-blocking. >> >> Signed-off-by: Adrien Mazarguil >> Acked-by: Pascal Mazon >

Re: [dpdk-dev] [PATCH 1/2] net/tap: remove redundant syscall on Tx

2017-03-14 Thread Wiles, Keith
> On Mar 14, 2017, at 8:51 PM, Adrien Mazarguil > wrote: > > Polling the Tx queue file descriptor before writing to it is not mandatory > since it is configured as non-blocking. > > Signed-off-by: Adrien Mazarguil > Acked-by: Pascal Mazon Acked-by: Keith Wiles > --- > drivers/net/tap/rte_

[dpdk-dev] [PATCH 1/2] net/tap: remove redundant syscall on Tx

2017-03-14 Thread Adrien Mazarguil
Polling the Tx queue file descriptor before writing to it is not mandatory since it is configured as non-blocking. Signed-off-by: Adrien Mazarguil Acked-by: Pascal Mazon --- drivers/net/tap/rte_eth_tap.c | 26 -- 1 file changed, 8 insertions(+), 18 deletions(-) diff --g