diff options
author | Hao Lan <lanhao@huawei.com> | 2024-10-25 12:29:33 +0300 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2024-10-31 13:15:42 +0300 |
commit | 662ecfc46690e92cf630f51b5d4bbbcffe102980 (patch) | |
tree | ad984a99e44a0d00d8ef499c2d0c9e4b145ade40 /drivers/net | |
parent | 3e0f7cc887b77603182dceca4d3a6e84f6a40d0a (diff) | |
download | linux-662ecfc46690e92cf630f51b5d4bbbcffe102980.tar.xz |
net: hns3: fix missing features due to dev->features configuration too early
Currently, the netdev->features is configured in hns3_nic_set_features.
As a result, __netdev_update_features considers that there is no feature
difference, and the procedures of the real features are missing.
Fixes: 2a7556bb2b73 ("net: hns3: implement ndo_features_check ops for hns3 driver")
Signed-off-by: Hao Lan <lanhao@huawei.com>
Signed-off-by: Jian Shen <shenjian15@huawei.com>
Signed-off-by: Jijie Shao <shaojijie@huawei.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/hisilicon/hns3/hns3_enet.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c b/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c index 8760b4e9ade6..b09f0cca34dc 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c @@ -2483,7 +2483,6 @@ static int hns3_nic_set_features(struct net_device *netdev, return ret; } - netdev->features = features; return 0; } |