From: Steven Luong Date: Thu, 8 Apr 2021 17:17:26 +0000 (-0700) Subject: avf: correctly set VL_API_AVF_DELETE is_mp_safe X-Git-Tag: v21.10-rc0~269 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=5d46e52fd28ccc52539031bbbe5c67d749116a09;p=vpp.git avf: correctly set VL_API_AVF_DELETE is_mp_safe Need to add msg_id_base with VL_API_AVF_DELETE to properly set the correct is_mp_safe variable. Type: fix Signed-off-by: Steven Luong Change-Id: I20f6e9441727fb7ffc132965b93c0a90482e1a52 --- diff --git a/src/plugins/avf/avf_api.c b/src/plugins/avf/avf_api.c index 504fa31eb3d..883b374331f 100644 --- a/src/plugins/avf/avf_api.c +++ b/src/plugins/avf/avf_api.c @@ -93,10 +93,11 @@ avf_plugin_api_hookup (vlib_main_t * vm) avf_main_t *avm = &avf_main; api_main_t *am = vlibapi_get_main (); - am->is_mp_safe[VL_API_AVF_DELETE] = 1; - /* ask for a correctly-sized block of API message decode slots */ avm->msg_id_base = setup_message_id_table (); + + am->is_mp_safe[avm->msg_id_base + VL_API_AVF_DELETE] = 1; + return 0; }