소스 검색

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>
David S. Miller 14 년 전
부모
커밋
ed84cadb21
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      net/rxrpc/ar-transport.c

+ 2 - 1
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 */
 	/* we can now add the new candidate to the list */
 	trans = candidate;
 	trans = candidate;
 	candidate = NULL;
 	candidate = NULL;
+	usage = atomic_read(&trans->usage);
 
 
 	rxrpc_get_local(trans->local);
 	rxrpc_get_local(trans->local);
 	atomic_inc(&trans->peer->usage);
 	atomic_inc(&trans->peer->usage);
@@ -125,7 +126,7 @@ success:
 	     trans->local->debug_id,
 	     trans->local->debug_id,
 	     trans->peer->debug_id);
 	     trans->peer->debug_id);
 
 
-	_leave(" = %p {u=%d}", trans, atomic_read(&trans->usage));
+	_leave(" = %p {u=%d}", trans, usage);
 	return trans;
 	return trans;
 
 
 	/* we found the transport in the list immediately */
 	/* we found the transport in the list immediately */