root/opal/mca/btl/ugni/btl_ugni_put.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. mca_btl_ugni_put

   1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
   2 /*
   3  * Copyright (c) 2011-2017 Los Alamos National Security, LLC. All rights
   4  *                         reserved.
   5  * Copyright (c) 2011      UT-Battelle, LLC. All rights reserved.
   6  * $COPYRIGHT$
   7  *
   8  * Additional copyrights may follow
   9  *
  10  * $HEADER$
  11  */
  12 #include "opal_config.h"
  13 #include "opal/include/opal_stdint.h"
  14 
  15 #include "btl_ugni_rdma.h"
  16 
  17 int mca_btl_ugni_put (mca_btl_base_module_t *btl, struct mca_btl_base_endpoint_t *endpoint, void *local_address,
  18                       uint64_t remote_address, mca_btl_base_registration_handle_t *local_handle,
  19                       mca_btl_base_registration_handle_t *remote_handle, size_t size, int flags,
  20                       int order, mca_btl_base_rdma_completion_fn_t cbfunc, void *cbcontext, void *cbdata)
  21 {
  22     BTL_VERBOSE(("Using RDMA/FMA Put %lu bytes from local address %p to remote address %" PRIx64,
  23                  (unsigned long) size, local_address, remote_address));
  24 
  25     return mca_btl_ugni_post (endpoint, false, size, local_address, remote_address, local_handle,
  26                               remote_handle, order, cbfunc, cbcontext, cbdata);
  27 }

/* [<][>][^][v][top][bottom][index][help] */