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_recv.c | |
parent | bb7897631d2379ec198635cc24bf1e8c629d0bda (diff) | |
download | linux-ff3f19a2f608ee406331e8c7b60d7376e75c2157.tar.bz2 |
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_recv.c')
-rw-r--r-- | net/rds/ib_recv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rds/ib_recv.c b/net/rds/ib_recv.c index 606a11f681d2..6803b75eb8bd 100644 --- a/net/rds/ib_recv.c +++ b/net/rds/ib_recv.c @@ -980,8 +980,8 @@ void rds_ib_recv_cqe_handler(struct rds_ib_connection *ic, } else { /* We expect errors as the qp is drained during shutdown */ if (rds_conn_up(conn) || rds_conn_connecting(conn)) - rds_ib_conn_error(conn, "recv completion on %pI4 had status %u (%s), disconnecting and reconnecting\n", - &conn->c_faddr, + rds_ib_conn_error(conn, "recv 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)); } |