2004-11-22 03:37:56 +03:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2006-08-24 20:38:08 +04:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-11-22 03:37:56 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2005-07-01 01:28:35 +04:00
|
|
|
#ifndef MCA_BTL_IB_PROC_H
|
|
|
|
#define MCA_BTL_IB_PROC_H
|
2004-07-16 18:28:51 +04:00
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "orte/mca/ns/ns.h"
|
2005-07-03 20:06:07 +04:00
|
|
|
#include "opal/class/opal_object.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/proc/proc.h"
|
2005-07-01 01:28:35 +04:00
|
|
|
#include "btl_openib.h"
|
|
|
|
#include "btl_openib_endpoint.h"
|
2004-07-16 18:28:51 +04:00
|
|
|
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2004-07-16 18:28:51 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents the state of a remote process and the set of addresses
|
2005-07-01 01:28:35 +04:00
|
|
|
* that it exports. Also cache an instance of mca_btl_base_endpoint_t for
|
2004-07-16 18:28:51 +04:00
|
|
|
* each
|
2005-07-01 01:28:35 +04:00
|
|
|
* BTL instance that attempts to open a connection to the process.
|
2004-07-16 18:28:51 +04:00
|
|
|
*/
|
2005-07-01 01:28:35 +04:00
|
|
|
struct mca_btl_openib_proc_t {
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_item_t super;
|
2004-07-16 18:28:51 +04:00
|
|
|
/**< allow proc to be placed on a list */
|
|
|
|
|
|
|
|
ompi_proc_t *proc_ompi;
|
|
|
|
/**< pointer to corresponding ompi_proc_t */
|
|
|
|
|
2005-05-02 20:40:25 +04:00
|
|
|
orte_process_name_t proc_guid;
|
2004-07-16 18:28:51 +04:00
|
|
|
/**< globally unique identifier for the process */
|
2005-10-01 02:58:09 +04:00
|
|
|
|
|
|
|
struct mca_btl_openib_port_info_t* proc_ports;
|
|
|
|
size_t proc_port_count;
|
|
|
|
/**< number of ports published by endpoint */
|
2004-07-16 18:28:51 +04:00
|
|
|
|
2005-07-01 01:28:35 +04:00
|
|
|
struct mca_btl_base_endpoint_t **proc_endpoints;
|
|
|
|
/**< array of endpoints that have been created to access this proc */
|
2004-07-16 18:28:51 +04:00
|
|
|
|
2005-07-01 01:28:35 +04:00
|
|
|
size_t proc_endpoint_count;
|
|
|
|
/**< number of endpoints */
|
2004-07-16 18:28:51 +04:00
|
|
|
|
2005-07-04 02:45:48 +04:00
|
|
|
opal_mutex_t proc_lock;
|
2004-07-16 18:28:51 +04:00
|
|
|
/**< lock to protect against concurrent access to proc state */
|
|
|
|
};
|
2005-07-01 01:28:35 +04:00
|
|
|
typedef struct mca_btl_openib_proc_t mca_btl_openib_proc_t;
|
2004-07-16 18:28:51 +04:00
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_openib_proc_t);
|
|
|
|
|
2005-07-01 01:28:35 +04:00
|
|
|
mca_btl_openib_proc_t* mca_btl_openib_proc_create(ompi_proc_t* ompi_proc);
|
|
|
|
int mca_btl_openib_proc_insert(mca_btl_openib_proc_t*, mca_btl_base_endpoint_t*);
|
2004-07-16 18:28:51 +04:00
|
|
|
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2004-07-16 18:28:51 +04:00
|
|
|
#endif
|