Lines Matching +full:auto +full:- +full:poll
1 .. SPDX-License-Identifier: GPL-2.0
11 ------------------
21 ----------
25 be aborted. If necessary, poll or wait for completion of
28 Auto-close
29 ----------
38 ----------------------
46 for a driver implementing scatter-gather this means:
48 .. code-block:: c
52 u32 used = READ_ONCE(dr->prod) - READ_ONCE(dr->cons);
54 return dr->tx_ring_size - (used & bp->tx_ring_mask);
66 dr = dp->tx_rings[idx];
70 /* This should be a very rare race - log it. */
71 if (drv_tx_avail(dr) <= skb_shinfo(skb)->nr_frags + 1) {
79 netdev_tx_sent_queue(txq, skb->len);
85 dr->stats.stopped++;
93 .. code-block:: c
103 .. kernel-doc:: include/net/netdev_queues.h
107 ----------------------
113 ------------------