diff options
author | David S. Miller <davem@davemloft.net> | 2011-05-19 18:51:50 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-05-19 18:51:50 -0400 |
commit | ed84cadb21e15a3e59a2154158c58579774f0851 (patch) | |
tree | b633d0a680792adc26c147b07977036ccacb1c1d /net/rxrpc | |
parent | 63722966d703aeb8071d52172de87e377006cd28 (diff) | |
download | linux-exynos-ed84cadb21e15a3e59a2154158c58579774f0851.tar.gz linux-exynos-ed84cadb21e15a3e59a2154158c58579774f0851.tar.bz2 linux-exynos-ed84cadb21e15a3e59a2154158c58579774f0851.zip |
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>
Diffstat (limited to 'net/rxrpc')
-rw-r--r-- | net/rxrpc/ar-transport.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/rxrpc/ar-transport.c b/net/rxrpc/ar-transport.c index 5e0226fe587e..92df566930b9 100644 --- a/net/rxrpc/ar-transport.c +++ b/net/rxrpc/ar-transport.c @@ -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 */ |