Re: [PATCH v12 02/12] net/tap: do not duplicate fd's

2024-05-20 Thread Stephen Hemminger
On Mon, 20 May 2024 18:46:30 +0100 Ferruh Yigit wrote: > On 5/2/2024 10:31 PM, Stephen Hemminger wrote: > > The TAP device can use same file descriptor for both rx and tx queues. > > This allows up to 8 queues (versus 4) to be used with secondary process. > > > > It would be nice to briefly u

Re: [PATCH v12 02/12] net/tap: do not duplicate fd's

2024-05-20 Thread Ferruh Yigit
On 5/2/2024 10:31 PM, Stephen Hemminger wrote: > The TAP device can use same file descriptor for both rx and tx queues. > This allows up to 8 queues (versus 4) to be used with secondary process. > It would be nice to briefly update where this limit comes from, as removing this limitation can be l

[PATCH v12 02/12] net/tap: do not duplicate fd's

2024-05-02 Thread Stephen Hemminger
The TAP device can use same file descriptor for both rx and tx queues. This allows up to 8 queues (versus 4) to be used with secondary process. Bugzilla ID: 1381 Signed-off-by: Stephen Hemminger --- drivers/net/tap/rte_eth_tap.c | 192 ++ drivers/net/tap/rte_eth_t