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