diff options
author | Alexander Duyck <alexander.h.duyck@intel.com> | 2008-09-12 19:29:34 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-09-12 19:29:34 -0400 |
commit | 92651940ab00dbe64722e908f70d816713d677b7 (patch) | |
tree | b68fdef99784bfa46b67aabaf70c19b0e5e0a144 /net/sched/Kconfig | |
parent | 78d15e82754945ee9821fb491b57faf43abfb9d7 (diff) |
pkt_sched: Add multiqueue scheduler support
This patch is intended to add a qdisc to support the new tx multiqueue
architecture by providing a band for each hardware queue. By doing
this it is possible to support a different qdisc per physical hardware
queue.
This qdisc uses the skb->queue_mapping to select which band to place
the traffic onto. It then uses a round robin w/ a check to see if the
subqueue is stopped to determine which band to dequeue the packet from.
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/Kconfig')
-rw-r--r-- | net/sched/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/net/sched/Kconfig b/net/sched/Kconfig index 9437b27ff84d..efaa7a75e7f3 100644 --- a/net/sched/Kconfig +++ b/net/sched/Kconfig | |||
@@ -106,6 +106,15 @@ config NET_SCH_PRIO | |||
106 | To compile this code as a module, choose M here: the | 106 | To compile this code as a module, choose M here: the |
107 | module will be called sch_prio. | 107 | module will be called sch_prio. |
108 | 108 | ||
109 | config NET_SCH_MULTIQ | ||
110 | tristate "Hardware Multiqueue-aware Multi Band Queuing (MULTIQ)" | ||
111 | ---help--- | ||
112 | Say Y here if you want to use an n-band queue packet scheduler | ||
113 | to support devices that have multiple hardware transmit queues. | ||
114 | |||
115 | To compile this code as a module, choose M here: the | ||
116 | module will be called sch_multiq. | ||
117 | |||
109 | config NET_SCH_RED | 118 | config NET_SCH_RED |
110 | tristate "Random Early Detection (RED)" | 119 | tristate "Random Early Detection (RED)" |
111 | ---help--- | 120 | ---help--- |