aboutsummaryrefslogtreecommitdiffstats
path: root/net/packet/af_packet.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/packet/af_packet.c')
-rw-r--r--net/packet/af_packet.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
index bfaa0a83f0eb..f220c5bdb71f 100644
--- a/net/packet/af_packet.c
+++ b/net/packet/af_packet.c
@@ -2317,10 +2317,13 @@ static int packet_release(struct socket *sock)
2317 net = sock_net(sk); 2317 net = sock_net(sk);
2318 po = pkt_sk(sk); 2318 po = pkt_sk(sk);
2319 2319
2320 spin_lock_bh(&net->packet.sklist_lock); 2320 mutex_lock(&net->packet.sklist_lock);
2321 sk_del_node_init_rcu(sk); 2321 sk_del_node_init_rcu(sk);
2322 mutex_unlock(&net->packet.sklist_lock);
2323
2324 preempt_disable();
2322 sock_prot_inuse_add(net, sk->sk_prot, -1); 2325 sock_prot_inuse_add(net, sk->sk_prot, -1);
2323 spin_unlock_bh(&net->packet.sklist_lock); 2326 preempt_enable();
2324 2327
2325 spin_lock(&po->bind_lock); 2328 spin_lock(&po->bind_lock);
2326 unregister_prot_hook(sk, false); 2329 unregister_prot_hook(sk, false);
@@ -2519,10 +2522,13 @@ static int packet_create(struct net *net, struct socket *sock, int protocol,
2519 register_prot_hook(sk); 2522 register_prot_hook(sk);
2520 } 2523 }
2521 2524
2522 spin_lock_bh(&net->packet.sklist_lock); 2525 mutex_lock(&net->packet.sklist_lock);
2523 sk_add_node_rcu(sk, &net->packet.sklist); 2526 sk_add_node_rcu(sk, &net->packet.sklist);
2527 mutex_unlock(&net->packet.sklist_lock);
2528
2529 preempt_disable();
2524 sock_prot_inuse_add(net, &packet_proto, 1); 2530 sock_prot_inuse_add(net, &packet_proto, 1);
2525 spin_unlock_bh(&net->packet.sklist_lock); 2531 preempt_enable();
2526 2532
2527 return 0; 2533 return 0;
2528out: 2534out:
@@ -3775,7 +3781,7 @@ static const struct file_operations packet_seq_fops = {
3775 3781
3776static int __net_init packet_net_init(struct net *net) 3782static int __net_init packet_net_init(struct net *net)
3777{ 3783{
3778 spin_lock_init(&net->packet.sklist_lock); 3784 mutex_init(&net->packet.sklist_lock);
3779 INIT_HLIST_HEAD(&net->packet.sklist); 3785 INIT_HLIST_HEAD(&net->packet.sklist);
3780 3786
3781 if (!proc_net_fops_create(net, "packet", 0, &packet_seq_fops)) 3787 if (!proc_net_fops_create(net, "packet", 0, &packet_seq_fops))