* [PATCH] net: add net device refcount tracker to pneigh_queue
@ 2023-08-04 8:57 yang.yang29
2023-08-04 12:01 ` Eric Dumazet
0 siblings, 1 reply; 3+ messages in thread
From: yang.yang29 @ 2023-08-04 8:57 UTC (permalink / raw)
To: davem; +Cc: dsahern, edumazet, kuba, netdev, linux-kernel
From: xu xin <xu.xin16@zte.com.cn>
Add a static net device refcount tracker to neighbour.c to track
dev's refcnt when pneigh enqueuing and dequeuing.
Signed-off-by: xu xin <xu.xin16@zte.com.cn>
Reviewed-by: Yang Yang <yang.yang.29@zte.com.cn>
Cc: Kuang Mingfu <kuang.mingfu@zte.com.cn>
---
net/core/neighbour.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/net/core/neighbour.c b/net/core/neighbour.c
index ddd0f32de20e..56e87130fa95 100644
--- a/net/core/neighbour.c
+++ b/net/core/neighbour.c
@@ -61,6 +61,7 @@ static int pneigh_ifdown_and_unlock(struct neigh_table *tbl,
static const struct seq_operations neigh_stat_seq_ops;
#endif
+static netdevice_tracker pneigh_queue_dev_tracker;
/*
Neighbour hash table buckets are protected with rwlock tbl->lock.
@@ -364,7 +365,7 @@ static void pneigh_queue_purge(struct sk_buff_head *list, struct net *net,
spin_unlock_irqrestore(&list->lock, flags);
while ((skb = __skb_dequeue(&tmp))) {
- dev_put(skb->dev);
+ netdev_put(skb->dev, &pneigh_queue_dev_tracker);
kfree_skb(skb);
}
}
@@ -1633,7 +1634,7 @@ static void neigh_proxy_process(struct timer_list *t)
kfree_skb(skb);
}
- dev_put(dev);
+ netdev_put(skb->dev, &pneigh_queue_dev_tracker);
} else if (!sched_next || tdif < sched_next)
sched_next = tdif;
}
@@ -1673,7 +1674,7 @@ void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p,
sched_next = tbl->proxy_timer.expires;
}
skb_dst_drop(skb);
- dev_hold(skb->dev);
+ netdev_hold(skb->dev, &pneigh_queue_dev_tracker, GFP_KERNEL);
__skb_queue_tail(&tbl->proxy_queue, skb);
p->qlen++;
mod_timer(&tbl->proxy_timer, sched_next);
--
2.15.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] net: add net device refcount tracker to pneigh_queue
2023-08-04 8:57 [PATCH] net: add net device refcount tracker to pneigh_queue yang.yang29
@ 2023-08-04 12:01 ` Eric Dumazet
2023-08-05 6:46 ` xu
0 siblings, 1 reply; 3+ messages in thread
From: Eric Dumazet @ 2023-08-04 12:01 UTC (permalink / raw)
To: yang.yang29; +Cc: davem, dsahern, kuba, netdev, linux-kernel
On Fri, Aug 4, 2023 at 10:58 AM <yang.yang29@zte.com.cn> wrote:
>
> From: xu xin <xu.xin16@zte.com.cn>
>
> Add a static net device refcount tracker to neighbour.c to track
> dev's refcnt when pneigh enqueuing and dequeuing.
>
> Signed-off-by: xu xin <xu.xin16@zte.com.cn>
> Reviewed-by: Yang Yang <yang.yang.29@zte.com.cn>
> Cc: Kuang Mingfu <kuang.mingfu@zte.com.cn>
> ---
Can you explain how this patch was tested ?
Thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] net: add net device refcount tracker to pneigh_queue
2023-08-04 12:01 ` Eric Dumazet
@ 2023-08-05 6:46 ` xu
0 siblings, 0 replies; 3+ messages in thread
From: xu @ 2023-08-05 6:46 UTC (permalink / raw)
To: edumazet; +Cc: davem, dsahern, kuba, linux-kernel, netdev, yang.yang29
>> Add a static net device refcount tracker to neighbour.c to track
>> dev's refcnt when pneigh enqueuing and dequeuing.
>>
>> Signed-off-by: xu xin <xu.xin16@zte.com.cn>
>> Reviewed-by: Yang Yang <yang.yang.29@zte.com.cn>
>> Cc: Kuang Mingfu <kuang.mingfu@zte.com.cn>
>> ---
>
>
>Can you explain how this patch was tested ?
>
>Thanks.
Sorry, I misunderstand the usage of netdev_hold and its netdevice_tracker.
I thought this tracker was simple enough, so I just added an additional netdev_hold
in the same postion and test if there is a warning "unregister_netdevice: waiting for ...".
But as you said, we need a separate netdevice_tracker per netdev_hold(), and specially `per dev`?
Actually, I'm still a little confused.
For example, here, can I move this netdevice_tracker into struct sk_buff ?
>diff --git a/net/core/neighbour.c b/net/core/neighbour.c
>index ddd0f32de20e..56e87130fa95 100644
>--- a/net/core/neighbour.c
>+++ b/net/core/neighbour.c
>@@ -61,6 +61,7 @@ static int pneigh_ifdown_and_unlock(struct neigh_table *tbl,
> static const struct seq_operations neigh_stat_seq_ops;
> #endif
>
>+static netdevice_tracker pneigh_queue_dev_tracker;
> /*
> Neighbour hash table buckets are protected with rwlock tbl->lock.
>
>@@ -364,7 +365,7 @@ static void pneigh_queue_purge(struct sk_buff_head *list, struct net *net,
> spin_unlock_irqrestore(&list->lock, flags);
>
> while ((skb = __skb_dequeue(&tmp))) {
>- dev_put(skb->dev);
>+ netdev_put(skb->dev, &pneigh_queue_dev_tracker);
> kfree_skb(skb);
> }
> }
>@@ -1633,7 +1634,7 @@ static void neigh_proxy_process(struct timer_list *t)
> kfree_skb(skb);
> }
>
>- dev_put(dev);
>+ netdev_put(skb->dev, &pneigh_queue_dev_tracker);
> } else if (!sched_next || tdif < sched_next)
> sched_next = tdif;
> }
>@@ -1673,7 +1674,7 @@ void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p,
> sched_next = tbl->proxy_timer.expires;
> }
> skb_dst_drop(skb);
>- dev_hold(skb->dev);
>+ netdev_hold(skb->dev, &pneigh_queue_dev_tracker, GFP_KERNEL);
> __skb_queue_tail(&tbl->proxy_queue, skb);
> p->qlen++;
> mod_timer(&tbl->proxy_timer, sched_next);
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-08-05 6:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-04 8:57 [PATCH] net: add net device refcount tracker to pneigh_queue yang.yang29
2023-08-04 12:01 ` Eric Dumazet
2023-08-05 6:46 ` xu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).