2005-07-01 01:28:35 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2006-08-24 20:38:08 +04:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-07-01 01:28:35 +04: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$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MCA_BTL_IB_FRAG_H
|
|
|
|
#define MCA_BTL_IB_FRAG_H
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include "btl_openib.h"
|
|
|
|
|
2005-07-12 17:38:54 +04:00
|
|
|
#include <infiniband/verbs.h>
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mca/mpool/openib/mpool_openib.h"
|
2005-07-01 01:28:35 +04:00
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-11-10 23:15:02 +03:00
|
|
|
struct mca_btl_openib_header_t {
|
|
|
|
mca_btl_base_tag_t tag;
|
2006-09-05 20:02:09 +04:00
|
|
|
uint16_t credits;
|
2005-11-10 23:15:02 +03:00
|
|
|
};
|
|
|
|
typedef struct mca_btl_openib_header_t mca_btl_openib_header_t;
|
2006-09-05 20:02:09 +04:00
|
|
|
#define BTL_OPENIB_RDMA_CREDITS_FLAG (1<<15)
|
|
|
|
#define BTL_OPENIB_IS_RDMA_CREDITS(I) ((I)&BTL_OPENIB_RDMA_CREDITS_FLAG)
|
|
|
|
#define BTL_OPENIB_CREDITS(I) ((I)&~BTL_OPENIB_RDMA_CREDITS_FLAG)
|
2005-07-01 01:28:35 +04:00
|
|
|
|
2006-03-26 12:30:50 +04:00
|
|
|
struct mca_btl_openib_footer_t {
|
2006-06-28 15:25:09 +04:00
|
|
|
#if OMPI_ENABLE_DEBUG
|
2006-03-26 12:30:50 +04:00
|
|
|
uint32_t seq;
|
|
|
|
#endif
|
|
|
|
union {
|
|
|
|
uint32_t size;
|
|
|
|
uint8_t buf[4];
|
|
|
|
} u;
|
|
|
|
};
|
|
|
|
typedef struct mca_btl_openib_footer_t mca_btl_openib_footer_t;
|
|
|
|
|
|
|
|
typedef enum {
|
2006-09-05 20:02:09 +04:00
|
|
|
MCA_BTL_OPENIB_CONTROL_CREDITS,
|
2006-03-26 12:30:50 +04:00
|
|
|
MCA_BTL_OPENIB_CONTROL_RDMA
|
|
|
|
} mca_btl_openib_control_t;
|
|
|
|
|
|
|
|
struct mca_btl_openib_control_header_t {
|
|
|
|
mca_btl_openib_control_t type;
|
|
|
|
};
|
|
|
|
typedef struct mca_btl_openib_control_header_t mca_btl_openib_control_header_t;
|
|
|
|
|
|
|
|
struct mca_btl_openib_eager_rdma_header_t {
|
|
|
|
mca_btl_openib_control_header_t control;
|
|
|
|
ompi_ptr_t rdma_start;
|
2006-05-25 15:05:12 +04:00
|
|
|
uint32_t rkey;
|
2006-03-26 12:30:50 +04:00
|
|
|
};
|
|
|
|
typedef struct mca_btl_openib_eager_rdma_header_t mca_btl_openib_eager_rdma_header_t;
|
2005-07-01 01:28:35 +04:00
|
|
|
|
2006-09-05 20:02:09 +04:00
|
|
|
struct mca_btl_openib_rdma_credits_header_t {
|
|
|
|
mca_btl_openib_control_header_t control;
|
|
|
|
uint16_t rdma_credits;
|
|
|
|
};
|
|
|
|
typedef struct mca_btl_openib_rdma_credits_header_t mca_btl_openib_rdma_credits_header_t;
|
|
|
|
|
2006-03-30 19:26:21 +04:00
|
|
|
enum mca_btl_openib_frag_type_t {
|
|
|
|
MCA_BTL_OPENIB_FRAG_EAGER,
|
|
|
|
MCA_BTL_OPENIB_FRAG_MAX,
|
|
|
|
MCA_BTL_OPENIB_FRAG_FRAG,
|
2006-07-27 18:09:30 +04:00
|
|
|
MCA_BTL_OPENIB_FRAG_EAGER_RDMA,
|
|
|
|
MCA_BTL_OPENIB_FRAG_CONTROL
|
2006-03-30 19:26:21 +04:00
|
|
|
};
|
|
|
|
typedef enum mca_btl_openib_frag_type_t mca_btl_openib_frag_type_t;
|
|
|
|
|
2005-07-01 01:28:35 +04:00
|
|
|
/**
|
|
|
|
* IB send fragment derived type.
|
|
|
|
*/
|
|
|
|
struct mca_btl_openib_frag_t {
|
|
|
|
mca_btl_base_descriptor_t base;
|
|
|
|
struct mca_btl_base_endpoint_t *endpoint;
|
2006-08-28 15:03:56 +04:00
|
|
|
mca_btl_openib_footer_t *ftr;
|
|
|
|
mca_btl_openib_header_t *hdr;
|
|
|
|
mca_btl_base_segment_t segment;
|
2005-07-01 01:28:35 +04:00
|
|
|
size_t size;
|
2006-03-30 19:26:21 +04:00
|
|
|
int rc;
|
|
|
|
mca_btl_openib_frag_type_t type;
|
2005-07-01 01:28:35 +04:00
|
|
|
union{
|
2005-11-10 23:15:02 +03:00
|
|
|
struct ibv_recv_wr rd_desc;
|
2005-07-12 17:38:54 +04:00
|
|
|
struct ibv_send_wr sr_desc;
|
2005-07-20 19:17:18 +04:00
|
|
|
} wr_desc;
|
2005-07-12 17:38:54 +04:00
|
|
|
struct ibv_sge sg_entry;
|
|
|
|
struct ibv_mr *mr;
|
2005-07-13 01:49:30 +04:00
|
|
|
mca_mpool_openib_registration_t * openib_reg;
|
2005-07-01 01:28:35 +04:00
|
|
|
};
|
|
|
|
typedef struct mca_btl_openib_frag_t mca_btl_openib_frag_t;
|
2006-08-24 20:38:08 +04:00
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_openib_frag_t);
|
2005-07-01 01:28:35 +04:00
|
|
|
|
|
|
|
typedef struct mca_btl_openib_frag_t mca_btl_openib_send_frag_eager_t;
|
|
|
|
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_openib_send_frag_eager_t);
|
|
|
|
|
|
|
|
typedef struct mca_btl_openib_frag_t mca_btl_openib_send_frag_max_t;
|
|
|
|
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_openib_send_frag_max_t);
|
|
|
|
|
|
|
|
typedef struct mca_btl_openib_frag_t mca_btl_openib_send_frag_frag_t;
|
|
|
|
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_openib_send_frag_frag_t);
|
|
|
|
|
|
|
|
typedef struct mca_btl_openib_frag_t mca_btl_openib_recv_frag_eager_t;
|
|
|
|
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_openib_recv_frag_eager_t);
|
|
|
|
|
|
|
|
typedef struct mca_btl_openib_frag_t mca_btl_openib_recv_frag_max_t;
|
|
|
|
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_openib_recv_frag_max_t);
|
|
|
|
|
2006-07-27 18:09:30 +04:00
|
|
|
typedef struct mca_btl_openib_frag_t mca_btl_openib_send_frag_control_t;
|
|
|
|
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_openib_send_frag_control_t);
|
|
|
|
|
2005-07-01 01:28:35 +04:00
|
|
|
/*
|
|
|
|
* Allocate an IB send descriptor
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
#define MCA_BTL_IB_FRAG_ALLOC_CREDIT_WAIT(btl, frag, rc) \
|
2005-07-01 01:28:35 +04:00
|
|
|
{ \
|
|
|
|
\
|
2006-08-24 20:38:08 +04:00
|
|
|
ompi_free_list_item_t *item; \
|
2006-07-27 18:09:30 +04:00
|
|
|
OMPI_FREE_LIST_WAIT(&((mca_btl_openib_module_t*)btl)->send_free_control, item, rc); \
|
2006-08-24 20:38:08 +04:00
|
|
|
frag = (mca_btl_openib_frag_t*) item; \
|
2005-07-01 01:28:35 +04:00
|
|
|
}
|
|
|
|
|
2006-08-24 20:38:08 +04:00
|
|
|
#define MCA_BTL_IB_FRAG_ALLOC_EAGER(btl, frag, rc) \
|
2006-07-20 18:44:35 +04:00
|
|
|
{ \
|
|
|
|
\
|
2006-08-24 20:38:08 +04:00
|
|
|
ompi_free_list_item_t *item; \
|
2006-07-20 18:44:35 +04:00
|
|
|
OMPI_FREE_LIST_GET(&((mca_btl_openib_module_t*)btl)->send_free_eager, item, rc); \
|
2006-08-24 20:38:08 +04:00
|
|
|
frag = (mca_btl_openib_frag_t*) item; \
|
2006-07-20 18:44:35 +04:00
|
|
|
}
|
|
|
|
|
2005-07-01 01:28:35 +04:00
|
|
|
#define MCA_BTL_IB_FRAG_ALLOC_MAX(btl, frag, rc) \
|
|
|
|
{ \
|
|
|
|
\
|
2006-06-13 02:09:03 +04:00
|
|
|
ompi_free_list_item_t *item; \
|
2006-07-20 18:44:35 +04:00
|
|
|
OMPI_FREE_LIST_GET(&((mca_btl_openib_module_t*)btl)->send_free_max, item, rc); \
|
2005-07-01 01:28:35 +04:00
|
|
|
frag = (mca_btl_openib_frag_t*) item; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MCA_BTL_IB_FRAG_ALLOC_FRAG(btl, frag, rc) \
|
|
|
|
{ \
|
|
|
|
\
|
2006-06-13 02:09:03 +04:00
|
|
|
ompi_free_list_item_t *item; \
|
2006-07-20 18:44:35 +04:00
|
|
|
OMPI_FREE_LIST_GET(&((mca_btl_openib_module_t*)btl)->send_free_frag, item, rc); \
|
2005-07-01 01:28:35 +04:00
|
|
|
frag = (mca_btl_openib_frag_t*) item; \
|
|
|
|
}
|
|
|
|
|
2006-06-01 06:32:18 +04:00
|
|
|
#define MCA_BTL_IB_FRAG_RETURN(btl, frag) \
|
|
|
|
{ do { \
|
2006-09-05 13:16:22 +04:00
|
|
|
ompi_free_list_t* my_list = NULL; \
|
2006-06-01 06:32:18 +04:00
|
|
|
switch(frag->type) { \
|
|
|
|
case MCA_BTL_OPENIB_FRAG_EAGER_RDMA: \
|
|
|
|
case MCA_BTL_OPENIB_FRAG_EAGER: \
|
|
|
|
my_list = &btl->send_free_eager; \
|
|
|
|
break; \
|
|
|
|
case MCA_BTL_OPENIB_FRAG_MAX: \
|
|
|
|
my_list = &btl->send_free_max; \
|
|
|
|
break; \
|
2006-07-27 18:09:30 +04:00
|
|
|
case MCA_BTL_OPENIB_FRAG_CONTROL: \
|
|
|
|
my_list = &btl->send_free_control; \
|
|
|
|
break; \
|
2006-06-01 06:32:18 +04:00
|
|
|
case MCA_BTL_OPENIB_FRAG_FRAG: \
|
|
|
|
my_list = &btl->send_free_frag; \
|
2006-07-27 18:09:30 +04:00
|
|
|
break; \
|
2006-06-01 06:32:18 +04:00
|
|
|
} \
|
2006-07-27 18:09:30 +04:00
|
|
|
OMPI_FREE_LIST_RETURN(my_list, (ompi_free_list_item_t*)(frag)); \
|
2006-06-01 06:32:18 +04:00
|
|
|
} while(0); \
|
2005-07-01 01:28:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
struct mca_btl_openib_module_t;
|
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|