mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
rxrpc: Fix exclusive client connections
Exclusive connections are currently reusable (which they shouldn't be) because rxrpc_alloc_client_connection() checks the exclusive flag in the rxrpc_connection struct before it's initialised from the function parameters. This means that the DONT_REUSE flag doesn't get set. Fix this by checking the function parameters for the exclusive flag. Signed-off-by: David Howells <dhowells@redhat.com>
This commit is contained in:
parent
31fbe81fe3
commit
8732db67c6
@ -200,7 +200,7 @@ rxrpc_alloc_client_connection(struct rxrpc_conn_parameters *cp, gfp_t gfp)
|
||||
}
|
||||
|
||||
atomic_set(&conn->usage, 1);
|
||||
if (conn->params.exclusive)
|
||||
if (cp->exclusive)
|
||||
__set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags);
|
||||
|
||||
conn->params = *cp;
|
||||
|
Loading…
Reference in New Issue
Block a user