From: Arlin Davis <arlin.r.da...@intel.com>

Signed-off-by: Arlin Davis <arlin.r.da...@intel.com>
---
 dapl/openib_common/dapl_ib_common.h |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dapl/openib_common/dapl_ib_common.h 
b/dapl/openib_common/dapl_ib_common.h
index 3b565b4..42391b2 100644
--- a/dapl/openib_common/dapl_ib_common.h
+++ b/dapl/openib_common/dapl_ib_common.h
@@ -340,6 +340,7 @@ typedef enum dapl_cm_state
        DCM_RTU_PENDING,
        DCM_DISC_RECV,
        DCM_FREE,
+       DCM_TIMEWAIT
 
 } DAPL_CM_STATE;
 
@@ -433,9 +434,10 @@ STATIC _INLINE_ char * dapl_cm_state_str(IN int st)
                "CM_DESTROY",
                "CM_RTU_PENDING",
                "CM_DISC_RECV",
-               "CM_FREE"
+               "CM_FREE",
+               "CM_TIMEWAIT"
         };
-        return ((st < 0 || st > 16) ? "Invalid CM state?" : state[st]);
+        return ((st < 0 || st > 17) ? "Invalid CM state?" : state[st]);
 }
 
 STATIC _INLINE_ char * dapl_cm_op_str(IN int op)
-- 
1.7.3

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to