1
1

Merge pull request #7398 from yanagibashi/pr/fix-info-key-object

osc/sm: fix typo and minor correction
Этот коммит содержится в:
Jeff Squyres 2020-02-14 18:29:05 -05:00 коммит произвёл GitHub
родитель cb0bc201f3 a07a83d189
Коммит 77df94d688
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -12,6 +12,7 @@
* reserved. * reserved.
* Copyright (c) 2016-2017 IBM Corporation. All rights reserved. * Copyright (c) 2016-2017 IBM Corporation. All rights reserved.
* Copyright (c) 2018 Amazon.com, Inc. or its affiliates. All Rights reserved. * Copyright (c) 2018 Amazon.com, Inc. or its affiliates. All Rights reserved.
* Copyright (c) 2020 FUJITSU LIMITED. All rights reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -206,7 +207,7 @@ component_select(struct ompi_win_t *win, void **base, size_t size, int disp_unit
OBJ_CONSTRUCT(&module->lock, opal_mutex_t); OBJ_CONSTRUCT(&module->lock, opal_mutex_t);
ret = opal_infosubscribe_subscribe(&(win->super), "alloc_shared_contig", "false", component_set_alloc_shared_noncontig_info); ret = opal_infosubscribe_subscribe(&(win->super), "alloc_shared_noncontig", "false", component_set_alloc_shared_noncontig_info);
if (OPAL_SUCCESS != ret) goto error; if (OPAL_SUCCESS != ret) goto error;
@ -420,7 +421,7 @@ component_select(struct ompi_win_t *win, void **base, size_t size, int disp_unit
#endif #endif
} }
ret = opal_infosubscribe_subscribe(&(win->super), "blocking_fence", "false", ret = opal_infosubscribe_subscribe(&(win->super), "blocking_fence", module->global_state->use_barrier_for_fence ? "true" : "false",
component_set_blocking_fence_info); component_set_blocking_fence_info);
if (OPAL_SUCCESS != ret) goto error; if (OPAL_SUCCESS != ret) goto error;