RE: [PATCH net-next v14 06/13] rtase: Implement .ndo_start_xmit function

From: Justin Lai
Date: Mon Dec 18 2023 - 05:28:54 EST


>
> > + if (ring->cur_idx != dirty_tx)
> > + rtase_w8(tp, RTASE_TPPOLL, BIT(ring->index));
> > + }
> > +
> > + return workdone;
> > +}
>
> > + /* multiqueues */
> > + q_idx = skb_get_queue_mapping(skb);
> > + ring = &tp->tx_ring[q_idx];
>
> As Paolo pointed out elsewhere you seem to only support one queue.
> Remove this indirection, please, and always use queue 0, otherwise it's a bit
> confusing.

Hi Jakub,

This device supports Multi-Queue.