Lines Matching +full:hardware +full:- +full:based
1 .. SPDX-License-Identifier: GPL-2.0
11 ---------------------------------------------------------
22 netdev->queue_lock today. Therefore base drivers should use the
24 device is still operational. netdev->queue_lock is still used when the device
32 default pfifo_fast qdisc. This qdisc supports one qdisc per hardware queue.
33 A new round-robin qdisc, sch_multiq also supports multiple hardware queues. The
35 bands and queues based on the value in skb->queue_mapping. Use this field in
38 sch_multiq has been added for hardware that wishes to avoid head-of-line
39 blocking. It will cycle though the bands and verify that the hardware queue
42 On qdisc load, the number of bands is based on the number of queues on the
43 hardware. Once the association is made, any skb with skb->queue_mapping set,
44 will be queued to the band associated with the hardware queue.
65 Traffic will begin flowing through each queue based on either the simple_tx_hash
66 function or based on netdev->select_queue() if you have it defined.