File: btl_portals4_recv.c

package info (click to toggle)
openmpi 5.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 202,312 kB
  • sloc: ansic: 612,441; makefile: 42,495; sh: 11,230; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,154; python: 1,856; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (90 lines) | stat: -rw-r--r-- 2,736 bytes parent folder | download | duplicates (3)
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
/*
 * 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$
 */

#include "opal_config.h"

#include "opal/constants.h"

#include "btl_portals4.h"
#include "btl_portals4_frag.h"
#include "btl_portals4_recv.h"

OBJ_CLASS_INSTANCE(mca_btl_portals4_recv_block_t, opal_list_item_t, NULL, NULL);

int mca_btl_portals4_recv_enable(mca_btl_portals4_module_t *btl)
{
    int i;

    /* create the recv blocks */
    for (i = 0; i < mca_btl_portals4_component.portals_recv_mds_num; ++i) {
        mca_btl_portals4_recv_block_t *block = mca_btl_portals4_recv_block_init(btl);
        if (NULL == block) {
            mca_btl_portals4_recv_disable(btl);
            return OPAL_ERROR;
        }
        opal_list_append(&(btl->portals_recv_blocks), (opal_list_item_t *) block);
        mca_btl_portals4_activate_block(block);
    }
    return OPAL_SUCCESS;
}

int mca_btl_portals4_recv_disable(mca_btl_portals4_module_t *btl)
{
    opal_list_item_t *item;

    if (opal_list_get_size(&btl->portals_recv_blocks) > 0) {
        while (NULL != (item = opal_list_remove_first(&btl->portals_recv_blocks))) {
            mca_btl_portals4_recv_block_t *block = (mca_btl_portals4_recv_block_t *) item;
            mca_btl_portals4_recv_block_free(block);
        }
    }

    return OPAL_SUCCESS;
}

mca_btl_portals4_recv_block_t *mca_btl_portals4_recv_block_init(mca_btl_portals4_module_t *btl)
{
    mca_btl_portals4_recv_block_t *block;

    block = OBJ_NEW(mca_btl_portals4_recv_block_t);
    block->btl = btl;
    block->length = mca_btl_portals4_component.portals_recv_mds_size;
    block->start = malloc(block->length);
    if (block->start == NULL)
        return NULL;

    block->me_h = PTL_INVALID_HANDLE;

    block->full = false;
    block->pending = 0;

    return block;
}

int mca_btl_portals4_recv_block_free(mca_btl_portals4_recv_block_t *block)
{
    if (NULL != block->start) {
        free(block->start);
        block->start = NULL;
    }
    block->length = 0;
    block->full = false;

    return OPAL_SUCCESS;
}