net: hns3: Fix the missing client list node initialization
authorXi Wang <wangxi11@huawei.com>
Sat, 19 May 2018 15:53:18 +0000 (16:53 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 3 Aug 2018 05:50:31 +0000 (07:50 +0200)
[ 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>
drivers/net/ethernet/hisilicon/hns3/hns3pf/hns3_enet.c

index 9f8c56f9e9c1cd908b27691042e7f291ab83c8dd..69726908e72c49e1cf532abce4e4cc4561718670 100644 (file)
@@ -2883,6 +2883,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;