diff options
author | Santosh Shilimkar <santosh.shilimkar@oracle.com> | 2015-11-04 13:42:39 -0800 |
---|---|---|
committer | Santosh Shilimkar <santosh.shilimkar@oracle.com> | 2017-01-02 14:02:39 -0800 |
commit | f69b22e65ecfcb3648304e0e32a1df6f0d421375 (patch) | |
tree | c82d581c8ce2e10874dae139ffffb012417140fe /net | |
parent | 525dfa2cdce4f5ab76251b5e57ebabf4f2dfc40c (diff) | |
download | linux-f69b22e65ecfcb3648304e0e32a1df6f0d421375.tar.gz linux-f69b22e65ecfcb3648304e0e32a1df6f0d421375.tar.bz2 linux-f69b22e65ecfcb3648304e0e32a1df6f0d421375.zip |
RDS: log the address on bind failure
It's useful to know the IP address when RDS fails to bind a
connection. Thus, adding it to the error message.
Orabug: 21894138
Reviewed-by: Wei Lin Guay <wei.lin.guay@oracle.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/rds/bind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rds/bind.c b/net/rds/bind.c index 095f6ce583fe..3a915bedb76c 100644 --- a/net/rds/bind.c +++ b/net/rds/bind.c @@ -176,8 +176,8 @@ int rds_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) if (!trans) { ret = -EADDRNOTAVAIL; rds_remove_bound(rs); - printk_ratelimited(KERN_INFO "RDS: rds_bind() could not find a transport, " - "load rds_tcp or rds_rdma?\n"); + pr_info_ratelimited("RDS: %s could not find a transport for %pI4, load rds_tcp or rds_rdma?\n", + __func__, &sin->sin_addr.s_addr); goto out; } |