[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20230814083000.3893589-1-william.xuanziyang@huawei.com>
Date: Mon, 14 Aug 2023 16:30:00 +0800
From: Ziyang Xuan <william.xuanziyang@...wei.com>
To: <willemdebruijn.kernel@...il.com>, <jasowang@...hat.com>,
<davem@...emloft.net>, <edumazet@...gle.com>, <kuba@...nel.org>,
<pabeni@...hat.com>, <netdev@...r.kernel.org>
Subject: [PATCH net-next] tun: add __exit annotations to module exit func tun_cleanup()
Add missing __exit annotations to module exit func tun_cleanup().
Signed-off-by: Ziyang Xuan <william.xuanziyang@...wei.com>
---
drivers/net/tun.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index 973b2fc74de3..291c118579a9 100644
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -3740,7 +3740,7 @@ static int __init tun_init(void)
return ret;
}
-static void tun_cleanup(void)
+static void __exit tun_cleanup(void)
{
misc_deregister(&tun_miscdev);
rtnl_link_unregister(&tun_link_ops);
--
2.25.1
Powered by blists - more mailing lists