diff options
author | Eric Dumazet <edumazet@google.com> | 2016-05-17 17:44:08 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-05-19 11:36:49 -0700 |
commit | 38036629cded6b96a9f9689758a88d067c4d4d44 (patch) | |
tree | 419a1d0d02014f0fc416939a93792d1c4aee24f6 /net/rds/tcp_listen.c | |
parent | e1daca289a36965d923ec26647b5668e023eb0ac (diff) | |
download | linux-38036629cded6b96a9f9689758a88d067c4d4d44.tar.gz linux-38036629cded6b96a9f9689758a88d067c4d4d44.tar.bz2 linux-38036629cded6b96a9f9689758a88d067c4d4d44.zip |
rds: tcp: block BH in TCP callbacks
TCP stack can now run from process context.
Use read_lock_bh(&sk->sk_callback_lock) variant to restore previous
assumption.
Fixes: 5413d1babe8f ("net: do not block BH while processing socket backlog")
Fixes: d41a69f1d390 ("tcp: make tcp_sendmsg() aware of socket backlog")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rds/tcp_listen.c')
-rw-r--r-- | net/rds/tcp_listen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rds/tcp_listen.c b/net/rds/tcp_listen.c index be263cdf268b..3fa367945105 100644 --- a/net/rds/tcp_listen.c +++ b/net/rds/tcp_listen.c @@ -166,7 +166,7 @@ void rds_tcp_listen_data_ready(struct sock *sk) rdsdebug("listen data ready sk %p\n", sk); - read_lock(&sk->sk_callback_lock); + read_lock_bh(&sk->sk_callback_lock); ready = sk->sk_user_data; if (!ready) { /* check for teardown race */ ready = sk->sk_data_ready; @@ -183,7 +183,7 @@ void rds_tcp_listen_data_ready(struct sock *sk) rds_tcp_accept_work(sk); out: - read_unlock(&sk->sk_callback_lock); + read_unlock_bh(&sk->sk_callback_lock); ready(sk); } |