igb: remove LRO Kconfig option
authorJeff Kirsher <jeffrey.t.kirsher@intel.com>
Thu, 19 Feb 2009 01:56:25 +0000 (17:56 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 19 Feb 2009 01:56:25 +0000 (17:56 -0800)
To match ixgbe GRO functionality, we remove the LRO (which is now GRO)
Kconfig option which enables GRO by default.

Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/Kconfig
drivers/net/igb/igb_main.c

index 3fed3347f4b358097c3e6daa31418c01d0a897a4..683a5ac4e12280a5ac5d526aecfd3d2baa0b97d0 100644 (file)
@@ -2019,14 +2019,6 @@ config IGB
          To compile this driver as a module, choose M here. The module
          will be called igb.
 
-config IGB_LRO 
-       bool "Use software LRO"
-       depends on IGB && INET
-       ---help---
-         Say Y here if you want to use large receive offload. 
-
-         If in doubt, say N.
-
 config IGB_DCA
        bool "Direct Cache Access (DCA) Support"
        default y
index 43f489aba19169875fe62edc83e9a291dbbcbd83..457f12e345ca3694f72713a623435eb37b19c91e 100644 (file)
@@ -1248,9 +1248,7 @@ static int __devinit igb_probe(struct pci_dev *pdev,
        netdev->features |= NETIF_F_TSO;
        netdev->features |= NETIF_F_TSO6;
 
-#ifdef CONFIG_IGB_LRO
        netdev->features |= NETIF_F_GRO;
-#endif
 
        netdev->vlan_features |= NETIF_F_TSO;
        netdev->vlan_features |= NETIF_F_TSO6;
This page took 0.043643 seconds and 5 git commands to generate.