From 22f4d0c03a5287310d56deb83fd33b1423178706 Mon Sep 17 00:00:00 2001 From: chenjingwei <13827545+chenjingwei1112@user.noreply.gitee.com> Date: Thu, 20 Nov 2025 11:42:39 +0800 Subject: [PATCH] urma:bugfix of v2p --- src/urma/lib/urma/bond/bondp_provider_ops.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/urma/lib/urma/bond/bondp_provider_ops.c b/src/urma/lib/urma/bond/bondp_provider_ops.c index 74e45b3..fdaa73a 100644 --- a/src/urma/lib/urma/bond/bondp_provider_ops.c +++ b/src/urma/lib/urma/bond/bondp_provider_ops.c @@ -299,14 +299,14 @@ static int bondp_init_ctx_table(bondp_context_t *bond_ctx) URMA_LOG_ERR("Failed to create remote_p2v_jetty_id_table\n"); goto FREE_P_VJETTY_ID_TABLE; } - if (bdp_r_p2v_jetty_id_table_create(&bond_ctx->remote_v2p_token_id_table, BONDP_MAX_NUM_RSEGS)) { - URMA_LOG_ERR("Failed to create remote_v2p_jetty_id_table\n"); + if (bdp_r_v2p_token_id_table_create(&bond_ctx->remote_v2p_token_id_table, BONDP_MAX_NUM_RSEGS)) { + URMA_LOG_ERR("Failed to create remote_v2p_token_id_table\n"); goto FREE_V_PTOKEN_ID_TABLE; } atomic_init(&bond_ctx->token_id_cnt, 0); return 0; FREE_V_PTOKEN_ID_TABLE: - (void)bdp_r_p2v_jetty_id_table_destroy(&bond_ctx->remote_v2p_token_id_table); + (void)bdp_r_p2v_jetty_id_table_destroy(&bond_ctx->remote_p2v_jetty_id_table); FREE_P_VJETTY_ID_TABLE: bdp_p_vjetty_id_table_destroy(&bond_ctx->p_vjetty_id_table); ID_STORE_UNINIT: -- Gitee