aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
diff options
context:
space:
mode:
authorAlexander Duyck <alexander.h.duyck@intel.com>2016-08-12 12:53:39 -0400
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2016-08-16 16:21:51 -0400
commit3d951822be216d8c6fcfc8abf75e5ed307eeb646 (patch)
tree4845ccc5c604e28fcefea0845c3c4fb6ad64d46b /drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
parentf60439bc21e3337429838e477903214f5bd8277f (diff)
ixgbe: Re-enable ability to toggle VLAN filtering
Back when I submitted the GSO code I messed up and dropped the support for disabling the VLAN tag filtering via the feature bit. This patch re-enables the use of the NETIF_F_HW_VLAN_CTAG_FILTER to enable/disable the VLAN filtering independent of toggling promiscuous mode. Fixes: b83e30104b ("ixgbe/ixgbevf: Add support for GSO partial") Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/ixgbe/ixgbe_main.c')
-rw-r--r--drivers/net/ethernet/intel/ixgbe/ixgbe_main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
index e0fdef85b680..ee57a89252bb 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
@@ -9523,6 +9523,7 @@ skip_sriov:
9523 9523
9524 /* copy netdev features into list of user selectable features */ 9524 /* copy netdev features into list of user selectable features */
9525 netdev->hw_features |= netdev->features | 9525 netdev->hw_features |= netdev->features |
9526 NETIF_F_HW_VLAN_CTAG_FILTER |
9526 NETIF_F_HW_VLAN_CTAG_RX | 9527 NETIF_F_HW_VLAN_CTAG_RX |
9527 NETIF_F_HW_VLAN_CTAG_TX | 9528 NETIF_F_HW_VLAN_CTAG_TX |
9528 NETIF_F_RXALL | 9529 NETIF_F_RXALL |