summaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorXi Wang <wangxi11@huawei.com>2018-05-19 16:53:18 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-08-03 07:47:47 +0200
commit45c5224a8310d9e753280a753174cc4ea6849e0a (patch)
treeb200dd9bfdd0aadf5197a3b4cad193bda1452d12 /drivers/net
parent2cfbedaf65e12ef8e4157eb5cc0829e683eb52a0 (diff)
downloadlinux-stable-45c5224a8310d9e753280a753174cc4ea6849e0a.tar.gz
linux-stable-45c5224a8310d9e753280a753174cc4ea6849e0a.tar.bz2
linux-stable-45c5224a8310d9e753280a753174cc4ea6849e0a.zip
net: hns3: Fix the missing client list node initialization
[ Upstream commit 13562d1f5e2fbe2cf33b23a00abca3f71264c4ac ] This patch fixes the missing initialization of the client list node in the hnae3_register_client() function. Fixes: 76ad4f0ee747 ("net: hns3: Add support of HNS3 Ethernet Driver for hip08 SoC") Signed-off-by: Xi Wang <wangxi11@huawei.com> Signed-off-by: Peng Li <lipeng321@huawei.com> Signed-off-by: Salil Mehta <salil.mehta@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <alexander.levin@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/ethernet/hisilicon/hns3/hns3_enet.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c b/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c
index f2179fcec270..ef7d425ead2e 100644
--- a/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c
+++ b/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c
@@ -3602,6 +3602,8 @@ static int __init hns3_init_module(void)
client.ops = &client_ops;
+ INIT_LIST_HEAD(&client.node);
+
ret = hnae3_register_client(&client);
if (ret)
return ret;