net: use the frag lru_lock to protect netns_frags.nqueues update
Move the protection of netns_frags.nqueues updates under the LRU_lock, instead of the write lock. As they are located on the same cacheline, and this is also needed when transitioning to use per hash bucket locking. Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com> Acked-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
68399ac37e
commit
1b5ab0def4
2 changed files with 2 additions and 2 deletions
|
@ -143,6 +143,7 @@ static inline void inet_frag_lru_del(struct inet_frag_queue *q)
|
|||
{
|
||||
spin_lock(&q->net->lru_lock);
|
||||
list_del(&q->lru_list);
|
||||
q->net->nqueues--;
|
||||
spin_unlock(&q->net->lru_lock);
|
||||
}
|
||||
|
||||
|
@ -151,6 +152,7 @@ static inline void inet_frag_lru_add(struct netns_frags *nf,
|
|||
{
|
||||
spin_lock(&nf->lru_lock);
|
||||
list_add_tail(&q->lru_list, &nf->lru_list);
|
||||
q->net->nqueues++;
|
||||
spin_unlock(&nf->lru_lock);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue