Re: [PATCH net] mptcp: fix bit MPTCP_PUSH_PENDING tests

2021-03-12 Thread Matthieu Baerts
Hi Dan, On 12/03/2021 08:41, Dan Carpenter wrote: The MPTCP_PUSH_PENDING define is 6 and these tests should be testing if BIT(6) is set. Good catch, indeed, BIT() macro is missing! It was not detected by our tests suite because in -net, that's the only flag that is set. But another patch f

[PATCH net] mptcp: fix bit MPTCP_PUSH_PENDING tests

2021-03-11 Thread Dan Carpenter
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 --- net/mptcp/protocol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/mptcp/protocol.c b/net/mp