DCB: fix kconfig option
authorJeff Kirsher <jeffrey.t.kirsher@intel.com>
Tue, 25 Nov 2008 09:02:08 +0000 (01:02 -0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 25 Nov 2008 09:02:08 +0000 (01:02 -0800)
Since the netlink option for DCB is necessary to actually be useful,
simplified the Kconfig option.  In addition, added useful help text for the
Kconfig option.

Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/Kconfig
drivers/net/ixgbe/Makefile
drivers/net/ixgbe/ixgbe.h
drivers/net/ixgbe/ixgbe_main.c
include/linux/netdevice.h
net/Makefile
net/dcb/Kconfig
net/dcb/dcbnl.c

index efd461d7c2bbdf8bbf4eb9444017399ca5d3750a..75f9f7f2fbed73bd56b384b0b7c1dd07b09b6442 100644 (file)
@@ -2451,10 +2451,10 @@ config IXGBE_DCA
          driver.  DCA is a method for warming the CPU cache before data
          is used, with the intent of lessening the impact of cache misses.
 
-config IXGBE_DCBNL
+config IXGBE_DCB
        bool "Data Center Bridging (DCB) Support"
        default n
-       depends on IXGBE && DCBNL
+       depends on IXGBE && DCB
        ---help---
          Say Y here if you want to use Data Center Bridging (DCB) in the
          driver.
index 3228e508e628d9f818c3870167c434e9c337c61f..6e7ef765bcd882ec2257dcd5c244f0352846f36c 100644 (file)
@@ -35,4 +35,4 @@ obj-$(CONFIG_IXGBE) += ixgbe.o
 ixgbe-objs := ixgbe_main.o ixgbe_common.o ixgbe_ethtool.o \
               ixgbe_82598.o ixgbe_phy.o
 
-ixgbe-$(CONFIG_IXGBE_DCBNL) +=  ixgbe_dcb.o ixgbe_dcb_82598.o ixgbe_dcb_nl.o
+ixgbe-$(CONFIG_IXGBE_DCB) +=  ixgbe_dcb.o ixgbe_dcb_82598.o ixgbe_dcb_nl.o
index 9509aee2d361f931a02c8c5f8d17f12ce053297d..6cbf26e3db806f26bc44bdab645492cfa4b98e9e 100644 (file)
@@ -327,7 +327,7 @@ enum ixgbe_boards {
 };
 
 extern struct ixgbe_info ixgbe_82598_info;
-#ifdef CONFIG_IXGBE_DCBNL
+#ifdef CONFIG_IXGBE_DCB
 extern struct dcbnl_rtnl_ops dcbnl_ops;
 extern int ixgbe_copy_dcb_cfg(struct ixgbe_dcb_config *src_dcb_cfg,
                               struct ixgbe_dcb_config *dst_dcb_cfg,
index 6620397a1fb4b5ce9647406a0a88fa4e4fd84ecf..667a6463193db8a395e885549f1e4e61d6079a27 100644 (file)
@@ -1914,7 +1914,7 @@ static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
        }
 }
 
-#ifdef CONFIG_IXGBE_DCBNL
+#ifdef CONFIG_IXGBE_DCB
 /*
  * ixgbe_configure_dcb - Configure DCB hardware
  * @adapter: ixgbe adapter struct
@@ -1960,7 +1960,7 @@ static void ixgbe_configure(struct ixgbe_adapter *adapter)
        ixgbe_set_rx_mode(netdev);
 
        ixgbe_restore_vlan(adapter);
-#ifdef CONFIG_IXGBE_DCBNL
+#ifdef CONFIG_IXGBE_DCB
        if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
                netif_set_gso_max_size(netdev, 32768);
                ixgbe_configure_dcb(adapter);
@@ -2749,7 +2749,7 @@ static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
        struct ixgbe_hw *hw = &adapter->hw;
        struct pci_dev *pdev = adapter->pdev;
        unsigned int rss;
-#ifdef CONFIG_IXGBE_DCBNL
+#ifdef CONFIG_IXGBE_DCB
        int j;
        struct tc_configuration *tc;
 #endif
@@ -2768,7 +2768,7 @@ static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
        adapter->flags |= IXGBE_FLAG_RSS_ENABLED;
        adapter->ring_feature[RING_F_DCB].indices = IXGBE_MAX_DCB_INDICES;
 
-#ifdef CONFIG_IXGBE_DCBNL
+#ifdef CONFIG_IXGBE_DCB
        /* Configure DCB traffic classes */
        for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
                tc = &adapter->dcb_cfg.tc_config[j];
