diff options
author | David Howells <dhowells@redhat.com> | 2016-06-30 11:16:21 (GMT) |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-07-06 09:51:14 (GMT) |
commit | e8d70ce177eeb4fbd1c218c60118d2c19c2496a6 (patch) | |
tree | 4f66f921714003b8743b59c92d9c01ec6a785ffa /net/rxrpc/conn_service.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/conn_service.c')
-rw-r--r-- | net/rxrpc/conn_service.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/rxrpc/conn_service.c b/net/rxrpc/conn_service.c index 77a509e..c6db2e8 100644 --- a/net/rxrpc/conn_service.c +++ b/net/rxrpc/conn_service.c @@ -70,10 +70,8 @@ struct rxrpc_connection *rxrpc_incoming_connection(struct rxrpc_local *local, return ERR_PTR(-ENOMEM); } - candidate->proto.local = local; candidate->proto.epoch = sp->hdr.epoch; candidate->proto.cid = sp->hdr.cid & RXRPC_CIDMASK; - candidate->proto.in_clientflag = RXRPC_CLIENT_INITIATED; candidate->params.local = local; candidate->params.peer = peer; candidate->params.service_id = sp->hdr.serviceId; |