aboutsummaryrefslogtreecommitdiff
path: root/scripts/patch-kernel
diff options
context:
space:
mode:
authorFlorian Westphal <[email protected]>2020-02-17 16:54:38 +0100
committerDavid S. Miller <[email protected]>2020-02-18 12:05:53 -0800
commitd99bfed58d9698c0ea1dbf47e4fdf4b87cc7203f (patch)
treec577242f60d4c369f81eab6340134ce28ae955b7 /scripts/patch-kernel
parentaf6565adb02d3129d3fae4d9d5da945abaf4417a (diff)
mptcp: fix bogus socket flag values
Dan Carpenter reports static checker warnings due to bogus BIT() usage: net/mptcp/subflow.c:571 subflow_write_space() warn: test_bit() takes a bit number net/mptcp/subflow.c:694 subflow_state_change() warn: test_bit() takes a bit number net/mptcp/protocol.c:261 ssk_check_wmem() warn: test_bit() takes a bit number [..] This is harmless (we use bits 1 & 2 instead of 0 and 1), but would break eventually when adding BIT(5) (or 6, depends on size of 'long'). Just use 0 and 1, the values are only passed to test/set/clear_bit functions. Fixes: 648ef4b88673 ("mptcp: Implement MPTCP receive path") Reported-by: Dan Carpenter <[email protected]> Signed-off-by: Florian Westphal <[email protected]> Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'scripts/patch-kernel')
0 files changed, 0 insertions, 0 deletions