Re: [dpdk-dev] [PATCH] net/tap: driver closing tx interface on queue setup

2017-01-30 Thread Ferruh Yigit
On 1/30/2017 6:20 PM, Wiles, Keith wrote: > >> On Jan 30, 2017, at 11:42 AM, Yigit, Ferruh wrote: >> >> On 1/30/2017 2:34 PM, Wiles, Keith wrote: >>> On Jan 30, 2017, at 5:00 AM, Yigit, Ferruh wrote: On 1/29/2017 2:12 AM, Keith Wiles wrote: > The tap driver setup both rx and t

Re: [dpdk-dev] [PATCH] net/tap: driver closing tx interface on queue setup

2017-01-30 Thread Wiles, Keith
> On Jan 30, 2017, at 11:42 AM, Yigit, Ferruh wrote: > > On 1/30/2017 2:34 PM, Wiles, Keith wrote: >> >>> On Jan 30, 2017, at 5:00 AM, Yigit, Ferruh wrote: >>> >>> On 1/29/2017 2:12 AM, Keith Wiles wrote: The tap driver setup both rx and tx file descriptors when the rte_eth_rx_queue

Re: [dpdk-dev] [PATCH] net/tap: driver closing tx interface on queue setup

2017-01-30 Thread Ferruh Yigit
On 1/30/2017 2:34 PM, Wiles, Keith wrote: > >> On Jan 30, 2017, at 5:00 AM, Yigit, Ferruh wrote: >> >> On 1/29/2017 2:12 AM, Keith Wiles wrote: >>> The tap driver setup both rx and tx file descriptors when the >>> rte_eth_rx_queue_setup() causing the tx to be closed when tx setup >>> was called.

Re: [dpdk-dev] [PATCH] net/tap: driver closing tx interface on queue setup

2017-01-30 Thread Ferruh Yigit
On 1/30/2017 2:38 PM, Pascal Mazon wrote: > On 01/30/2017 12:00 PM, Ferruh Yigit wrote:> On 1/29/2017 2:12 AM, Keith > Wiles wrote: >>> The tap driver setup both rx and tx file descriptors when the >>> rte_eth_rx_queue_setup() causing the tx to be closed when tx setup >>> was called. >> >> Can you

Re: [dpdk-dev] [PATCH] net/tap: driver closing tx interface on queue setup

2017-01-30 Thread Wiles, Keith
> On Jan 30, 2017, at 8:38 AM, Pascal Mazon wrote: > > On 01/30/2017 12:00 PM, Ferruh Yigit wrote:> On 1/29/2017 2:12 AM, Keith > Wiles wrote: >>> The tap driver setup both rx and tx file descriptors when the >>> rte_eth_rx_queue_setup() causing the tx to be closed when tx setup >>> was called.

Re: [dpdk-dev] [PATCH] net/tap: driver closing tx interface on queue setup

2017-01-30 Thread Pascal Mazon
On 01/30/2017 12:00 PM, Ferruh Yigit wrote:> On 1/29/2017 2:12 AM, Keith Wiles wrote: The tap driver setup both rx and tx file descriptors when the rte_eth_rx_queue_setup() causing the tx to be closed when tx setup was called. Can you please describe the problem more. Without this patch rx->fd

Re: [dpdk-dev] [PATCH] net/tap: driver closing tx interface on queue setup

2017-01-30 Thread Wiles, Keith
> On Jan 30, 2017, at 5:00 AM, Yigit, Ferruh wrote: > > On 1/29/2017 2:12 AM, Keith Wiles wrote: >> The tap driver setup both rx and tx file descriptors when the >> rte_eth_rx_queue_setup() causing the tx to be closed when tx setup >> was called. > > Can you please describe the problem more. >

Re: [dpdk-dev] [PATCH] net/tap: driver closing tx interface on queue setup

2017-01-30 Thread Ferruh Yigit
On 1/29/2017 2:12 AM, Keith Wiles wrote: > The tap driver setup both rx and tx file descriptors when the > rte_eth_rx_queue_setup() causing the tx to be closed when tx setup > was called. Can you please describe the problem more. Without this patch rx->fd == tx->fd, with this patch rx and tx has d

[dpdk-dev] [PATCH] net/tap: driver closing tx interface on queue setup

2017-01-28 Thread Keith Wiles
The tap driver setup both rx and tx file descriptors when the rte_eth_rx_queue_setup() causing the tx to be closed when tx setup was called. Signed-off-by: Keith Wiles --- drivers/net/tap/rte_eth_tap.c | 48 ++- 1 file changed, 34 insertions(+), 14 deletio