Re: [PATCH net-next v15 12/14] net: add devmem TCP documentation

2024-07-01 Thread Mina Almasry
On Fri, Jun 28, 2024 at 3:10 AM Donald Hunter wrote: > > Mina Almasry writes: > > + > > +The user must bind a dmabuf to any number of RX queues on a given NIC using > > +the netlink API:: > > + > > + /* Bind dmabuf to NIC RX queue 15 */ > > + struct netdev_queue *queues; > > + queues

Re: [PATCH net-next v15 12/14] net: add devmem TCP documentation

2024-06-28 Thread Donald Hunter
Mina Almasry writes: > + > +The user must bind a dmabuf to any number of RX queues on a given NIC using > +the netlink API:: > + > + /* Bind dmabuf to NIC RX queue 15 */ > + struct netdev_queue *queues; > + queues = malloc(sizeof(*queues) * 1); > + > + queues[0]._present.type = 1;