]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
xprtrdma: Shorten QP access error message
authorChuck Lever <chuck.lever@oracle.com>
Tue, 29 Nov 2016 15:53:21 +0000 (10:53 -0500)
committerAnna Schumaker <Anna.Schumaker@Netapp.com>
Tue, 29 Nov 2016 21:45:44 +0000 (16:45 -0500)
Clean up: The convention for this type of warning message is not to
show the function name or "RPC:       ".

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
net/sunrpc/xprtrdma/verbs.c

index 9f66fd862fd9261bb6ccddbb7264f955b8a76136..11d07748f699aeb76f6e7d495ad248fb09dcca79 100644 (file)
@@ -103,9 +103,9 @@ rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
 {
        struct rpcrdma_ep *ep = context;
 
-       pr_err("RPC:       %s: %s on device %s ep %p\n",
-              __func__, ib_event_msg(event->event),
-               event->device->name, context);
+       pr_err("rpcrdma: %s on device %s ep %p\n",
+              ib_event_msg(event->event), event->device->name, context);
+
        if (ep->rep_connected == 1) {
                ep->rep_connected = -EIO;
                rpcrdma_conn_func(ep);