net: wangxun: fix to change Rx features
authorJiawen Wu <jiawenwu@trustnetic.com>
Fri, 17 May 2024 06:51:38 +0000 (14:51 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 17 May 2024 09:17:36 +0000 (10:17 +0100)
Fix the issue where some Rx features cannot be changed.

When using ethtool -K to turn off rx offload, it returns error and
displays "Could not change any device features". And netdev->features
is not assigned a new value to actually configure the hardware.

Fixes: 6dbedcffcf54 ("net: libwx: Implement xx_set_features ops")
Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/wangxun/libwx/wx_lib.c

index 6fae161cbcb822614a8f36935559f364ee0a7dc8..667a5675998cb18b4eabdb2bfc9dc84ebcc64da3 100644 (file)
@@ -2690,12 +2690,14 @@ int wx_set_features(struct net_device *netdev, netdev_features_t features)
                wx->rss_enabled = false;
        }
 
+       netdev->features = features;
+
        if (changed &
            (NETIF_F_HW_VLAN_CTAG_RX |
             NETIF_F_HW_VLAN_STAG_RX))
                wx_set_rx_mode(netdev);
 
-       return 1;
+       return 0;
 }
 EXPORT_SYMBOL(wx_set_features);