Skip to content

Commit 99fbd70

Browse files
committed
ofi common: add "usnic" to the exclude list
We never want to use usnic devices with the OFI MTL or OFI BTL (we have the usnic BTL, instead). So add "usnic" to the default common OFI exclude list so that neither "usnic" nor "usnic;ofi_rxd" will be used by the OFI MTL. Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
1 parent 1cf9612 commit 99fbd70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opal/mca/common/ofi/common_ofi.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* reserved.
55
* Copyright (c) 2020-2021 Triad National Security, LLC. All rights
66
* reserved.
7-
* Copyright (c) 2020 Cisco Systems, Inc. All rights reserved
7+
* Copyright (c) 2020-2021 Cisco Systems, Inc. All rights reserved
88
* Copyright (c) 2021 Nanook Consulting. All rights reserved.
99
* $COPYRIGHT$
1010
*
@@ -31,7 +31,7 @@ OPAL_DECLSPEC opal_common_ofi_module_t opal_common_ofi = {.prov_include = NULL,
3131
.registered = 0,
3232
.verbose = 0};
3333

34-
static const char default_prov_exclude_list[] = "shm,sockets,tcp,udp,rstream";
34+
static const char default_prov_exclude_list[] = "shm,sockets,tcp,udp,rstream,usnic";
3535
static opal_mutex_t opal_common_ofi_mutex = OPAL_MUTEX_STATIC_INIT;
3636

3737
OPAL_DECLSPEC int opal_common_ofi_is_in_list(char **list, char *item)

0 commit comments

Comments
 (0)