1
1

The opal datatype engine should _ALWAYS_ be initialized. Therefore move the

call to opal_datatype_init in the opal_util_init.

This commit was SVN r21754.
Этот коммит содержится в:
George Bosilca 2009-08-03 16:46:33 +00:00
родитель 32416761ce
Коммит 5155eaf945

Просмотреть файл

@ -250,13 +250,18 @@ opal_init_util(void)
goto return_error;
}
/*
* Initialize the data storage service.
*/
/* initialize the datatype engine */
if (OPAL_SUCCESS != (ret = opal_datatype_init ())) {
error = "opal_datatype_init";
goto return_error;
}
/* Initialize the data storage service. */
if (OPAL_SUCCESS != (ret = opal_dss_open())) {
error = "opal_dss_open";
goto return_error;
}
return OPAL_SUCCESS;
return_error:
@ -295,12 +300,6 @@ opal_init(void)
opal_paffinity_base_open();
opal_paffinity_base_select();
/* initialize the datatype engine */
if (OPAL_SUCCESS != (ret = opal_datatype_init ())) {
error = "opal_datatype_init";
goto return_error;
}
/* the memcpy component should be one of the first who get
* loaded in order to make sure we ddo have all the available
* versions of memcpy correctly configured.