1
1

Merge pull request #6249 from hjelmn/v4.0.x_fix_issue_6201_in_the_v4.0.x_branch

v4.0.x: btl/vader: don't try to set reachabilty in add_procs if not requested
Этот коммит содержится в:
Howard Pritchard 2019-02-11 13:16:15 -07:00 коммит произвёл GitHub
родитель 5dd63405ce b7fbdeb759
Коммит 6513b855cf
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -17,6 +17,8 @@
* Copyright (c) 2014-2015 Intel, Inc. All rights reserved. * Copyright (c) 2014-2015 Intel, Inc. All rights reserved.
* Copyright (c) 2014-2015 Research Organization for Information Science * Copyright (c) 2014-2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved. * and Technology (RIST). All rights reserved.
* Copyright (c) 2018 Triad National Security, LLC. All rights
* reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -276,7 +278,7 @@ static int vader_add_procs (struct mca_btl_base_module_t* btl,
continue; continue;
} }
if (my_proc != procs[proc]) { if (my_proc != procs[proc] && NULL != reachability) {
/* add this proc to shared memory accessibility list */ /* add this proc to shared memory accessibility list */
rc = opal_bitmap_set_bit (reachability, proc); rc = opal_bitmap_set_bit (reachability, proc);
if(OPAL_SUCCESS != rc) { if(OPAL_SUCCESS != rc) {