dect
/
linux-2.6
Archived
13
0
Fork 0

rxrpc: Fix set but unused variable 'usage' in rxrpc_get_transport()

This is identical to the case I fixed in rxrpc_get_peer()

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller 2011-05-19 18:51:50 -04:00
parent 63722966d7
commit ed84cadb21
1 changed files with 2 additions and 1 deletions

View File

@ -111,6 +111,7 @@ struct rxrpc_transport *rxrpc_get_transport(struct rxrpc_local *local,
/* we can now add the new candidate to the list */
trans = candidate;
candidate = NULL;
usage = atomic_read(&trans->usage);
rxrpc_get_local(trans->local);
atomic_inc(&trans->peer->usage);
@ -125,7 +126,7 @@ success:
trans->local->debug_id,
trans->peer->debug_id);
_leave(" = %p {u=%d}", trans, atomic_read(&trans->usage));
_leave(" = %p {u=%d}", trans, usage);
return trans;
/* we found the transport in the list immediately */