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>
This commit is contained in:
parent
525dfa2cdc
commit
f69b22e65e
@ -176,8 +176,8 @@ int rds_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
|
|||||||
if (!trans) {
|
if (!trans) {
|
||||||
ret = -EADDRNOTAVAIL;
|
ret = -EADDRNOTAVAIL;
|
||||||
rds_remove_bound(rs);
|
rds_remove_bound(rs);
|
||||||
printk_ratelimited(KERN_INFO "RDS: rds_bind() could not find a transport, "
|
pr_info_ratelimited("RDS: %s could not find a transport for %pI4, load rds_tcp or rds_rdma?\n",
|
||||||
"load rds_tcp or rds_rdma?\n");
|
__func__, &sin->sin_addr.s_addr);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user