From: Steven Luong Date: Fri, 26 Mar 2021 17:08:28 +0000 (-0700) Subject: lacp: correctly set is_mp_safe for VL_API_SW_INTERFACE_LACP_DUMP X-Git-Tag: v21.10-rc0~295 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F85%2F31785%2F4;p=vpp.git lacp: correctly set is_mp_safe for VL_API_SW_INTERFACE_LACP_DUMP Need to add msg_id_base to the index Type: fix Signed-off-by: Steven Luong Change-Id: Id7ebf168502e8fd811d8f2f0c5538e69e23242fb --- diff --git a/src/plugins/lacp/lacp_api.c b/src/plugins/lacp/lacp_api.c index dbeb14b3245..fce2492be8c 100644 --- a/src/plugins/lacp/lacp_api.c +++ b/src/plugins/lacp/lacp_api.c @@ -125,8 +125,7 @@ lacp_plugin_api_hookup (vlib_main_t * vm) lm->msg_id_base = setup_message_id_table (); /* Mark these APIs as mp safe */ - am->is_mp_safe[VL_API_SW_INTERFACE_LACP_DUMP] = 1; - am->is_mp_safe[VL_API_SW_INTERFACE_LACP_DETAILS] = 1; + am->is_mp_safe[lm->msg_id_base + VL_API_SW_INTERFACE_LACP_DUMP] = 1; return 0; }