diff options
author | David S. Miller <davem@davemloft.net> | 2018-10-13 00:38:46 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-10-13 00:38:46 -0400 |
commit | d864991b220b7c62e81d21209e1fd978fd67352c (patch) | |
tree | b570a1ad6fc1b959c5bcda6ceca0b321319c01e0 /net/rxrpc/call_object.c | |
parent | a688c53a0277d8ea21d86a5c56884892e3442c5e (diff) | |
parent | bab5c80b211035739997ebd361a679fa85b39465 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts were easy to resolve using immediate context mostly,
except the cls_u32.c one where I simply too the entire HEAD
chunk.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc/call_object.c')
-rw-r--r-- | net/rxrpc/call_object.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/rxrpc/call_object.c b/net/rxrpc/call_object.c index 799f75b6900d..8f1a8f85b1f9 100644 --- a/net/rxrpc/call_object.c +++ b/net/rxrpc/call_object.c | |||
@@ -138,6 +138,7 @@ struct rxrpc_call *rxrpc_alloc_call(struct rxrpc_sock *rx, gfp_t gfp, | |||
138 | init_waitqueue_head(&call->waitq); | 138 | init_waitqueue_head(&call->waitq); |
139 | spin_lock_init(&call->lock); | 139 | spin_lock_init(&call->lock); |
140 | spin_lock_init(&call->notify_lock); | 140 | spin_lock_init(&call->notify_lock); |
141 | spin_lock_init(&call->input_lock); | ||
141 | rwlock_init(&call->state_lock); | 142 | rwlock_init(&call->state_lock); |
142 | atomic_set(&call->usage, 1); | 143 | atomic_set(&call->usage, 1); |
143 | call->debug_id = debug_id; | 144 | call->debug_id = debug_id; |
@@ -287,7 +288,7 @@ struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *rx, | |||
287 | /* Set up or get a connection record and set the protocol parameters, | 288 | /* Set up or get a connection record and set the protocol parameters, |
288 | * including channel number and call ID. | 289 | * including channel number and call ID. |
289 | */ | 290 | */ |
290 | ret = rxrpc_connect_call(call, cp, srx, gfp); | 291 | ret = rxrpc_connect_call(rx, call, cp, srx, gfp); |
291 | if (ret < 0) | 292 | if (ret < 0) |
292 | goto error; | 293 | goto error; |
293 | 294 | ||
@@ -339,7 +340,7 @@ int rxrpc_retry_client_call(struct rxrpc_sock *rx, | |||
339 | /* Set up or get a connection record and set the protocol parameters, | 340 | /* Set up or get a connection record and set the protocol parameters, |
340 | * including channel number and call ID. | 341 | * including channel number and call ID. |
341 | */ | 342 | */ |
342 | ret = rxrpc_connect_call(call, cp, srx, gfp); | 343 | ret = rxrpc_connect_call(rx, call, cp, srx, gfp); |
343 | if (ret < 0) | 344 | if (ret < 0) |
344 | goto error; | 345 | goto error; |
345 | 346 | ||