]> git.baikalelectronics.ru Git - kernel.git/commit
ipvlan: fix device features
authorMahesh Bandewar <maheshb@google.com>
Sat, 15 Aug 2020 05:53:24 +0000 (22:53 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sun, 16 Aug 2020 22:15:00 +0000 (15:15 -0700)
commit70e30d00af592309397e9019c53d4186b8d4a45a
treedc07176d19ba527b4acebca98ee02a7743aa42d2
parent7bdbb8885b6ceeaa7785d08539627068b6df7193
ipvlan: fix device features

Processing NETDEV_FEAT_CHANGE causes IPvlan links to lose
NETIF_F_LLTX feature because of the incorrect handling of
features in ipvlan_fix_features().

--before--
lpaa10:~# ethtool -k ipvl0 | grep tx-lockless
tx-lockless: on [fixed]
lpaa10:~# ethtool -K ipvl0 tso off
Cannot change tcp-segmentation-offload
Actual changes:
vlan-challenged: off [fixed]
tx-lockless: off [fixed]
lpaa10:~# ethtool -k ipvl0 | grep tx-lockless
tx-lockless: off [fixed]
lpaa10:~#

--after--
lpaa10:~# ethtool -k ipvl0 | grep tx-lockless
tx-lockless: on [fixed]
lpaa10:~# ethtool -K ipvl0 tso off
Cannot change tcp-segmentation-offload
Could not change any device features
lpaa10:~# ethtool -k ipvl0 | grep tx-lockless
tx-lockless: on [fixed]
lpaa10:~#

Fixes: a346ddd1a0fb ("ipvlan: Initial check-in of the IPVLAN driver.")
Signed-off-by: Mahesh Bandewar <maheshb@google.com>
Cc: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ipvlan/ipvlan_main.c