1
1

Merge pull request #1134 from alex-mikheev/topic/ikrit_err_fix_fix

SPML/IKRIT: opal_progress and ud_only fixes
Этот коммит содержится в:
Mike Dubman 2015-11-15 19:20:55 -06:00
родитель b5f83d9ec6 0755a59091
Коммит 3e93ef49da
2 изменённых файлов: 6 добавлений и 2 удалений

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

@ -105,8 +105,13 @@ static inline mxm_mem_key_t *to_mxm_mkey(sshmem_mkey_t *mkey) {
static inline void mca_spml_irkit_req_wait(mxm_req_base_t *req)
{
while (!mxm_req_test(req))
do {
/* do at least one progress since
* with some TLs (self, shm) request
* can be completed immediately
*/
opal_progress();
} while (!mxm_req_test(req));
}
static int mca_spml_ikrit_put_request_free(struct oshmem_request_t** request)

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

@ -127,7 +127,6 @@ static inline int check_mxm_hw_tls(char *v, char *tls)
if (strstr(tls, "ud") &&
(NULL == strstr(tls, "rc") && NULL == strstr(tls, "dc") &&
NULL == strstr(tls, "shm"))) {
mca_spml_ikrit.ud_only = 1;
return OSHMEM_SUCCESS;
}
}