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

Commit 83e301dd authored by Chuck Lever's avatar Chuck Lever Committed by Anna Schumaker
Browse files

xprtrdma: Remove memory address of "ep" from an error message



Clean up: Replace the hashed memory address of the target rpcrdma_ep
with the server's IP address and port. The server address is more
useful in an administrative error message.

Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
Signed-off-by: default avatarAnna Schumaker <Anna.Schumaker@Netapp.com>
parent f9521d53
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -143,8 +143,9 @@ rpcrdma_qp_event_handler(struct ib_event *event, void *context)
						   rx_ep);

	trace_xprtrdma_qp_event(r_xprt, event);
	pr_err("rpcrdma: %s on device %s ep %p\n",
	       ib_event_msg(event->event), event->device->name, context);
	pr_err("rpcrdma: %s on device %s connected to %s:%s\n",
	       ib_event_msg(event->event), event->device->name,
	       rpcrdma_addrstr(r_xprt), rpcrdma_portstr(r_xprt));

	if (ep->rep_connected == 1) {
		ep->rep_connected = -EIO;