mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
net: Make sure BHs are disabled in sock_prot_inuse_add()
There is still a call to sock_prot_inuse_add() in af_netlink while in a preemptable section. Add explicit BH disable around this call. Signed-off-by: Eric Dumazet <dada1@cosmosbay.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
920de804bc
commit
3755810ceb
1 changed files with 2 additions and 0 deletions
|
@ -515,7 +515,9 @@ static int netlink_release(struct socket *sock)
|
|||
kfree(nlk->groups);
|
||||
nlk->groups = NULL;
|
||||
|
||||
local_bh_disable();
|
||||
sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
|
||||
local_bh_enable();
|
||||
sock_put(sk);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue