|
@@ -2609,13 +2609,17 @@ kiblnd_rejected (kib_conn_t *conn, int reason, void *priv, int priv_nob)
|
|
|
|
|
|
case IBLND_REJECT_MSG_QUEUE_SIZE:
|
|
|
CERROR("%s rejected: incompatible message queue depth %d, %d\n",
|
|
|
- libcfs_nid2str(peer->ibp_nid), cp->ibcp_queue_depth,
|
|
|
+ libcfs_nid2str(peer->ibp_nid),
|
|
|
+ cp != NULL ? cp->ibcp_queue_depth :
|
|
|
+ IBLND_MSG_QUEUE_SIZE(rej->ibr_version),
|
|
|
IBLND_MSG_QUEUE_SIZE(conn->ibc_version));
|
|
|
break;
|
|
|
|
|
|
case IBLND_REJECT_RDMA_FRAGS:
|
|
|
CERROR("%s rejected: incompatible # of RDMA fragments %d, %d\n",
|
|
|
- libcfs_nid2str(peer->ibp_nid), cp->ibcp_max_frags,
|
|
|
+ libcfs_nid2str(peer->ibp_nid),
|
|
|
+ cp != NULL ? cp->ibcp_max_frags :
|
|
|
+ IBLND_RDMA_FRAGS(rej->ibr_version),
|
|
|
IBLND_RDMA_FRAGS(conn->ibc_version));
|
|
|
break;
|
|
|
|