d4afb16f5a
This commit rewrites both the mpool and rcache frameworks. Summary of changes: - Before this change a significant portion of the rcache functionality lived in mpool components. This meant that it was impossible to add a new memory pool to use with rdma networks (ugni, openib, etc) without duplicating the functionality of an existing mpool component. All the registration functionality has been removed from the mpool and placed in the rcache framework. - All registration cache mpools components (udreg, grdma, gpusm, rgpusm) have been changed to rcache components. rcaches are allocated and released in the same way mpool components were. - It is now valid to pass NULL as the resources argument when creating an rcache. At this time the gpusm and rgpusm components support this. All other rcache components require non-NULL resources. - A new mpool component has been added: hugepage. This component supports huge page allocations on linux. - Memory pools are now allocated using "hints". Each mpool component is queried with the hints and returns a priority. The current hints supported are NULL (uses posix_memalign/malloc), page_size=x (huge page mpool), and mpool=x. - The sm mpool has been moved to common/sm. This reflects that the sm mpool is specialized and not meant for any general allocations. This mpool may be moved back into the mpool framework if there is any objection. - The opal_free_list_init arguments have been updated. The unused0 argument is not used to pass in the registration cache module. The mpool registration flags are now rcache registration flags. - All components have been updated to make use of the new framework interfaces. As this commit makes significant changes to both the mpool and rcache frameworks both versions have been bumped to 3.0.0. Signed-off-by: Nathan Hjelm <hjelmn@lanl.gov>
594 строки
21 KiB
C
594 строки
21 KiB
C
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
|
/*
|
|
* Copyright (c) 2004-2011 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2009 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* Copyright (c) 2004-2007 High Performance Computing Center Stuttgart,
|
|
* University of Stuttgart. All rights reserved.
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
* All rights reserved.
|
|
* Copyright (c) 2006-2007 Voltaire. All rights reserved.
|
|
* Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
|
|
* Copyright (c) 2010-2015 Los Alamos National Security, LLC. All rights
|
|
* reserved.
|
|
* Copyright (c) 2014-2015 Intel, Inc. All rights reserved.
|
|
* Copyright (c) 2014-2015 Research Organization for Information Science
|
|
* and Technology (RIST). All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "opal_config.h"
|
|
|
|
#include "btl_vader.h"
|
|
#include "btl_vader_endpoint.h"
|
|
#include "btl_vader_fifo.h"
|
|
#include "btl_vader_fbox.h"
|
|
#include "btl_vader_xpmem.h"
|
|
|
|
#include <string.h>
|
|
|
|
static int vader_del_procs (struct mca_btl_base_module_t *btl,
|
|
size_t nprocs, struct opal_proc_t **procs,
|
|
struct mca_btl_base_endpoint_t **peers);
|
|
|
|
static int vader_register_error_cb (struct mca_btl_base_module_t* btl,
|
|
mca_btl_base_module_error_cb_fn_t cbfunc);
|
|
|
|
static int vader_finalize (struct mca_btl_base_module_t* btl);
|
|
|
|
static struct mca_btl_base_descriptor_t *vader_prepare_src (
|
|
struct mca_btl_base_module_t *btl,
|
|
struct mca_btl_base_endpoint_t *endpoint,
|
|
struct opal_convertor_t *convertor,
|
|
uint8_t order,
|
|
size_t reserve,
|
|
size_t *size,
|
|
uint32_t flags
|
|
);
|
|
|
|
static int vader_add_procs(struct mca_btl_base_module_t* btl,
|
|
size_t nprocs, struct opal_proc_t **procs,
|
|
struct mca_btl_base_endpoint_t** peers,
|
|
struct opal_bitmap_t* reachability);
|
|
|
|
static int vader_ft_event (int state);
|
|
|
|
mca_btl_vader_t mca_btl_vader = {
|
|
{
|
|
&mca_btl_vader_component.super,
|
|
.btl_add_procs = vader_add_procs,
|
|
.btl_del_procs = vader_del_procs,
|
|
.btl_finalize = vader_finalize,
|
|
.btl_alloc = mca_btl_vader_alloc,
|
|
.btl_free = mca_btl_vader_free,
|
|
.btl_prepare_src = vader_prepare_src,
|
|
.btl_send = mca_btl_vader_send,
|
|
.btl_sendi = mca_btl_vader_sendi,
|
|
.btl_dump = mca_btl_base_dump,
|
|
.btl_register_error = vader_register_error_cb,
|
|
.btl_ft_event = vader_ft_event
|
|
}
|
|
};
|
|
|
|
static int vader_btl_first_time_init(mca_btl_vader_t *vader_btl, int n)
|
|
{
|
|
mca_btl_vader_component_t *component = &mca_btl_vader_component;
|
|
int rc;
|
|
|
|
/* generate the endpoints */
|
|
component->endpoints = (struct mca_btl_base_endpoint_t *) calloc (n + 1, sizeof (struct mca_btl_base_endpoint_t));
|
|
if (NULL == component->endpoints) {
|
|
return OPAL_ERR_OUT_OF_RESOURCE;
|
|
}
|
|
component->endpoints[n].peer_smp_rank = -1;
|
|
|
|
component->fbox_in_endpoints = calloc (n + 1, sizeof (void *));
|
|
if (NULL == component->fbox_in_endpoints) {
|
|
free(component->endpoints);
|
|
return OPAL_ERR_OUT_OF_RESOURCE;
|
|
}
|
|
|
|
component->segment_offset = MCA_BTL_VADER_FIFO_SIZE;
|
|
|
|
/* initialize fragment descriptor free lists */
|
|
/* initialize free list for small send and inline fragments */
|
|
rc = opal_free_list_init (&component->vader_frags_user,
|
|
sizeof(mca_btl_vader_frag_t),
|
|
opal_cache_line_size, OBJ_CLASS(mca_btl_vader_frag_t),
|
|
0, opal_cache_line_size,
|
|
component->vader_free_list_num,
|
|
component->vader_free_list_max,
|
|
component->vader_free_list_inc,
|
|
NULL, 0, NULL, mca_btl_vader_frag_init,
|
|
(void *)(intptr_t) mca_btl_vader_component.max_inline_send);
|
|
if (OPAL_SUCCESS != rc) {
|
|
return rc;
|
|
}
|
|
|
|
/* initialize free list for buffered send fragments */
|
|
rc = opal_free_list_init (&component->vader_frags_eager,
|
|
sizeof (mca_btl_vader_frag_t),
|
|
opal_cache_line_size, OBJ_CLASS(mca_btl_vader_frag_t),
|
|
0, opal_cache_line_size,
|
|
component->vader_free_list_num,
|
|
component->vader_free_list_max,
|
|
component->vader_free_list_inc,
|
|
NULL, 0, NULL, mca_btl_vader_frag_init,
|
|
(void *)(intptr_t) mca_btl_vader.super.btl_eager_limit);
|
|
if (OPAL_SUCCESS != rc) {
|
|
return rc;
|
|
}
|
|
|
|
if (MCA_BTL_VADER_XPMEM != mca_btl_vader_component.single_copy_mechanism) {
|
|
/* initialize free list for buffered send fragments */
|
|
rc = opal_free_list_init (&component->vader_frags_max_send,
|
|
sizeof (mca_btl_vader_frag_t),
|
|
opal_cache_line_size, OBJ_CLASS(mca_btl_vader_frag_t),
|
|
0, opal_cache_line_size,
|
|
component->vader_free_list_num,
|
|
component->vader_free_list_max,
|
|
component->vader_free_list_inc,
|
|
NULL, 0, NULL, mca_btl_vader_frag_init,
|
|
(void *)(intptr_t) mca_btl_vader.super.btl_max_send_size);
|
|
if (OPAL_SUCCESS != rc) {
|
|
return rc;
|
|
}
|
|
}
|
|
|
|
/* set flag indicating btl has been inited */
|
|
vader_btl->btl_inited = true;
|
|
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
|
|
static int init_vader_endpoint (struct mca_btl_base_endpoint_t *ep, struct opal_proc_t *proc, int remote_rank) {
|
|
mca_btl_vader_component_t *component = &mca_btl_vader_component;
|
|
union vader_modex_t *modex;
|
|
size_t msg_size;
|
|
int rc;
|
|
|
|
OBJ_CONSTRUCT(ep, mca_btl_vader_endpoint_t);
|
|
|
|
ep->peer_smp_rank = remote_rank;
|
|
|
|
if (remote_rank != MCA_BTL_VADER_LOCAL_RANK) {
|
|
OPAL_MODEX_RECV(rc, &component->super.btl_version,
|
|
&proc->proc_name, (void **) &modex, &msg_size);
|
|
if (OPAL_SUCCESS != rc) {
|
|
return rc;
|
|
}
|
|
|
|
/* attatch to the remote segment */
|
|
#if OPAL_BTL_VADER_HAVE_XPMEM
|
|
if (MCA_BTL_VADER_XPMEM == mca_btl_vader_component.single_copy_mechanism) {
|
|
/* always use xpmem if it is available */
|
|
ep->segment_data.xpmem.apid = xpmem_get (modex->xpmem.seg_id, XPMEM_RDWR, XPMEM_PERMIT_MODE, (void *) 0666);
|
|
ep->segment_data.xpmem.vma_module = mca_rcache_base_vma_module_alloc ();
|
|
(void) vader_get_registation (ep, modex->xpmem.segment_base, mca_btl_vader_component.segment_size,
|
|
MCA_RCACHE_FLAGS_PERSIST, (void **) &ep->segment_base);
|
|
} else {
|
|
#endif
|
|
/* store a copy of the segment information for detach */
|
|
ep->segment_data.other.seg_ds = malloc (msg_size);
|
|
if (NULL == ep->segment_data.other.seg_ds) {
|
|
return OPAL_ERR_OUT_OF_RESOURCE;
|
|
}
|
|
|
|
memcpy (ep->segment_data.other.seg_ds, &modex->seg_ds, msg_size);
|
|
|
|
ep->segment_base = opal_shmem_segment_attach (ep->segment_data.other.seg_ds);
|
|
if (NULL == ep->segment_base) {
|
|
return OPAL_ERROR;
|
|
}
|
|
#if OPAL_BTL_VADER_HAVE_XPMEM
|
|
}
|
|
#endif
|
|
OBJ_CONSTRUCT(&ep->lock, opal_mutex_t);
|
|
|
|
free (modex);
|
|
} else {
|
|
/* set up the segment base so we can calculate a virtual to real for local pointers */
|
|
ep->segment_base = component->my_segment;
|
|
}
|
|
|
|
ep->fifo = (struct vader_fifo_t *) ep->segment_base;
|
|
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
static int fini_vader_endpoint (struct mca_btl_base_endpoint_t *ep)
|
|
{
|
|
/* check if the endpoint is initialized. avoids a double-destruct */
|
|
if (ep->fifo) {
|
|
OBJ_DESTRUCT(ep);
|
|
}
|
|
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
/**
|
|
* PML->BTL notification of change in the process list.
|
|
* PML->BTL Notification that a receive fragment has been matched.
|
|
* Called for message that is send from process with the virtual
|
|
* address of the shared memory segment being different than that of
|
|
* the receiver.
|
|
*
|
|
* @param btl (IN)
|
|
* @param proc (IN)
|
|
* @param peer (OUT)
|
|
* @return OPAL_SUCCESS or error status on failure.
|
|
*
|
|
*/
|
|
|
|
static int vader_add_procs (struct mca_btl_base_module_t* btl,
|
|
size_t nprocs, struct opal_proc_t **procs,
|
|
struct mca_btl_base_endpoint_t **peers,
|
|
opal_bitmap_t *reachability)
|
|
{
|
|
mca_btl_vader_component_t *component = &mca_btl_vader_component;
|
|
mca_btl_vader_t *vader_btl = (mca_btl_vader_t *) btl;
|
|
const opal_proc_t *my_proc;
|
|
int rc = OPAL_SUCCESS;
|
|
|
|
/* initializion */
|
|
|
|
/* get pointer to my proc structure */
|
|
if (NULL == (my_proc = opal_proc_local_get())) {
|
|
return OPAL_ERR_OUT_OF_RESOURCE;
|
|
}
|
|
|
|
/* jump out if there's not someone we can talk to */
|
|
if (1 > MCA_BTL_VADER_NUM_LOCAL_PEERS) {
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
/* make sure that my local rank has been defined */
|
|
if (0 > MCA_BTL_VADER_LOCAL_RANK) {
|
|
return OPAL_ERROR;
|
|
}
|
|
|
|
if (!vader_btl->btl_inited) {
|
|
rc = vader_btl_first_time_init (vader_btl, 1 + MCA_BTL_VADER_NUM_LOCAL_PEERS);
|
|
if (rc != OPAL_SUCCESS) {
|
|
return rc;
|
|
}
|
|
}
|
|
|
|
for (int32_t proc = 0, local_rank = 0 ; proc < (int32_t) nprocs ; ++proc) {
|
|
/* check to see if this proc can be reached via shmem (i.e.,
|
|
if they're on my local host and in my job) */
|
|
if (procs[proc]->proc_name.jobid != my_proc->proc_name.jobid ||
|
|
!OPAL_PROC_ON_LOCAL_NODE(procs[proc]->proc_flags)) {
|
|
peers[proc] = NULL;
|
|
continue;
|
|
}
|
|
|
|
if (my_proc != procs[proc]) {
|
|
/* add this proc to shared memory accessibility list */
|
|
rc = opal_bitmap_set_bit (reachability, proc);
|
|
if(OPAL_SUCCESS != rc) {
|
|
return rc;
|
|
}
|
|
}
|
|
|
|
/* setup endpoint */
|
|
peers[proc] = component->endpoints + local_rank;
|
|
rc = init_vader_endpoint (peers[proc], procs[proc], local_rank++);
|
|
if (OPAL_SUCCESS != rc) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
|
|
/**
|
|
* PML->BTL notification of change in the process list.
|
|
*
|
|
* @param btl (IN) BTL instance
|
|
* @param proc (IN) Peer process
|
|
* @param peer (IN) Peer addressing information.
|
|
* @return Status indicating if cleanup was successful
|
|
*
|
|
*/
|
|
|
|
static int vader_del_procs(struct mca_btl_base_module_t *btl,
|
|
size_t nprocs, struct opal_proc_t **procs,
|
|
struct mca_btl_base_endpoint_t **peers)
|
|
{
|
|
for (size_t i = 0 ; i < nprocs ; ++i) {
|
|
if (peers[i]) {
|
|
fini_vader_endpoint (peers[i]);
|
|
peers[i] = NULL;
|
|
}
|
|
}
|
|
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
|
|
/**
|
|
* MCA->BTL Clean up any resources held by BTL module
|
|
* before the module is unloaded.
|
|
*
|
|
* @param btl (IN) BTL module.
|
|
*
|
|
* Prior to unloading a BTL module, the MCA framework will call
|
|
* the BTL finalize method of the module. Any resources held by
|
|
* the BTL should be released and if required the memory corresponding
|
|
* to the BTL module freed.
|
|
*
|
|
*/
|
|
|
|
static int vader_finalize(struct mca_btl_base_module_t *btl)
|
|
{
|
|
mca_btl_vader_component_t *component = &mca_btl_vader_component;
|
|
mca_btl_vader_t *vader_btl = (mca_btl_vader_t *) btl;
|
|
|
|
if (!vader_btl->btl_inited) {
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
for (int i = 0 ; i < 1 + MCA_BTL_VADER_NUM_LOCAL_PEERS ; ++i) {
|
|
fini_vader_endpoint (component->endpoints + i);
|
|
}
|
|
|
|
free (component->endpoints);
|
|
component->endpoints = NULL;
|
|
|
|
vader_btl->btl_inited = false;
|
|
|
|
free (component->fbox_in_endpoints);
|
|
component->fbox_in_endpoints = NULL;
|
|
|
|
if (MCA_BTL_VADER_XPMEM != mca_btl_vader_component.single_copy_mechanism) {
|
|
opal_shmem_unlink (&mca_btl_vader_component.seg_ds);
|
|
opal_shmem_segment_detach (&mca_btl_vader_component.seg_ds);
|
|
}
|
|
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
|
|
/**
|
|
* Register a callback function that is called on error..
|
|
*
|
|
* @param btl (IN) BTL module
|
|
* @param cbfunc (IN) function to call on error
|
|
* @return Status indicating if cleanup was successful
|
|
*/
|
|
static int vader_register_error_cb(struct mca_btl_base_module_t* btl,
|
|
mca_btl_base_module_error_cb_fn_t cbfunc)
|
|
{
|
|
((mca_btl_vader_t *)btl)->error_cb = cbfunc;
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
/**
|
|
* Allocate a segment.
|
|
*
|
|
* @param btl (IN) BTL module
|
|
* @param size (IN) Request segment size.
|
|
*/
|
|
mca_btl_base_descriptor_t *mca_btl_vader_alloc(struct mca_btl_base_module_t *btl,
|
|
struct mca_btl_base_endpoint_t *endpoint,
|
|
uint8_t order, size_t size, uint32_t flags)
|
|
{
|
|
mca_btl_vader_frag_t *frag = NULL;
|
|
|
|
if (size <= (size_t) mca_btl_vader_component.max_inline_send) {
|
|
(void) MCA_BTL_VADER_FRAG_ALLOC_USER(frag, endpoint);
|
|
} else if (size <= mca_btl_vader.super.btl_eager_limit) {
|
|
(void) MCA_BTL_VADER_FRAG_ALLOC_EAGER(frag, endpoint);
|
|
} else if (MCA_BTL_VADER_XPMEM != mca_btl_vader_component.single_copy_mechanism &&
|
|
size <= mca_btl_vader.super.btl_max_send_size) {
|
|
(void) MCA_BTL_VADER_FRAG_ALLOC_MAX(frag, endpoint);
|
|
}
|
|
|
|
if (OPAL_LIKELY(frag != NULL)) {
|
|
frag->segments[0].seg_len = size;
|
|
|
|
frag->base.des_flags = flags;
|
|
frag->base.order = order;
|
|
}
|
|
|
|
return (mca_btl_base_descriptor_t *) frag;
|
|
}
|
|
|
|
/**
|
|
* Return a segment allocated by this BTL.
|
|
*
|
|
* @param btl (IN) BTL module
|
|
* @param segment (IN) Allocated segment.
|
|
*/
|
|
int mca_btl_vader_free (struct mca_btl_base_module_t *btl, mca_btl_base_descriptor_t *des)
|
|
{
|
|
MCA_BTL_VADER_FRAG_RETURN((mca_btl_vader_frag_t *) des);
|
|
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
/**
|
|
* Pack data
|
|
*
|
|
* @param btl (IN) BTL module
|
|
*/
|
|
static struct mca_btl_base_descriptor_t *vader_prepare_src (struct mca_btl_base_module_t *btl,
|
|
struct mca_btl_base_endpoint_t *endpoint,
|
|
struct opal_convertor_t *convertor,
|
|
uint8_t order, size_t reserve, size_t *size,
|
|
uint32_t flags)
|
|
{
|
|
const size_t total_size = reserve + *size;
|
|
mca_btl_vader_frag_t *frag;
|
|
unsigned char *fbox;
|
|
void *data_ptr;
|
|
int rc;
|
|
|
|
opal_convertor_get_current_pointer (convertor, &data_ptr);
|
|
assert (NULL != data_ptr);
|
|
|
|
/* in place send fragment */
|
|
if (OPAL_UNLIKELY(opal_convertor_need_buffers(convertor))) {
|
|
uint32_t iov_count = 1;
|
|
struct iovec iov;
|
|
|
|
/* non-contiguous data requires the convertor */
|
|
if (MCA_BTL_VADER_XPMEM != mca_btl_vader_component.single_copy_mechanism &&
|
|
total_size > mca_btl_vader.super.btl_eager_limit) {
|
|
(void) MCA_BTL_VADER_FRAG_ALLOC_MAX(frag, endpoint);
|
|
} else
|
|
(void) MCA_BTL_VADER_FRAG_ALLOC_EAGER(frag, endpoint);
|
|
|
|
if (OPAL_UNLIKELY(NULL == frag)) {
|
|
return NULL;
|
|
}
|
|
|
|
iov.iov_len = *size;
|
|
iov.iov_base =
|
|
(IOVBASE_TYPE *)(((uintptr_t)(frag->segments[0].seg_addr.pval)) +
|
|
reserve);
|
|
|
|
rc = opal_convertor_pack (convertor, &iov, &iov_count, size);
|
|
if (OPAL_UNLIKELY(rc < 0)) {
|
|
MCA_BTL_VADER_FRAG_RETURN(frag);
|
|
return NULL;
|
|
}
|
|
|
|
frag->segments[0].seg_len = *size + reserve;
|
|
} else {
|
|
if (MCA_BTL_VADER_XPMEM != mca_btl_vader_component.single_copy_mechanism) {
|
|
if (OPAL_LIKELY(total_size <= mca_btl_vader.super.btl_eager_limit)) {
|
|
(void) MCA_BTL_VADER_FRAG_ALLOC_EAGER(frag, endpoint);
|
|
} else {
|
|
(void) MCA_BTL_VADER_FRAG_ALLOC_MAX(frag, endpoint);
|
|
}
|
|
} else
|
|
(void) MCA_BTL_VADER_FRAG_ALLOC_USER(frag, endpoint);
|
|
|
|
if (OPAL_UNLIKELY(NULL == frag)) {
|
|
return NULL;
|
|
}
|
|
|
|
#if OPAL_BTL_VADER_HAVE_XPMEM
|
|
/* use xpmem to send this segment if it is above the max inline send size */
|
|
if (OPAL_UNLIKELY(MCA_BTL_VADER_XPMEM == mca_btl_vader_component.single_copy_mechanism &&
|
|
total_size > (size_t) mca_btl_vader_component.max_inline_send)) {
|
|
/* single copy send */
|
|
frag->hdr->flags = MCA_BTL_VADER_FLAG_SINGLE_COPY;
|
|
|
|
/* set up single copy io vector */
|
|
frag->hdr->sc_iov.iov_base = data_ptr;
|
|
frag->hdr->sc_iov.iov_len = *size;
|
|
|
|
frag->segments[0].seg_len = reserve;
|
|
frag->segments[1].seg_len = *size;
|
|
frag->segments[1].seg_addr.pval = data_ptr;
|
|
frag->base.des_segment_count = 2;
|
|
} else {
|
|
#endif
|
|
|
|
/* inline send */
|
|
if (OPAL_LIKELY(MCA_BTL_DES_FLAGS_BTL_OWNERSHIP & flags)) {
|
|
/* try to reserve a fast box for this transfer only if the
|
|
* fragment does not belong to the caller */
|
|
fbox = mca_btl_vader_reserve_fbox (endpoint, total_size);
|
|
if (OPAL_LIKELY(fbox)) {
|
|
frag->segments[0].seg_addr.pval = fbox;
|
|
}
|
|
|
|
frag->fbox = fbox;
|
|
}
|
|
|
|
/* NTH: the covertor adds some latency so we bypass it here */
|
|
memcpy ((void *)((uintptr_t)frag->segments[0].seg_addr.pval + reserve), data_ptr, *size);
|
|
frag->segments[0].seg_len = total_size;
|
|
#if OPAL_BTL_VADER_HAVE_XPMEM
|
|
}
|
|
#endif
|
|
}
|
|
|
|
frag->base.order = order;
|
|
frag->base.des_flags = flags;
|
|
|
|
return &frag->base;
|
|
}
|
|
|
|
/**
|
|
* Fault Tolerance Event Notification Function
|
|
* @param state Checkpoint Stae
|
|
* @return OPAL_SUCCESS or failure status
|
|
*/
|
|
static int vader_ft_event (int state)
|
|
{
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
static void mca_btl_vader_endpoint_constructor (mca_btl_vader_endpoint_t *ep)
|
|
{
|
|
OBJ_CONSTRUCT(&ep->pending_frags, opal_list_t);
|
|
OBJ_CONSTRUCT(&ep->pending_frags_lock, opal_mutex_t);
|
|
ep->fifo = NULL;
|
|
}
|
|
|
|
static void mca_btl_vader_endpoint_destructor (mca_btl_vader_endpoint_t *ep)
|
|
{
|
|
OBJ_DESTRUCT(&ep->pending_frags);
|
|
OBJ_DESTRUCT(&ep->pending_frags_lock);
|
|
|
|
#if OPAL_BTL_VADER_HAVE_XPMEM
|
|
if (MCA_BTL_VADER_XPMEM == mca_btl_vader_component.single_copy_mechanism) {
|
|
if (ep->segment_data.xpmem.vma_module) {
|
|
/* clean out the registration cache */
|
|
const int nregs = 100;
|
|
mca_rcache_base_registration_t *regs[nregs];
|
|
int reg_cnt;
|
|
|
|
do {
|
|
reg_cnt = mca_rcache_base_vma_find_all (ep->segment_data.xpmem.vma_module,
|
|
0, (size_t) -1, regs, nregs);
|
|
for (int i = 0 ; i < reg_cnt ; ++i) {
|
|
/* otherwise dereg will fail on assert */
|
|
regs[i]->ref_count = 0;
|
|
OBJ_RELEASE(regs[i]);
|
|
}
|
|
} while (reg_cnt == nregs);
|
|
|
|
ep->segment_data.xpmem.vma_module = NULL;
|
|
}
|
|
|
|
if (ep->segment_base) {
|
|
xpmem_release (ep->segment_data.xpmem.apid);
|
|
ep->segment_data.xpmem.apid = 0;
|
|
}
|
|
} else
|
|
#endif
|
|
if (ep->segment_data.other.seg_ds) {
|
|
opal_shmem_ds_t seg_ds;
|
|
|
|
/* opal_shmem_segment_detach expects a opal_shmem_ds_t and will
|
|
* stomp past the end of the seg_ds if it is too small (which
|
|
* ep->seg_ds probably is) */
|
|
memcpy (&seg_ds, ep->segment_data.other.seg_ds, opal_shmem_sizeof_shmem_ds (ep->segment_data.other.seg_ds));
|
|
free (ep->segment_data.other.seg_ds);
|
|
ep->segment_data.other.seg_ds = NULL;
|
|
|
|
/* disconnect from the peer's segment */
|
|
opal_shmem_segment_detach (&seg_ds);
|
|
}
|
|
|
|
ep->fbox_in.buffer = ep->fbox_out.buffer = NULL;
|
|
ep->segment_base = NULL;
|
|
ep->fifo = NULL;
|
|
}
|
|
|
|
OBJ_CLASS_INSTANCE(mca_btl_vader_endpoint_t, opal_list_item_t, mca_btl_vader_endpoint_constructor, mca_btl_vader_endpoint_destructor);
|