aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteven Luong <sluong@cisco.com>2019-04-25 11:19:49 -0700
committerDave Barach <openvpp@barachs.net>2019-05-03 17:38:01 +0000
commitc5fa2b8099ea1fe18a5df3c71ad6a16df242431e (patch)
tree9b3fb56496dcb4f4f1e6c59b61c4b4aa9d9e8db3 /src
parent29a59c3ae18573043d9f9baa2796ab0b841bf6aa (diff)
mp_safe SW_INTERFACE_DUMP, SW_INTERFACE_DETAILS, SW_INTERFACE_TAG_ADD_DEL,
BRIDGE_DOMAIN_DUMP, CONTROL_PING, CONTROL_PING_REPLY, and show interface CLI Change-Id: I2927573b66bb5dd134b37ffb72af0e6676750917 Signed-off-by: Steven Luong <sluong@cisco.com> (cherry picked from commit 15c31921a628c5500cbed2ebc588d7ddbaa970a3)
Diffstat (limited to 'src')
-rw-r--r--src/vnet/interface_api.c5
-rw-r--r--src/vnet/interface_cli.c1
-rw-r--r--src/vnet/l2/l2_api.c3
-rw-r--r--src/vpp/api/api.c2
4 files changed, 11 insertions, 0 deletions
diff --git a/src/vnet/interface_api.c b/src/vnet/interface_api.c
index b896433e959..58035fbf47d 100644
--- a/src/vnet/interface_api.c
+++ b/src/vnet/interface_api.c
@@ -1414,6 +1414,11 @@ interface_api_hookup (vlib_main_t * vm)
foreach_vpe_api_msg;
#undef _
+ /* Mark these APIs as mp safe */
+ am->is_mp_safe[VL_API_SW_INTERFACE_DUMP] = 1;
+ am->is_mp_safe[VL_API_SW_INTERFACE_DETAILS] = 1;
+ am->is_mp_safe[VL_API_SW_INTERFACE_TAG_ADD_DEL] = 1;
+
/*
* Set up the (msg_name, crc, message-id) table
*/
diff --git a/src/vnet/interface_cli.c b/src/vnet/interface_cli.c
index d9b854eb26b..624f8ef0c13 100644
--- a/src/vnet/interface_cli.c
+++ b/src/vnet/interface_cli.c
@@ -470,6 +470,7 @@ VLIB_CLI_COMMAND (show_sw_interfaces_command, static) = {
.path = "show interface",
.short_help = "show interface [address|addr|features|feat] [<interface> [<interface> [..]]] [verbose]",
.function = show_sw_interfaces,
+ .is_mp_safe = 1,
};
/* *INDENT-ON* */
diff --git a/src/vnet/l2/l2_api.c b/src/vnet/l2/l2_api.c
index b55c5d3744a..47942ecfb2a 100644
--- a/src/vnet/l2/l2_api.c
+++ b/src/vnet/l2/l2_api.c
@@ -1065,6 +1065,9 @@ l2_api_hookup (vlib_main_t * vm)
foreach_vpe_api_msg;
#undef _
+ /* Mark VL_API_BRIDGE_DOMAIN_DUMP as mp safe */
+ am->is_mp_safe[VL_API_BRIDGE_DOMAIN_DUMP] = 1;
+
/*
* Set up the (msg_name, crc, message-id) table
*/
diff --git a/src/vpp/api/api.c b/src/vpp/api/api.c
index b5ff3ccad71..c5c2480ea87 100644
--- a/src/vpp/api/api.c
+++ b/src/vpp/api/api.c
@@ -538,6 +538,8 @@ vpe_api_hookup (vlib_main_t * vm)
/*
* Thread-safe API messages
*/
+ am->is_mp_safe[VL_API_CONTROL_PING] = 1;
+ am->is_mp_safe[VL_API_CONTROL_PING_REPLY] = 1;
am->is_mp_safe[VL_API_IP_ADD_DEL_ROUTE] = 1;
am->is_mp_safe[VL_API_GET_NODE_GRAPH] = 1;