changes to the ompi_free_list_ex - called ompi_free_list_ex_new, for now.
This commit was SVN r16803.
Этот коммит содержится в:
родитель
0138a2ee17
Коммит
6e77414a68
@ -301,11 +301,13 @@ mca_btl_udapl_init(DAT_NAME_PTR ia_name, mca_btl_udapl_module_t* btl)
|
||||
}
|
||||
|
||||
/* initialize free lists */
|
||||
ompi_free_list_init_ex(&btl->udapl_frag_eager,
|
||||
ompi_free_list_init_ex_new(&btl->udapl_frag_eager,
|
||||
sizeof(mca_btl_udapl_frag_eager_t) +
|
||||
mca_btl_udapl_component.udapl_eager_frag_size,
|
||||
mca_btl_udapl_component.udapl_buffer_alignment,
|
||||
OBJ_CLASS(mca_btl_udapl_frag_eager_t),
|
||||
mca_btl_udapl_component.udapl_eager_frag_size,
|
||||
mca_btl_udapl_component.udapl_buffer_alignment,
|
||||
mca_btl_udapl_component.udapl_free_list_num,
|
||||
mca_btl_udapl_component.udapl_free_list_max,
|
||||
mca_btl_udapl_component.udapl_free_list_inc,
|
||||
@ -313,11 +315,13 @@ mca_btl_udapl_init(DAT_NAME_PTR ia_name, mca_btl_udapl_module_t* btl)
|
||||
NULL,
|
||||
NULL);
|
||||
|
||||
ompi_free_list_init_ex(&btl->udapl_frag_max,
|
||||
ompi_free_list_init_ex_new(&btl->udapl_frag_max,
|
||||
sizeof(mca_btl_udapl_frag_max_t) +
|
||||
mca_btl_udapl_component.udapl_max_frag_size,
|
||||
mca_btl_udapl_component.udapl_buffer_alignment,
|
||||
OBJ_CLASS(mca_btl_udapl_frag_max_t),
|
||||
mca_btl_udapl_component.udapl_max_frag_size,
|
||||
mca_btl_udapl_component.udapl_buffer_alignment,
|
||||
mca_btl_udapl_component.udapl_free_list_num,
|
||||
mca_btl_udapl_component.udapl_free_list_max,
|
||||
mca_btl_udapl_component.udapl_free_list_inc,
|
||||
@ -325,10 +329,11 @@ mca_btl_udapl_init(DAT_NAME_PTR ia_name, mca_btl_udapl_module_t* btl)
|
||||
NULL,
|
||||
NULL);
|
||||
|
||||
ompi_free_list_init_ex(&btl->udapl_frag_user,
|
||||
ompi_free_list_init_ex_new(&btl->udapl_frag_user,
|
||||
sizeof(mca_btl_udapl_frag_user_t),
|
||||
mca_btl_udapl_component.udapl_buffer_alignment,
|
||||
OBJ_CLASS(mca_btl_udapl_frag_user_t),
|
||||
0,0,
|
||||
mca_btl_udapl_component.udapl_free_list_num,
|
||||
mca_btl_udapl_component.udapl_free_list_max,
|
||||
mca_btl_udapl_component.udapl_free_list_inc,
|
||||
@ -336,11 +341,13 @@ mca_btl_udapl_init(DAT_NAME_PTR ia_name, mca_btl_udapl_module_t* btl)
|
||||
NULL,
|
||||
NULL);
|
||||
|
||||
ompi_free_list_init_ex(&btl->udapl_frag_control,
|
||||
ompi_free_list_init_ex_new(&btl->udapl_frag_control,
|
||||
sizeof(mca_btl_udapl_frag_eager_t) +
|
||||
mca_btl_udapl_component.udapl_eager_frag_size,
|
||||
mca_btl_udapl_component.udapl_buffer_alignment,
|
||||
OBJ_CLASS(mca_btl_udapl_frag_eager_t),
|
||||
mca_btl_udapl_component.udapl_eager_frag_size,
|
||||
mca_btl_udapl_component.udapl_buffer_alignment,
|
||||
mca_btl_udapl_component.udapl_free_list_num,
|
||||
-1,
|
||||
mca_btl_udapl_component.udapl_free_list_inc,
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user