Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ab8c4fd8 authored by Huazhong Tan's avatar Huazhong Tan Committed by Greg Kroah-Hartman
Browse files

net: hns3: add a missing uninit debugfs when unload driver



[ Upstream commit e22b5e728bbb179b912d3a3cd5c25894a89a26a2 ]

When unloading driver, if flag HNS3_NIC_STATE_INITED has been
already cleared, the debugfs will not be uninitialized, so fix it.

Fixes: b2292360 ("net: hns3: Add debugfs framework registration")
Signed-off-by: default avatarHuazhong Tan <tanhuazhong@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 5c0192d2
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -3993,9 +3993,8 @@ static void hns3_client_uninit(struct hnae3_handle *handle, bool reset)

	hns3_put_ring_config(priv);

	hns3_dbg_uninit(handle);

out_netdev_free:
	hns3_dbg_uninit(handle);
	free_netdev(netdev);
}