Generated from osm_sa_mad_ctrl.h with ROBODoc vunknown on Wed Aug 07 15:31:49 2002
TABLE OF CONTENTS
- OpenSM/SA MAD Controller
- OpenSM: SA MAD Controller/osm_sa_mad_ctrl_t
- OpenSM: SA MAD Controller/osm_sa_mad_ctrl_construct
- OpenSM: SA MAD Controller/osm_sa_mad_ctrl_destroy
- OpenSM: SA MAD Controller/osm_sa_mad_ctrl_init
- OpenSM: SA/osm_sa_mad_ctrl_bind
- OpenSM: SA/osm_sa_mad_ctrl_get_bind_handle
NAME
SA MAD Controller
DESCRIPTION
The SA MAD Controller object encapsulates
the information needed to receive MADs from the transport layer.
The SA MAD Controller object is thread safe.
This object should be treated as opaque and should be
manipulated only through the provided functions.
AUTHOR
Ranjit Pandit, Intel
NAME
osm_sa_mad_ctrl_t
DESCRIPTION
SA MAD Controller structure.
This object should be treated as opaque and should
be manipulated only through the provided functions.
SYNOPSIS
typedef struct _osm_sa_mad_ctrl
{
osm_log_t *p_log;
osm_mad_pool_t *p_mad_pool;
osm_vendor_t *p_vendor;
osm_bind_handle_t h_bind;
cl_dispatcher_t *p_disp;
cl_disp_reg_handle_t h_disp;
osm_stats_t *p_stats;
} osm_sa_mad_ctrl_t;
FIELDS
p_log
Pointer to the log object.
p_mad_pool
Pointer to the MAD pool.
p_vendor
Pointer to the vendor specific interfaces object.
h_bind
Bind handle returned by the transport layer.
p_disp
Pointer to the Dispatcher.
h_disp
Handle returned from dispatcher registration.
p_stats
Pointer to the OpenSM statistics block.
SEE ALSO
SA MAD Controller object
SA MADr object
NAME
osm_sa_mad_ctrl_construct
DESCRIPTION
This function constructs a SA MAD Controller object.
SYNOPSIS
void osm_sa_mad_ctrl_construct(
IN osm_sa_mad_ctrl_t* const p_ctrl );
PARAMETERS
p_ctrl
[in] Pointer to a SA MAD Controller
object to construct.
RETURN VALUE
This function does not return a value.
NOTES
Allows calling osm_sa_mad_ctrl_init, osm_sa_mad_ctrl_destroy,
and osm_sa_mad_ctrl_is_inited.
Calling osm_sa_mad_ctrl_construct is a prerequisite to calling any other
method except osm_sa_mad_ctrl_init.
SEE ALSO
SA MAD Controller object, osm_sa_mad_ctrl_init,
osm_sa_mad_ctrl_destroy, osm_sa_mad_ctrl_is_inited
NAME
osm_sa_mad_ctrl_destroy
DESCRIPTION
The osm_sa_mad_ctrl_destroy function destroys the object, releasing
all resources.
SYNOPSIS
void osm_sa_mad_ctrl_destroy(
IN osm_sa_mad_ctrl_t* const p_ctrl );
PARAMETERS
p_ctrl
[in] Pointer to the object to destroy.
RETURN VALUE
This function does not return a value.
NOTES
Performs any necessary cleanup of the specified
SA MAD Controller object.
Further operations should not be attempted on the destroyed object.
This function should only be called after a call to
osm_sa_mad_ctrl_construct or osm_sa_mad_ctrl_init.
SEE ALSO
SA MAD Controller object, osm_sa_mad_ctrl_construct,
osm_sa_mad_ctrl_init
NAME
osm_sa_mad_ctrl_init
DESCRIPTION
The osm_sa_mad_ctrl_init function initializes a
SA MAD Controller object for use.
SYNOPSIS
ib_api_status_t osm_sa_mad_ctrl_init(
IN osm_sa_mad_ctrl_t* const p_ctrl,
IN osm_mad_pool_t* const p_mad_pool,
IN osm_vendor_t* const p_vendor,
IN osm_log_t* const p_log,
IN osm_stats_t* const p_stats,
IN cl_dispatcher_t* const p_disp );
PARAMETERS
p_ctrl
[in] Pointer to an osm_sa_mad_ctrl_t object to initialize.
p_mad_pool
[in] Pointer to the MAD pool.
p_vendor
[in] Pointer to the vendor specific interfaces object.
p_log
[in] Pointer to the log object.
p_stats
[in] Pointer to the OpenSM stastics block.
p_disp
[in] Pointer to the OpenSM central Dispatcher.
RETURN VALUES
IB_SUCCESS if the SA MAD Controller object was initialized
successfully.
NOTES
Allows calling other SA MAD Controller methods.
SEE ALSO
SA MAD Controller object, osm_sa_mad_ctrl_construct,
osm_sa_mad_ctrl_destroy, osm_sa_mad_ctrl_is_inited
NAME
osm_sa_mad_ctrl_bind
DESCRIPTION
Binds the SA MAD Controller object to a port guid.
SYNOPSIS
ib_api_status_t
osm_sa_mad_ctrl_bind(
IN osm_sa_mad_ctrl_t* const p_ctrl,
IN const ib_net64_t port_guid );
PARAMETERS
p_ctrl
[in] Pointer to an osm_sa_mad_ctrl_t object to initialize.
port_guid
[in] Local port GUID with which to bind.
RETURN VALUES
None
NOTES
A given SA MAD Controller object can only be bound to one
port at a time.
SEE ALSO
NAME
osm_sa_mad_ctrl_get_bind_handle
DESCRIPTION
Returns the bind handle.
SYNOPSIS
osm_bind_handle_t
osm_sa_mad_ctrl_get_bind_handle(
IN const osm_sa_mad_ctrl_t* const p_ctrl );
PARAMETERS
p_ctrl
[in] Pointer to an osm_sa_mad_ctrl_t object.
RETURN VALUES
Returns the bind handle, which may be OSM_BIND_INVALID_HANDLE
if no port has been bound.
NOTES
A given SA MAD Controller object can only be bound to one
port at a time.
SEE ALSO