1
1
openmpi/oshmem/mca/spml/yoda/spml_yoda_getreq.c
Nathan Hjelm 5f1254d710 Update code base to use the new opal_free_list_t
Use of the old ompi_free_list_t and ompi_free_list_item_t is
deprecated. These classes will be removed in a future commit.

This commit updates the entire code base to use opal_free_list_t and
opal_free_list_item_t.

Notes:

OMPI_FREE_LIST_*_MT -> opal_free_list_* (uses opal_using_threads ())

Signed-off-by: Nathan Hjelm <hjelmn@lanl.gov>
2015-02-24 10:05:45 -07:00

129 строки
4.5 KiB
C

/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2013 Mellanox Technologies, Inc.
* All rights reserved.
* Copyright (c) 2014 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
* reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "oshmem_config.h"
#include "opal/prefetch.h"
#include "oshmem/constants.h"
#include "oshmem/mca/spml/spml.h"
#include "opal/mca/btl/btl.h"
#include "orte/mca/errmgr/errmgr.h"
#include "opal/mca/mpool/mpool.h"
#include "ompi/mca/bml/base/base.h"
#include "oshmem/mca/spml/yoda/spml_yoda.h"
#include "oshmem/mca/spml/yoda/spml_yoda_putreq.h"
#include "oshmem/mca/spml/yoda/spml_yoda_getreq.h"
#include "oshmem/mca/spml/yoda/spml_yoda_rdmafrag.h"
/*
* The free call mark the final stage in a request life-cycle. Starting from this
* point the request is completed at both SPML and user level, and can be used
* for others one sided communications. Therefore, in the case of the YODA SPML it should
* be added to the free request list.
*/
static int mca_spml_yoda_get_request_free(struct oshmem_request_t** request)
{
mca_spml_yoda_get_request_t* getreq =
*(mca_spml_yoda_get_request_t**) request;
assert( false == getreq->req_get.req_base.req_free_called);
OPAL_THREAD_LOCK(&oshmem_request_lock);
getreq->req_get.req_base.req_free_called = true;
opal_free_list_return (&mca_spml_base_get_requests,
(opal_free_list_item_t*)getreq);
OPAL_THREAD_UNLOCK(&oshmem_request_lock);
*request = SHMEM_REQUEST_NULL; /*MPI_REQUEST_NULL;*/
return OSHMEM_SUCCESS;
}
static int mca_spml_yoda_get_request_cancel(struct oshmem_request_t* request,
int complete)
{
/* we dont cancel get requests by now */
return OSHMEM_SUCCESS;
}
static void mca_spml_yoda_get_request_construct(mca_spml_yoda_get_request_t* req)
{
req->req_get.req_base.req_type = MCA_SPML_REQUEST_GET;
req->req_get.req_base.req_oshmem.req_free = mca_spml_yoda_get_request_free;
req->req_get.req_base.req_oshmem.req_cancel =
mca_spml_yoda_get_request_cancel;
}
static void mca_spml_yoda_get_request_destruct(mca_spml_yoda_get_request_t* req)
{
}
OBJ_CLASS_INSTANCE( mca_spml_yoda_get_request_t,
mca_spml_base_get_request_t,
mca_spml_yoda_get_request_construct,
mca_spml_yoda_get_request_destruct);
void mca_spml_yoda_get_completion (struct mca_btl_base_module_t* module,
struct mca_btl_base_endpoint_t* endpoint,
void *local_address,
struct mca_btl_base_registration_handle_t *local_handle,
void *context, void *cbdata, int status)
{
mca_spml_yoda_rdma_frag_t* frag =
(mca_spml_yoda_rdma_frag_t*) cbdata;
mca_spml_yoda_get_request_t* getreq =
(mca_spml_yoda_get_request_t*) frag->rdma_req;
mca_bml_base_btl_t* bml_btl = (mca_bml_base_btl_t*) context;
/* check completion status */
if (OPAL_UNLIKELY(OPAL_SUCCESS != status)) {
/* shmem has no way to propagate errors. cry&die */
SPML_ERROR("FATAL get completion error");
abort();
}
if (getreq->parent) {
OPAL_THREAD_ADD32(&getreq->parent->active_count, -1);
}
getreq->req_get.req_base.req_spml_complete = true;
oshmem_request_complete(&getreq->req_get.req_base.req_oshmem, 1);
oshmem_request_free((oshmem_request_t**) &getreq);
if (bml_btl->btl->btl_register_mem && frag->local_handle) {
bml_btl->btl->btl_deregister_mem (bml_btl->btl, frag->local_handle);
}
OPAL_THREAD_ADD32(&mca_spml_yoda.n_active_gets, -1);
}
void mca_spml_yoda_get_response_completion(mca_btl_base_module_t* btl,
struct mca_btl_base_endpoint_t* ep,
struct mca_btl_base_descriptor_t* des,
int status)
{
mca_bml_base_btl_t* bml_btl = (mca_bml_base_btl_t*) des->des_context;
/* check completion status */
if (OPAL_UNLIKELY(OSHMEM_SUCCESS != status)) {
/* shmem has no way to propagate errors. cry&die */
SPML_ERROR("FATAL get completion error");
abort();
}
mca_bml_base_free(bml_btl, des);
OPAL_THREAD_ADD32(&mca_spml_yoda.n_active_gets, -1);
}