2005-05-24 02:06:50 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* 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$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*/
|
|
|
|
|
2005-05-24 02:22:20 +04:00
|
|
|
#ifndef MCA_PML_OB1_RECVFRAG_H
|
|
|
|
#define MCA_PML_OB1_RECVFRAG_H
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2005-06-30 09:50:55 +04:00
|
|
|
#include "mca/btl/btl.h"
|
2005-08-12 06:41:14 +04:00
|
|
|
#include "mca/bml/bml.h"
|
2005-05-24 02:06:50 +04:00
|
|
|
#include "pml_ob1_hdr.h"
|
|
|
|
|
2005-06-07 18:12:47 +04:00
|
|
|
struct mca_pml_ob1_buffer_t {
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_item_t super;
|
2005-06-07 18:12:47 +04:00
|
|
|
unsigned char addr[1];
|
|
|
|
};
|
|
|
|
typedef struct mca_pml_ob1_buffer_t mca_pml_ob1_buffer_t;
|
|
|
|
|
|
|
|
OBJ_CLASS_DECLARATION(mca_pml_ob1_buffer_t);
|
|
|
|
|
|
|
|
|
2005-06-10 00:16:33 +04:00
|
|
|
struct mca_pml_ob1_recv_frag_t {
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_item_t super;
|
2005-05-24 02:06:50 +04:00
|
|
|
mca_pml_ob1_hdr_t hdr;
|
|
|
|
struct mca_pml_ob1_recv_request_t* request;
|
2005-06-07 18:12:47 +04:00
|
|
|
size_t num_segments;
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_base_segment_t segments[MCA_BTL_DES_MAX_SEGMENTS];
|
|
|
|
mca_pml_ob1_buffer_t* buffers[MCA_BTL_DES_MAX_SEGMENTS];
|
2005-05-24 02:06:50 +04:00
|
|
|
};
|
2005-06-10 00:16:33 +04:00
|
|
|
typedef struct mca_pml_ob1_recv_frag_t mca_pml_ob1_recv_frag_t;
|
2005-06-07 18:12:47 +04:00
|
|
|
|
2005-06-10 00:16:33 +04:00
|
|
|
OBJ_CLASS_DECLARATION(mca_pml_ob1_recv_frag_t);
|
2005-06-07 18:12:47 +04:00
|
|
|
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2005-08-12 06:41:14 +04:00
|
|
|
#define MCA_PML_OB1_RECV_FRAG_ALLOC(frag,rc) \
|
2005-06-07 18:12:47 +04:00
|
|
|
do { \
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_item_t* item; \
|
2005-08-12 06:41:14 +04:00
|
|
|
OMPI_FREE_LIST_WAIT(&mca_pml_ob1.recv_frags, item, rc); \
|
|
|
|
frag = (mca_pml_ob1_recv_frag_t*)item; \
|
2005-06-07 18:12:47 +04:00
|
|
|
} while(0)
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
|
2005-08-12 06:41:14 +04:00
|
|
|
#define MCA_PML_OB1_RECV_FRAG_INIT(frag, hdr,segs,cnt) \
|
2005-06-07 18:12:47 +04:00
|
|
|
do { \
|
|
|
|
size_t i; \
|
2005-08-12 06:41:14 +04:00
|
|
|
mca_btl_base_segment_t* macro_segments = frag->segments; \
|
2005-06-07 18:12:47 +04:00
|
|
|
mca_pml_ob1_buffer_t** buffers = frag->buffers; \
|
|
|
|
\
|
2005-08-12 06:41:14 +04:00
|
|
|
/* init recv_frag */ \
|
2005-06-07 18:12:47 +04:00
|
|
|
frag->hdr = *(mca_pml_ob1_hdr_t*)hdr; \
|
|
|
|
frag->num_segments = cnt; \
|
|
|
|
/* copy over data */ \
|
|
|
|
for(i=0; i<cnt; i++) { \
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_item_t* item; \
|
2005-06-07 18:12:47 +04:00
|
|
|
mca_pml_ob1_buffer_t* buff; \
|
|
|
|
OMPI_FREE_LIST_WAIT(&mca_pml_ob1.buffers, item, rc); \
|
|
|
|
buff = (mca_pml_ob1_buffer_t*)item; \
|
|
|
|
buffers[i] = buff; \
|
2005-08-12 06:41:14 +04:00
|
|
|
macro_segments[i].seg_addr.pval = buff->addr; \
|
|
|
|
macro_segments[i].seg_len = segs[i].seg_len; \
|
2005-06-07 21:08:06 +04:00
|
|
|
memcpy(buff->addr, \
|
2005-06-07 18:12:47 +04:00
|
|
|
segs[i].seg_addr.pval, \
|
|
|
|
segs[i].seg_len); \
|
|
|
|
} \
|
2005-06-07 21:08:06 +04:00
|
|
|
\
|
2005-06-07 18:12:47 +04:00
|
|
|
} while(0)
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2005-06-07 21:08:06 +04:00
|
|
|
|
2005-08-12 06:41:14 +04:00
|
|
|
#define MCA_PML_OB1_RECV_FRAG_RETURN(frag) \
|
2005-06-07 18:12:47 +04:00
|
|
|
do { \
|
|
|
|
size_t i; \
|
|
|
|
\
|
|
|
|
/* return buffers */ \
|
|
|
|
for(i=0; i<frag->num_segments; i++) { \
|
|
|
|
OMPI_FREE_LIST_RETURN(&mca_pml_ob1.buffers, \
|
2005-07-03 20:22:16 +04:00
|
|
|
(opal_list_item_t*)frag->buffers[i]); \
|
2005-06-07 18:12:47 +04:00
|
|
|
} \
|
|
|
|
frag->num_segments = 0; \
|
|
|
|
\
|
2005-08-12 06:41:14 +04:00
|
|
|
/* return recv_frag */ \
|
|
|
|
OMPI_FREE_LIST_RETURN(&mca_pml_ob1.recv_frags, \
|
2005-07-03 20:22:16 +04:00
|
|
|
(opal_list_item_t*)frag); \
|
2005-06-07 18:12:47 +04:00
|
|
|
} while(0)
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2005-06-30 09:50:55 +04:00
|
|
|
* Callback from BTL on receipt of a recv_frag.
|
2005-05-24 02:06:50 +04:00
|
|
|
*/
|
|
|
|
|
2005-06-02 01:09:43 +04:00
|
|
|
OMPI_DECLSPEC void mca_pml_ob1_recv_frag_callback(
|
2005-08-12 06:41:14 +04:00
|
|
|
mca_btl_base_module_t *btl,
|
|
|
|
mca_btl_base_tag_t tag,
|
|
|
|
mca_btl_base_descriptor_t* descriptor,
|
|
|
|
void* cbdata
|
|
|
|
);
|
2005-06-02 01:09:43 +04:00
|
|
|
|
|
|
|
/**
|
2005-06-10 00:16:33 +04:00
|
|
|
* Match incoming recv_frags against posted receives.
|
2005-06-02 01:09:43 +04:00
|
|
|
* Supports out of order delivery.
|
|
|
|
*
|
2005-06-10 00:16:33 +04:00
|
|
|
* @param frag_header (IN) Header of received recv_frag.
|
|
|
|
* @param frag_desc (IN) Received recv_frag descriptor.
|
2005-06-02 01:09:43 +04:00
|
|
|
* @param match_made (OUT) Flag indicating wether a match was made.
|
|
|
|
* @param additional_matches (OUT) List of additional matches
|
|
|
|
* @return OMPI_SUCCESS or error status on failure.
|
|
|
|
*/
|
|
|
|
OMPI_DECLSPEC int mca_pml_ob1_recv_frag_match(
|
2005-08-12 06:41:14 +04:00
|
|
|
mca_btl_base_module_t* btl,
|
|
|
|
mca_pml_ob1_match_hdr_t *hdr,
|
|
|
|
mca_btl_base_segment_t* segments,
|
|
|
|
size_t num_segments);
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
|
2005-06-02 01:09:43 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2005-05-24 02:06:50 +04:00
|
|
|
#endif
|
|
|
|
|