Per published MgtWG errata: RefID 4626 - reverse path PKey support in PathRecord responses RefID 4635 - multicast FDB top support RefID 4644 - hierarchy support
Signed-off-by: Hal Rosenstock <[email protected]> --- diff --git a/opensm/include/opensm/osm_base.h b/opensm/include/opensm/osm_base.h index 0537002..06223ce 100644 --- a/opensm/include/opensm/osm_base.h +++ b/opensm/include/opensm/osm_base.h @@ -1,6 +1,6 @@ /* * Copyright (c) 2004-2008 Voltaire, Inc. All rights reserved. - * Copyright (c) 2002-2006 Mellanox Technologies LTD. All rights reserved. + * Copyright (c) 2002-2009 Mellanox Technologies LTD. All rights reserved. * Copyright (c) 1996-2003 Intel Corporation. All rights reserved. * Copyright (c) 2009 Sun Microsystems, Inc. All rights reserved. * @@ -776,6 +776,41 @@ typedef enum _osm_thread_state { #define OSM_CAP2_IS_QOS_SUPPORTED (1 << 1) /***********/ +/****d* OpenSM: Base/OSM_CAP2_IS_REVERSE_PATH_PKEY_SUPPPORTED +* Name +* OSM_CAP2_IS_REVERSE_PATH_PKEY_SUPPPORTED +* +* DESCRIPTION +* Reverse path PKeys indicate in PathRecord responses +* +* SYNOPSIS +*/ +#define OSM_CAP2_IS_REVERSE_PATH_PKEY_SUPPPORTED (1 << 2) +/***********/ + +/****d* OpenSM: Base/OSM_CAP2_IS_MCAST_TOP_SUPPORTED +* Name +* OSM_CAP2_IS_MCAST_TOP_SUPPORTED +* +* DESCRIPTION +* SwitchInfo.MulticastFDBTop is supported +* +* SYNOPSIS +*/ +#define OSM_CAP2_IS_MCAST_TOP_SUPPORTED (1 << 3) +/***********/ + +/****d* OpenSM: Base/OSM_CAP2_IS_HIERARCHY_SUPPORTED +* Name +* +* DESCRIPTION +* Hierarchy info suppported +* +* SYNOPSIS +*/ +#define OSM_CAP2_IS_HIERARCHY_SUPPORTED (1 << 4) +/***********/ + /****d* OpenSM: Base/osm_signal_t * NAME * osm_signal_t _______________________________________________ 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
