Re: [RFC PATCH v2 01/11] net: add netdev netlink api to bind dma-buf to a net device

2023-08-10 Thread Mina Almasry
On Thu, Aug 10, 2023 at 9:09 AM Samudrala, Sridhar wrote: > > > > On 8/9/2023 6:57 PM, Mina Almasry wrote: > > API takes the dma-buf fd as input, and binds it to the netdevice. The > > user can specify the rx queue to bind the dma-buf to. The user should be > > able to bind the same dma-buf to mul

Re: [RFC PATCH v2 01/11] net: add netdev netlink api to bind dma-buf to a net device

2023-08-10 Thread Samudrala, Sridhar
On 8/9/2023 6:57 PM, Mina Almasry wrote: API takes the dma-buf fd as input, and binds it to the netdevice. The user can specify the rx queue to bind the dma-buf to. The user should be able to bind the same dma-buf to multiple queues, but that is left as a (minor) TODO in this iteration. To s

[RFC PATCH v2 01/11] net: add netdev netlink api to bind dma-buf to a net device

2023-08-09 Thread Mina Almasry
API takes the dma-buf fd as input, and binds it to the netdevice. The user can specify the rx queue to bind the dma-buf to. The user should be able to bind the same dma-buf to multiple queues, but that is left as a (minor) TODO in this iteration. Suggested-by: Stanislav Fomichev Signed-off-by: M