From 2258d28c8a5ee366325ed38dcb1b59f5059cce92 Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Tue, 14 Jan 2025 15:20:01 -0700 Subject: [PATCH] btl/uct: get it to compile again a recent commit to btl/uct broke compilation for me. This patch gets it compiling again. Signed-off-by: Howard Pritchard --- opal/mca/btl/uct/btl_uct_rdma.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/opal/mca/btl/uct/btl_uct_rdma.c b/opal/mca/btl/uct/btl_uct_rdma.c index 88ee8106796..d4210e4631c 100644 --- a/opal/mca/btl/uct/btl_uct_rdma.c +++ b/opal/mca/btl/uct/btl_uct_rdma.c @@ -3,6 +3,7 @@ * Copyright (c) 2014-2018 Los Alamos National Security, LLC. All rights * reserved. * Copyright (c) 2025 Google, LLC. All rights reserved. + * Copyright (c) 2025 Triad National Security, LLC. All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow @@ -45,10 +46,10 @@ static void mca_btl_uct_uct_completion_construct(mca_btl_uct_uct_completion_t *c { comp->frag = NULL; comp->uct_comp.func = mca_btl_uct_uct_completion; - comp.uct_comp.count = 1; + comp->uct_comp.count = 1; #if UCT_API >= ((1L<uct_comp->status = UCS_OK; + comp->uct_comp.status = UCS_OK; #endif }