diff options
author | Santosh Shilimkar <santosh.shilimkar@oracle.com> | 2016-03-14 07:43:55 -0700 |
---|---|---|
committer | Santosh Shilimkar <santosh.shilimkar@oracle.com> | 2017-01-02 14:02:41 -0800 |
commit | ff3f19a2f608ee406331e8c7b60d7376e75c2157 (patch) | |
tree | 8b819c244dfa3d4d83295d362b8adf240dfaf395 /net/rds/ib_send.c | |
parent | bb7897631d2379ec198635cc24bf1e8c629d0bda (diff) | |
download | talos-op-linux-ff3f19a2f608ee406331e8c7b60d7376e75c2157.tar.gz talos-op-linux-ff3f19a2f608ee406331e8c7b60d7376e75c2157.zip |
RDS: IB: include faddr in connection log
Also use pr_* for it.
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>
Diffstat (limited to 'net/rds/ib_send.c')
-rw-r--r-- | net/rds/ib_send.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rds/ib_send.c b/net/rds/ib_send.c index 84d90c97332f..19eca5c4c00c 100644 --- a/net/rds/ib_send.c +++ b/net/rds/ib_send.c @@ -300,8 +300,8 @@ void rds_ib_send_cqe_handler(struct rds_ib_connection *ic, struct ib_wc *wc) /* We expect errors as the qp is drained during shutdown */ if (wc->status != IB_WC_SUCCESS && rds_conn_up(conn)) { - rds_ib_conn_error(conn, "send completion on %pI4 had status %u (%s), disconnecting and reconnecting\n", - &conn->c_faddr, wc->status, + rds_ib_conn_error(conn, "send completion on <%pI4,%pI4> had status %u (%s), disconnecting and reconnecting\n", + &conn->c_laddr, &conn->c_faddr, wc->status, ib_wc_status_msg(wc->status)); } } |