Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 54fde423 authored by David Howells's avatar David Howells
Browse files

rxrpc: Fix checker warning by not passing always-zero value to ERR_PTR()



Fix the following checker warning:

	net/rxrpc/call_object.c:279 rxrpc_new_client_call()
	warn: passing zero to 'ERR_PTR'

where a value that's always zero is passed to ERR_PTR() so that it can be
passed to a tracepoint in an auxiliary pointer field.

Just pass NULL instead to the tracepoint.

Fixes: a84a46d7 ("rxrpc: Add some additional call tracing")
Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
parent 233c9edc
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -276,7 +276,7 @@ struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *rx,
		goto error;
		goto error;


	trace_rxrpc_call(call, rxrpc_call_connected, atomic_read(&call->usage),
	trace_rxrpc_call(call, rxrpc_call_connected, atomic_read(&call->usage),
			 here, ERR_PTR(ret));
			 here, NULL);


	spin_lock_bh(&call->conn->params.peer->lock);
	spin_lock_bh(&call->conn->params.peer->lock);
	hlist_add_head(&call->error_link,
	hlist_add_head(&call->error_link,