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 <sluong@cisco.com>
Change-Id: I20f6e9441727fb7ffc132965b93c0a90482e1a52
This commit is contained in:
Steven Luong
2021-04-08 10:17:26 -07:00
committed by Matthew Smith
parent 89ca7df0de
commit 5d46e52fd2

View File

@@ -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;
}