~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/networking/multiqueue.rst

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 .. SPDX-License-Identifier: GPL-2.0
  2 
  3 ===========================================
  4 HOWTO for multiqueue network device support
  5 ===========================================
  6 
  7 Section 1: Base driver requirements for implementing multiqueue support
  8 =======================================================================
  9 
 10 Intro: Kernel support for multiqueue devices
 11 ---------------------------------------------------------
 12 
 13 Kernel support for multiqueue devices is always present.
 14 
 15 Base drivers are required to use the new alloc_etherdev_mq() or
 16 alloc_netdev_mq() functions to allocate the subqueues for the device.  The
 17 underlying kernel API will take care of the allocation and deallocation of
 18 the subqueue memory, as well as netdev configuration of where the queues
 19 exist in memory.
 20 
 21 The base driver will also need to manage the queues as it does the global
 22 netdev->queue_lock today.  Therefore base drivers should use the
 23 netif_{start|stop|wake}_subqueue() functions to manage each queue while the
 24 device is still operational.  netdev->queue_lock is still used when the device
 25 comes online or when it's completely shut down (unregister_netdev(), etc.).
 26 
 27 
 28 Section 2: Qdisc support for multiqueue devices
 29 ===============================================
 30 
 31 Currently two qdiscs are optimized for multiqueue devices.  The first is the
 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
 34 qdisc is responsible for classifying the skb's and then directing the skb's to
 35 bands and queues based on the value in skb->queue_mapping.  Use this field in
 36 the base driver to determine which queue to send the skb to.
 37 
 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
 40 associated with the band is not stopped prior to dequeuing a packet.
 41 
 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.
 45 
 46 
 47 Section 3: Brief howto using MULTIQ for multiqueue devices
 48 ==========================================================
 49 
 50 The userspace command 'tc,' part of the iproute2 package, is used to configure
 51 qdiscs.  To add the MULTIQ qdisc to your network device, assuming the device
 52 is called eth0, run the following command::
 53 
 54     # tc qdisc add dev eth0 root handle 1: multiq
 55 
 56 The qdisc will allocate the number of bands to equal the number of queues that
 57 the device reports, and bring the qdisc online.  Assuming eth0 has 4 Tx
 58 queues, the band mapping would look like::
 59 
 60     band 0 => queue 0
 61     band 1 => queue 1
 62     band 2 => queue 2
 63     band 3 => queue 3
 64 
 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.
 67 
 68 The behavior of tc filters remains the same.  However a new tc action,
 69 skbedit, has been added.  Assuming you wanted to route all traffic to a
 70 specific host, for example 192.168.0.3, through a specific queue you could use
 71 this action and establish a filter such as::
 72 
 73     tc filter add dev eth0 parent 1: protocol ip prio 1 u32 \
 74             match ip dst 192.168.0.3 \
 75             action skbedit queue_mapping 3
 76 
 77 :Author: Alexander Duyck <alexander.h.duyck@intel.com>
 78 :Original Author: Peter P. Waskiewicz Jr. <peter.p.waskiewicz.jr@intel.com>

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php