1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2005 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2005 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) 2014 Bull SAS. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#ifndef OPAL_BTL_PORTALS4_RECV_H
#define OPAL_BTL_PORTALS4_RECV_H
#include "opal_config.h"
#include "btl_portals4.h"
struct mca_btl_portals4_recv_block_t {
opal_list_item_t base;
mca_btl_portals4_module_t *btl;
void *start;
size_t length;
ptl_handle_me_t me_h;
volatile bool full;
volatile int32_t pending;
};
typedef struct mca_btl_portals4_recv_block_t mca_btl_portals4_recv_block_t;
OBJ_CLASS_DECLARATION(mca_btl_portals4_recv_block_t);
int mca_btl_portals4_recv_enable(mca_btl_portals4_module_t *btl);
int mca_btl_portals4_recv_disable(mca_btl_portals4_module_t *btl);
/**
* Free a block of memory.
*
*/
int mca_btl_portals4_recv_block_free(mca_btl_portals4_recv_block_t *block);
/**
* Create a block of memory for receiving send messages. Must call
* activate_block on the returned block of memory before it will be
* active with the Portals library
*
* Module lock must be held before calling this function
*/
mca_btl_portals4_recv_block_t *mca_btl_portals4_recv_block_init(mca_btl_portals4_module_t *btl);
/**
* activate a block. Blocks that are full (have gone inactive) can be
* re-activated with this call. There is no need to hold the lock
* before calling this function
*/
static inline int mca_btl_portals4_activate_block(mca_btl_portals4_recv_block_t *block)
{
int ret;
ptl_me_t me;
ptl_process_t remote_proc;
ptl_match_bits_t match_bits, ignore_bits;
mca_btl_portals4_module_t *btl = block->btl;
if (NULL == block->start)
return OPAL_ERROR;
ignore_bits = BTL_PORTALS4_CONTEXT_MASK | BTL_PORTALS4_SOURCE_MASK | BTL_PORTALS4_TAG_MASK;
match_bits = BTL_PORTALS4_SHORT_MSG;
me.start = block->start;
me.length = block->length;
me.ct_handle = PTL_CT_NONE;
me.min_free = btl->super.btl_eager_limit;
me.uid = PTL_UID_ANY;
me.options = PTL_ME_OP_PUT | PTL_ME_MANAGE_LOCAL | PTL_ME_EVENT_LINK_DISABLE | PTL_ME_MAY_ALIGN;
if (mca_btl_portals4_component.use_logical) {
remote_proc.rank = PTL_RANK_ANY;
} else {
remote_proc.phys.nid = PTL_NID_ANY;
remote_proc.phys.pid = PTL_PID_ANY;
}
me.match_id = remote_proc;
me.match_bits = match_bits;
me.ignore_bits = ignore_bits;
block->pending = 0;
block->full = false;
opal_atomic_mb();
ret = PtlMEAppend(btl->portals_ni_h, btl->recv_idx, &me, PTL_PRIORITY_LIST, block,
&block->me_h);
if (OPAL_UNLIKELY(PTL_OK != ret)) {
opal_output_verbose(1, opal_btl_base_framework.framework_output,
"%s:%d: PtlMEAppend failed on NI %d: %d", __FILE__, __LINE__,
btl->interface_num, ret);
return OPAL_ERROR;
}
OPAL_OUTPUT_VERBOSE((90, opal_btl_base_framework.framework_output,
"PtlMEAppend (recv) block=%p me_h=%d start=%p len=%x NI=%d\n",
(void *) block, block->me_h, block->start, (unsigned int) block->length,
btl->interface_num));
return OPAL_SUCCESS;
}
#endif /* OPAL_BTL_PORTALS4_RECV_H */
|