Sasha, The multicast Send Only bit is defined in spec as "SendOnlyNonMemeber", to denote that the port is not considered a member for purposes of group creation/deletion.
Renaming IB_MC_REC_STATE_SEND_ONLY_MEMBER to IB_MC_REC_STATE_SEND_ONLY_NON_MEMBER. Signed-off-by: Yevgeny Kliteynik <[EMAIL PROTECTED]> --- opensm/include/iba/ib_types.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/opensm/include/iba/ib_types.h b/opensm/include/iba/ib_types.h index 6412ea9..0f9d110 100644 --- a/opensm/include/iba/ib_types.h +++ b/opensm/include/iba/ib_types.h @@ -7085,7 +7085,7 @@ ib_member_set_join_state(IN OUT ib_member_rec_t * p_mc_rec, */ #define IB_MC_REC_STATE_FULL_MEMBER 0x01 #define IB_MC_REC_STATE_NON_MEMBER 0x02 -#define IB_MC_REC_STATE_SEND_ONLY_MEMBER 0x04 +#define IB_MC_REC_STATE_SEND_ONLY_NON_MEMBER 0x04 /* * Generic MAD notice types -- 1.5.1.4 _______________________________________________ general mailing list [email protected] http://lists.openfabrics.org/cgi-bin/mailman/listinfo/general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general
