Skip to content

Commit

Permalink
DAOS-10736 Cart: Add support for UCX tcp transport (#9615)
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Soumagne <jerome.soumagne@intel.com>
  • Loading branch information
soumagne authored Jul 15, 2022
1 parent 67dcbaf commit 3c7200a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/cart/crt_hg.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ struct crt_na_dict crt_na_dict[] = {
.nad_str = "ucx+dc_x",
.nad_contig_eps = true,
.nad_port_bind = true,
}, {
.nad_type = CRT_NA_UCX_TCP,
.nad_str = "ucx+tcp",
.nad_contig_eps = true,
.nad_port_bind = true,
}, {
.nad_str = NULL,
}
Expand Down
1 change: 1 addition & 0 deletions src/cart/crt_hg.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ enum crt_na_type {
CRT_NA_UCX_UD_X = 14,
CRT_NA_UCX_RC_UD_X = 15,
CRT_NA_UCX_DC_X = 16,
CRT_NA_UCX_TCP = 17,

/* Note: This entry should be the last valid one in enum */
CRT_NA_COUNT,
Expand Down

0 comments on commit 3c7200a

Please sign in to comment.