diff options
author | Jesse Gross <jesse@nicira.com> | 2010-10-20 09:56:10 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-10-21 04:26:55 -0400 |
commit | f62bbb5e62c6e4a91fb222d22bc46e8d4d7e59ef (patch) | |
tree | d85a5bfb7daf205859da588d50cf2d04b6c011fc /drivers/net/ixgbe/ixgbe_ethtool.c | |
parent | 7d0fd2117e3d0550d7987b3aff2bfbc0244cf7c6 (diff) |
ixgbe: Update ixgbe to use new vlan accleration.
Make the ixgbe driver use the new vlan accleration model.
Signed-off-by: Jesse Gross <jesse@nicira.com>
CC: Peter Waskiewicz <peter.p.waskiewicz.jr@intel.com>
CC: Emil Tantilov <emil.s.tantilov@intel.com>
CC: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_ethtool.c')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_ethtool.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_ethtool.c b/drivers/net/ixgbe/ixgbe_ethtool.c index d4ac94324fa0..dbfd62fd40eb 100644 --- a/drivers/net/ixgbe/ixgbe_ethtool.c +++ b/drivers/net/ixgbe/ixgbe_ethtool.c | |||
@@ -2113,7 +2113,17 @@ static int ixgbe_set_flags(struct net_device *netdev, u32 data) | |||
2113 | bool need_reset = false; | 2113 | bool need_reset = false; |
2114 | int rc; | 2114 | int rc; |
2115 | 2115 | ||
2116 | rc = ethtool_op_set_flags(netdev, data, ETH_FLAG_LRO | ETH_FLAG_NTUPLE); | 2116 | #ifdef CONFIG_IXGBE_DCB |
2117 | if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && | ||
2118 | !(data & ETH_FLAG_RXVLAN)) | ||
2119 | return -EINVAL; | ||
2120 | #endif | ||
2121 | |||
2122 | need_reset = (data & ETH_FLAG_RXVLAN) != | ||
2123 | (netdev->features & NETIF_F_HW_VLAN_RX); | ||
2124 | |||
2125 | rc = ethtool_op_set_flags(netdev, data, ETH_FLAG_LRO | | ||
2126 | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN); | ||
2117 | if (rc) | 2127 | if (rc) |
2118 | return rc; | 2128 | return rc; |
2119 | 2129 | ||