From: isaac Date: Wed, 5 Dec 2007 07:15:48 +0000 (+0000) Subject: - fixed a couple of misspellings in debug messages. X-Git-Tag: v1_7_0_51~430 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=85ead6a9ef708f7338dcfed2b63eb3a2ba246d96;p=fs%2Flustre-release.git - fixed a couple of misspellings in debug messages. --- diff --git a/lnet/klnds/o2iblnd/o2iblnd_cb.c b/lnet/klnds/o2iblnd/o2iblnd_cb.c index c2e10e3..e4504ae 100644 --- a/lnet/klnds/o2iblnd/o2iblnd_cb.c +++ b/lnet/klnds/o2iblnd/o2iblnd_cb.c @@ -2254,8 +2254,8 @@ kiblnd_passive_connect (struct rdma_cm_id *cmid, void *priv, int priv_nob) if (reqmsg->ibm_u.connparams.ibcp_max_frags != IBLND_MAX_RDMA_FRAGS) { CERROR("Can't accept %s: incompatible max_frags %d (%d wanted)\n", libcfs_nid2str(nid), - reqmsg->ibm_u.connparams.ibcp_queue_depth, - IBLND_MSG_QUEUE_SIZE); + reqmsg->ibm_u.connparams.ibcp_max_frags, + IBLND_MAX_RDMA_FRAGS); goto failed; } @@ -2515,8 +2515,8 @@ kiblnd_check_connreply (kib_conn_t *conn, void *priv, int priv_nob) if (msg->ibm_u.connparams.ibcp_max_frags != IBLND_MAX_RDMA_FRAGS) { CERROR("%s has incompatible max_frags %d (%d wanted)\n", libcfs_nid2str(peer->ibp_nid), - msg->ibm_u.connparams.ibcp_queue_depth, - IBLND_MSG_QUEUE_SIZE); + msg->ibm_u.connparams.ibcp_max_frags, + IBLND_MAX_RDMA_FRAGS); rc = -EPROTO; goto failed; }