Re: [PATCH 2/2] e1000: Implement the new kernel API for multiqueue TX support.
From: Thomas Graf <tgraf@suug.ch>
Date: 2007-03-09 13:41:54
Also in:
lkml
From: Thomas Graf <tgraf@suug.ch>
Date: 2007-03-09 13:41:54
Also in:
lkml
* Kok, Auke [off-list ref] 2007-02-08 16:09
From: Peter Waskiewicz Jr. <redacted> Several newer e1000 chipsets support multiple RX and TX queues. Most commonly, 82571's and ESB2LAN support 2 rx and 2 rx queues. Signed-off-by: Peter Waskiewicz Jr. <redacted> Signed-off-by: Auke Kok <redacted> --- drivers/net/Kconfig | 13 ++ drivers/net/e1000/e1000.h | 23 +++ drivers/net/e1000/e1000_ethtool.c | 43 ++++++ drivers/net/e1000/e1000_main.c | 269 +++++++++++++++++++++++++++++++------ 4 files changed, 304 insertions(+), 44 deletions(-)diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index ad92b6a..2d758ab 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig@@ -1988,6 +1988,19 @@ config E1000_DISABLE_PACKET_SPLIT If in doubt, say N. +config E1000_MQ + bool "Enable Tx/Rx Multiqueue Support (EXPERIMENTAL)" + depends on E1000 && NET_MULTI_QUEUE_DEVICE && EXPERIMENTAL
Would be better to just select NET_MULTI_QUEUE_DEVICE instead of depending on it.