@@ -4120,7 +4120,7 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev,
        if (adapter->flags & IXGBE_FLAG_DCB_ENABLED)
                adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
 
-#ifdef CONFIG_IXGBE_DCBNL
+#ifdef CONFIG_IXGBE_DCB
        netdev->dcbnl_ops = &dcbnl_ops;
 #endif
 
index 76a89f8e6a1952a004447894deb9d0e87c7edf5d..0df0db068ac3f301d89fbbe9f734c7347ccd3d90 100644 (file)
@@ -43,7 +43,7 @@
 
 #include <net/net_namespace.h>
 #include <net/dsa.h>
-#ifdef CONFIG_DCBNL
+#ifdef CONFIG_DCB
 #include <net/dcbnl.h>
 #endif
 
@@ -847,7 +847,7 @@ struct net_device
 #define GSO_MAX_SIZE           65536
        unsigned int            gso_max_size;
 
-#ifdef CONFIG_DCBNL
+#ifdef CONFIG_DCB
        /* Data Center Bridging netlink ops */
        struct dcbnl_rtnl_ops *dcbnl_ops;
 #endif
index e5af3dc3a037b069e8573bfb4d4a9eda15106efa..ba4460432b7cc49a71d2ce5ef8d7990ac1a5ee60 100644 (file)
@@ -56,8 +56,8 @@ obj-$(CONFIG_NETLABEL)                += netlabel/
 obj-$(CONFIG_IUCV)             += iucv/
 obj-$(CONFIG_RFKILL)           += rfkill/
 obj-$(CONFIG_NET_9P)           += 9p/
-ifeq ($(CONFIG_DCBNL),y)
-obj-$(CONFIG_DCB)              += dcb/
+ifneq ($(CONFIG_DCB),)
+obj-y                          += dcb/
 endif
 
 ifeq ($(CONFIG_NET),y)
index bdf38802d339d437acec6c4e1120e3557b76a18c..4066d59c8de5e0c4a3308a9a0a00f30519b00be8 100644 (file)
@@ -1,12 +1,22 @@
 config DCB
-        tristate "Data Center Bridging support"
-
-config DCBNL
-       bool "Data Center Bridging netlink interface support"
-       depends on DCB
+       bool "Data Center Bridging support"
        default n
        ---help---
-         This option turns on the netlink interface
-         (dcbnl) for Data Center Bridging capable devices.
+         This enables support for configuring Data Center Bridging (DCB)
+         features on DCB capable Ethernet adapters via rtnetlink.  Say 'Y'
+         if you have a DCB capable Ethernet adapter which supports this
+         interface and you are connected to a DCB capable switch.
+
+         DCB is a collection of Ethernet enhancements which allow DCB capable
+         NICs and switches to support network traffic with differing
+         requirements (highly reliable, no drops vs. best effort vs. low
+         latency) to co-exist on Ethernet.
+
+         DCB features include:
+           Enhanced Transmission Selection (aka Priority Grouping) - provides a
+             framework for assigning bandwidth guarantees to traffic classes.
+           Priority-based Flow Control (PFC) - a MAC control pause frame which
+             works at the granularity of the 802.1p priority instead of the
+             link (802.3x).
 
          If unsure, say N.
index b2bda3f610df7b460e5fa21ae8eabb87f34221db..79a351d323af626a19a116cf70a26acb6fed642f 100644 (file)
@@ -48,7 +48,7 @@
  */
 
 MODULE_AUTHOR("Lucy Liu, <lucy.liu@intel.com>");
-MODULE_DESCRIPTION("Data Center Bridging generic netlink interface");
+MODULE_DESCRIPTION("Data Center Bridging netlink interface");
 MODULE_LICENSE("GPL");
 
 /**************** DCB attribute policies *************************************/