mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 09:14:19 +08:00
rxrpc: Fix a case where a call event bit is being used as a flag bit
Fix a case where RXRPC_CALL_RELEASE (an event) is being used to specify a flag bit. RXRPC_CALL_RELEASED should be used instead. Signed-off-by: David Howells <dhowells@redhat.com>
This commit is contained in:
parent
1f27cde313
commit
e721498a63
@ -185,7 +185,7 @@ invalid_service:
|
||||
read_unlock_bh(&local->services_lock);
|
||||
|
||||
read_lock_bh(&call->state_lock);
|
||||
if (!test_bit(RXRPC_CALL_RELEASE, &call->flags) &&
|
||||
if (!test_bit(RXRPC_CALL_RELEASED, &call->flags) &&
|
||||
!test_and_set_bit(RXRPC_CALL_RELEASE, &call->events)) {
|
||||
rxrpc_get_call(call);
|
||||
rxrpc_queue_call(call);
|
||||
|
Loading…
Reference in New Issue
Block a user