diff options
author | Shannon Nelson <snelson@pensando.io> | 2020-06-16 08:06:26 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-06-17 15:11:29 -0700 |
commit | ef7232da6bcd4294cbb2d424bc35885721570f01 (patch) | |
tree | 2dbb9c470950e960130a06ad4cbe4e9ee75a9f87 | |
parent | 3103b6feb4454646558eedc50ece728bc469f341 (diff) | |
download | linux-ef7232da6bcd4294cbb2d424bc35885721570f01.tar.bz2 |
ionic: export features for vlans to use
Set up vlan_features for use by any vlans above us.
Fixes: beead698b173 ("ionic: Add the basic NDO callbacks for netdev support")
Signed-off-by: Shannon Nelson <snelson@pensando.io>
Acked-by: Jonathan Toppins <jtoppins@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/pensando/ionic/ionic_lif.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/pensando/ionic/ionic_lif.c b/drivers/net/ethernet/pensando/ionic/ionic_lif.c index bfadc4934702..8f29ef133743 100644 --- a/drivers/net/ethernet/pensando/ionic/ionic_lif.c +++ b/drivers/net/ethernet/pensando/ionic/ionic_lif.c @@ -1246,6 +1246,7 @@ static int ionic_init_nic_features(struct ionic_lif *lif) netdev->hw_features |= netdev->hw_enc_features; netdev->features |= netdev->hw_features; + netdev->vlan_features |= netdev->features & ~NETIF_F_VLAN_FEATURES; netdev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE; |