Hefty, Sean wrote:
 enum ibv_qp_type {
        IBV_QPT_RC = 2,
        IBV_QPT_UC,
-       IBV_QPT_UD
+       IBV_QPT_UD,
+       IBV_QPT_XRC_SEND,
+       IBV_QPT_XRC_RECV
 };

Sean,

The upstream kernel (below) uses already the values 5 and 6 for
the IB RAW qp types

enum ib_qp_type {
        IB_QPT_SMI,
        IB_QPT_GSI,
        IB_QPT_RC,
        IB_QPT_UC,
        IB_QPT_UD,
        IB_QPT_RAW_IPV6,
        IB_QPT_RAW_ETHERTYPE
};


ofed (below) uses 5 for XRC, 6/7 for IB raw qp types
and 8 for the new "eth packet qp", XRC and the packet QP
are used from user space with code which is out...
so if possible can we at least keep the packet qp type value
unchanged, as for XRC its different API...

enum ib_qp_type {
        IB_QPT_SMI,
        IB_QPT_GSI,
        IB_QPT_RC,
        IB_QPT_UC,
        IB_QPT_UD,
        IB_QPT_XRC,
        IB_QPT_RAW_IPV6,
        IB_QPT_RAW_ETHERTYPE,
        IB_QPT_RAW_PACKET
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to