diff options
author | David Howells <dhowells@redhat.com> | 2016-06-30 14:16:21 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-07-06 12:51:14 +0300 |
commit | e8d70ce177eeb4fbd1c218c60118d2c19c2496a6 (patch) | |
tree | 4f66f921714003b8743b59c92d9c01ec6a785ffa /net/rxrpc/call_object.c | |
parent | 001c11224910b25e59a65ce1b49cfecdb4c631c0 (diff) | |
download | linux-e8d70ce177eeb4fbd1c218c60118d2c19c2496a6.tar.xz |
rxrpc: Prune the contents of the rxrpc_conn_proto struct
Prune the contents of the rxrpc_conn_proto struct. Most of the fields aren't
used anymore.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc/call_object.c')
-rw-r--r-- | net/rxrpc/call_object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/call_object.c b/net/rxrpc/call_object.c index 3f278721269e..ebbd7dd5292f 100644 --- a/net/rxrpc/call_object.c +++ b/net/rxrpc/call_object.c @@ -566,7 +566,7 @@ struct rxrpc_call *rxrpc_incoming_call(struct rxrpc_sock *rx, } call->epoch = conn->proto.epoch; call->service_id = conn->params.service_id; - call->in_clientflag = conn->proto.in_clientflag; + call->in_clientflag = RXRPC_CLIENT_INITIATED; /* Add the new call to the hashtable */ rxrpc_call_hash_add(call); |