|
@@ -3202,8 +3202,16 @@ static int efx_pci_probe(struct pci_dev *pci_dev,
|
|
|
net_dev->vlan_features |= (NETIF_F_HW_CSUM | NETIF_F_SG |
|
|
|
NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
|
|
|
NETIF_F_RXCSUM);
|
|
|
- net_dev->features |= efx->fixed_features;
|
|
|
+
|
|
|
net_dev->hw_features = net_dev->features & ~efx->fixed_features;
|
|
|
+
|
|
|
+ /* Disable VLAN filtering by default. It may be enforced if
|
|
|
+ * the feature is fixed (i.e. VLAN filters are required to
|
|
|
+ * receive VLAN tagged packets due to vPort restrictions).
|
|
|
+ */
|
|
|
+ net_dev->features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
|
|
|
+ net_dev->features |= efx->fixed_features;
|
|
|
+
|
|
|
pci_set_drvdata(pci_dev, efx);
|
|
|
SET_NETDEV_DEV(net_dev, &pci_dev->dev);
|
|
|
rc = efx_init_struct(efx, pci_dev, net_dev);
|