mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-10 07:10:27 +00:00
mptcp: fix bit MPTCP_PUSH_PENDING tests
The MPTCP_PUSH_PENDING define is 6 and these tests should be testing if BIT(6) is set. Fixes: c2e6048fa1cf ("mptcp: fix race in release_cb") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Matthieu Baerts <matthieu.baerts@tessares.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b1dd9bf688
commit
2e5de7e0c8
@ -2968,7 +2968,7 @@ static void mptcp_release_cb(struct sock *sk)
|
||||
for (;;) {
|
||||
flags = 0;
|
||||
if (test_and_clear_bit(MPTCP_PUSH_PENDING, &mptcp_sk(sk)->flags))
|
||||
flags |= MPTCP_PUSH_PENDING;
|
||||
flags |= BIT(MPTCP_PUSH_PENDING);
|
||||
if (!flags)
|
||||
break;
|
||||
|
||||
@ -2981,7 +2981,7 @@ static void mptcp_release_cb(struct sock *sk)
|
||||
*/
|
||||
|
||||
spin_unlock_bh(&sk->sk_lock.slock);
|
||||
if (flags & MPTCP_PUSH_PENDING)
|
||||
if (flags & BIT(MPTCP_PUSH_PENDING))
|
||||
__mptcp_push_pending(sk, 0);
|
||||
|
||||
cond_resched();
|
||||
|
Loading…
x
Reference in New Issue
Block a user