net: add net device refcount tracker to struct netdev_rx_queue

This helps debugging net device refcount leaks.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
Eric Dumazet 2021-12-04 20:21:58 -08:00 committed by Jakub Kicinski
parent 4d92b95ff2
commit 80e8921b2b
2 changed files with 4 additions and 2 deletions

View File

@ -741,6 +741,8 @@ struct netdev_rx_queue {
#endif #endif
struct kobject kobj; struct kobject kobj;
struct net_device *dev; struct net_device *dev;
netdevice_tracker dev_tracker;
#ifdef CONFIG_XDP_SOCKETS #ifdef CONFIG_XDP_SOCKETS
struct xsk_buff_pool *pool; struct xsk_buff_pool *pool;
#endif #endif

View File

@ -1004,7 +1004,7 @@ static void rx_queue_release(struct kobject *kobj)
#endif #endif
memset(kobj, 0, sizeof(*kobj)); memset(kobj, 0, sizeof(*kobj));
dev_put(queue->dev); dev_put_track(queue->dev, &queue->dev_tracker);
} }
static const void *rx_queue_namespace(struct kobject *kobj) static const void *rx_queue_namespace(struct kobject *kobj)
@ -1044,7 +1044,7 @@ static int rx_queue_add_kobject(struct net_device *dev, int index)
/* Kobject_put later will trigger rx_queue_release call which /* Kobject_put later will trigger rx_queue_release call which
* decreases dev refcount: Take that reference here * decreases dev refcount: Take that reference here
*/ */
dev_hold(queue->dev); dev_hold_track(queue->dev, &queue->dev_tracker, GFP_KERNEL);
kobj->kset = dev->queues_kset; kobj->kset = dev->queues_kset;
error = kobject_init_and_add(kobj, &rx_queue_ktype, NULL, error = kobject_init_and_add(kobj, &rx_queue_ktype, NULL,