From bdd62a4cc0d87c1807a81cf16ace28260742d8b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E7=A7=A6=E6=9C=97?= Date: Fri, 12 Sep 2025 08:22:18 +0000 Subject: [PATCH] =?UTF-8?q?Lower=20sdma=20priority=20to=2020=EF=BC=8Csm=20?= =?UTF-8?q?priority=20to=2050?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 李秦朗 --- ompi/mca/osc/rdma/osc_rdma_component.c | 2 +- ompi/mca/osc/sm/osc_sm_component.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ompi/mca/osc/rdma/osc_rdma_component.c b/ompi/mca/osc/rdma/osc_rdma_component.c index a919bd2a35b8..a0d7fe8e6f19 100644 --- a/ompi/mca/osc/rdma/osc_rdma_component.c +++ b/ompi/mca/osc/rdma/osc_rdma_component.c @@ -230,7 +230,7 @@ static int ompi_osc_rdma_component_register (void) MCA_BASE_VAR_SCOPE_GROUP, &mca_osc_rdma_component.max_attach); free(description_str); - mca_osc_rdma_component.priority = 101; + mca_osc_rdma_component.priority = 20; asprintf(&description_str, "Priority of the osc/rdma component (default: %d)", mca_osc_rdma_component.priority); (void) mca_base_component_var_register (&mca_osc_rdma_component.super.osc_version, "priority", description_str, diff --git a/ompi/mca/osc/sm/osc_sm_component.c b/ompi/mca/osc/sm/osc_sm_component.c index 03a1e949bd36..be87bca8bd19 100644 --- a/ompi/mca/osc/sm/osc_sm_component.c +++ b/ompi/mca/osc/sm/osc_sm_component.c @@ -178,7 +178,7 @@ component_query(struct ompi_win_t *win, void **base, size_t size, int disp_unit, return ret; } - return 100; + return 50; } -- Gitee