diff options
author | Eric Dumazet <edumazet@google.com> | 2019-11-06 01:11:52 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-11-07 03:14:48 +0300 |
commit | 7976a11b30929871a4c84c3c406d7681a3dbcc10 (patch) | |
tree | bdbef4ca196215ba83037b47bbcc5820e614e3e9 /net/atm/svc.c | |
parent | 25c7a6d1f90e208ec27ca854b1381ed39842ec57 (diff) | |
download | linux-7976a11b30929871a4c84c3c406d7681a3dbcc10.tar.xz |
net: use helpers to change sk_ack_backlog
Writers are holding a lock, but many readers do not.
Following patch will add appropriate barriers in
sk_acceptq_removed() and sk_acceptq_added().
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/atm/svc.c')
-rw-r--r-- | net/atm/svc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/atm/svc.c b/net/atm/svc.c index 908cbb8654f5..ba144d035e3d 100644 --- a/net/atm/svc.c +++ b/net/atm/svc.c @@ -381,7 +381,7 @@ static int svc_accept(struct socket *sock, struct socket *newsock, int flags, msg->pvc.sap_addr.vpi, msg->pvc.sap_addr.vci); dev_kfree_skb(skb); - sk->sk_ack_backlog--; + sk_acceptq_removed(sk); if (error) { sigd_enq2(NULL, as_reject, old_vcc, NULL, NULL, &old_vcc->qos, error); |