[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <202308041649468563730@zte.com.cn>
Date: Fri, 4 Aug 2023 16:49:46 +0800 (CST)
From: <yang.yang29@....com.cn>
To: <davem@...emloft.net>
Cc: <dsahern@...nel.org>, <edumazet@...gle.com>, <kuba@...nel.org>,
<netdev@...r.kernel.org>, <linux-kernel@...r.kernel.org>
Subject: [PATCH] udp_tunnel_nic: add net device refcount tracker
From: xu xin <xu.xin16@....com.cn>
Add net device refcount tracker to udp_tunnel_nic.c.
Signed-off-by: xu xin <xu.xin16@....com.cn>
Reviewed-by: Yang Yang <yang.yang29@....com.cn>
Cc: Kuang Mingfu <kuang.mingfu@....com.cn>
---
net/ipv4/udp_tunnel_nic.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/net/ipv4/udp_tunnel_nic.c b/net/ipv4/udp_tunnel_nic.c
index 029219749785..ce8f5c82b0a1 100644
--- a/net/ipv4/udp_tunnel_nic.c
+++ b/net/ipv4/udp_tunnel_nic.c
@@ -55,6 +55,9 @@ struct udp_tunnel_nic {
*/
static struct workqueue_struct *udp_tunnel_nic_workqueue;
+/* To track netdev_hold and netdev_put */
+static netdevice_tracker udp_tunnel_nic_devtracker;
+
static const char *udp_tunnel_nic_tunnel_type_name(unsigned int type)
{
switch (type) {
@@ -825,7 +828,7 @@ static int udp_tunnel_nic_register(struct net_device *dev)
}
utn->dev = dev;
- dev_hold(dev);
+ netdev_hold(dev, &udp_tunnel_nic_devtracker, GFP_KERNEL);
dev->udp_tunnel_nic = utn;
if (!(info->flags & UDP_TUNNEL_NIC_INFO_OPEN_ONLY))
@@ -879,7 +882,7 @@ udp_tunnel_nic_unregister(struct net_device *dev, struct udp_tunnel_nic *utn)
udp_tunnel_nic_free(utn);
release_dev:
dev->udp_tunnel_nic = NULL;
- dev_put(dev);
+ netdev_put(dev, &udp_tunnel_nic_devtracker);
}
static int
--
2.15.2
Powered by blists - more mailing lists