2005-05-23 22:06:50 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +00:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2006-08-24 16:38:08 +00:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 19:57:48 +00:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-05-23 22:06:50 +00:00
|
|
|
* 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-23 22:22:20 +00:00
|
|
|
#ifndef MCA_PML_OB1_RECVFRAG_H
|
|
|
|
#define MCA_PML_OB1_RECVFRAG_H
|
2005-05-23 22:06:50 +00:00
|
|
|
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "ompi/mca/btl/btl.h"
|
|
|
|
#include "ompi/mca/bml/bml.h"
|
2005-05-23 22:06:50 +00:00
|
|
|
#include "pml_ob1_hdr.h"
|
|
|
|
|
2006-08-24 16:38:08 +00:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-06-07 14:12:47 +00:00
|
|
|
struct mca_pml_ob1_buffer_t {
|
2006-06-12 16:44:00 +00:00
|
|
|
ompi_free_list_item_t super;
|
2005-09-14 17:08:08 +00:00
|
|
|
size_t len;
|
2005-06-07 14:12:47 +00: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-09 20:16:33 +00:00
|
|
|
struct mca_pml_ob1_recv_frag_t {
|
2006-06-12 16:44:00 +00:00
|
|
|
ompi_free_list_item_t super;
|
2005-05-23 22:06:50 +00:00
|
|
|
mca_pml_ob1_hdr_t hdr;
|
|
|
|
struct mca_pml_ob1_recv_request_t* request;
|
2005-06-07 14:12:47 +00:00
|
|
|
size_t num_segments;
|
2005-08-17 18:23:38 +00:00
|
|
|
mca_btl_base_module_t* btl;
|
2005-06-30 05:50:55 +00: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-23 22:06:50 +00:00
|
|
|
};
|
2005-06-09 20:16:33 +00:00
|
|
|
typedef struct mca_pml_ob1_recv_frag_t mca_pml_ob1_recv_frag_t;
|
2005-06-07 14:12:47 +00:00
|
|
|
|
2005-06-09 20:16:33 +00:00
|
|
|
OBJ_CLASS_DECLARATION(mca_pml_ob1_recv_frag_t);
|
2005-06-07 14:12:47 +00:00
|
|
|
|
2005-05-23 22:06:50 +00:00
|
|
|
|
2005-08-12 02:41:14 +00:00
|
|
|
#define MCA_PML_OB1_RECV_FRAG_ALLOC(frag,rc) \
|
2005-06-07 14:12:47 +00:00
|
|
|
do { \
|
2006-06-12 22:09:03 +00:00
|
|
|
ompi_free_list_item_t* item; \
|
2005-08-12 02:41:14 +00:00
|
|
|
OMPI_FREE_LIST_WAIT(&mca_pml_ob1.recv_frags, item, rc); \
|
|
|
|
frag = (mca_pml_ob1_recv_frag_t*)item; \
|
2005-06-07 14:12:47 +00:00
|
|
|
} while(0)
|
2005-05-23 22:06:50 +00:00
|
|
|
|
|
|
|
|
2006-03-15 22:53:41 +00:00
|
|
|
#define MCA_PML_OB1_RECV_FRAG_INIT(frag, hdr, segs, cnt, btl ) \
|
2005-06-07 14:12:47 +00:00
|
|
|
do { \
|
|
|
|
size_t i; \
|
2005-08-12 02:41:14 +00:00
|
|
|
mca_btl_base_segment_t* macro_segments = frag->segments; \
|
2005-06-07 14:12:47 +00:00
|
|
|
mca_pml_ob1_buffer_t** buffers = frag->buffers; \
|
|
|
|
\
|
2005-08-12 02:41:14 +00:00
|
|
|
/* init recv_frag */ \
|
2005-08-17 18:23:38 +00:00
|
|
|
frag->btl = btl; \
|
2005-06-07 14:12:47 +00:00
|
|
|
frag->hdr = *(mca_pml_ob1_hdr_t*)hdr; \
|
|
|
|
frag->num_segments = cnt; \
|
|
|
|
/* copy over data */ \
|
|
|
|
for(i=0; i<cnt; i++) { \
|
2006-06-12 22:09:03 +00:00
|
|
|
ompi_free_list_item_t* item; \
|
2005-06-07 14:12:47 +00: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 02:41:14 +00:00
|
|
|
macro_segments[i].seg_addr.pval = buff->addr; \
|
|
|
|
macro_segments[i].seg_len = segs[i].seg_len; \
|
2005-06-07 17:08:06 +00:00
|
|
|
memcpy(buff->addr, \
|
2005-06-07 14:12:47 +00:00
|
|
|
segs[i].seg_addr.pval, \
|
|
|
|
segs[i].seg_len); \
|
|
|
|
} \
|
2005-06-07 17:08:06 +00:00
|
|
|
\
|
2005-06-07 14:12:47 +00:00
|
|
|
} while(0)
|
2005-05-23 22:06:50 +00:00
|
|
|
|
2005-06-07 17:08:06 +00:00
|
|
|
|
2005-08-12 02:41:14 +00:00
|
|
|
#define MCA_PML_OB1_RECV_FRAG_RETURN(frag) \
|
2005-06-07 14:12:47 +00:00
|
|
|
do { \
|
|
|
|
size_t i; \
|
|
|
|
\
|
|
|
|
/* return buffers */ \
|
|
|
|
for(i=0; i<frag->num_segments; i++) { \
|
|
|
|
OMPI_FREE_LIST_RETURN(&mca_pml_ob1.buffers, \
|
2006-06-12 22:09:03 +00:00
|
|
|
(ompi_free_list_item_t*)frag->buffers[i]); \
|
2005-06-07 14:12:47 +00:00
|
|
|
} \
|
|
|
|
frag->num_segments = 0; \
|
|
|
|
\
|
2005-08-12 02:41:14 +00:00
|
|
|
/* return recv_frag */ \
|
|
|
|
OMPI_FREE_LIST_RETURN(&mca_pml_ob1.recv_frags, \
|
2006-06-12 22:09:03 +00:00
|
|
|
(ompi_free_list_item_t*)frag); \
|
2005-06-07 14:12:47 +00:00
|
|
|
} while(0)
|
2005-05-23 22:06:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2005-06-30 05:50:55 +00:00
|
|
|
* Callback from BTL on receipt of a recv_frag.
|
2005-05-23 22:06:50 +00:00
|
|
|
*/
|
|
|
|
|
2005-06-01 21:09:43 +00:00
|
|
|
OMPI_DECLSPEC void mca_pml_ob1_recv_frag_callback(
|
2005-08-12 02:41:14 +00:00
|
|
|
mca_btl_base_module_t *btl,
|
|
|
|
mca_btl_base_tag_t tag,
|
|
|
|
mca_btl_base_descriptor_t* descriptor,
|
|
|
|
void* cbdata
|
|
|
|
);
|
2005-06-01 21:09:43 +00:00
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2005-05-23 22:06:50 +00:00
|
|
|
#endif
|
|
|
|
|