ip: Adding IP tables is no MP safe
Type: fix it was marked MP safe in the CLI (which it shouldn't be) but it it not marked MP safe on the API. Change-Id: I4bdea498a510a8b406d13d62a899b6d03656f7e8 Signed-off-by: Neale Ranns <nranns@cisco.com>
This commit is contained in:
@ -640,7 +640,6 @@ VLIB_CLI_COMMAND (ip4_table_command, static) = {
|
||||
.path = "ip table",
|
||||
.short_help = "ip table [add|del] <table-id>",
|
||||
.function = vnet_ip4_table_cmd,
|
||||
.is_mp_safe = 1,
|
||||
};
|
||||
/* *INDENT-ON* */
|
||||
|
||||
@ -656,7 +655,6 @@ VLIB_CLI_COMMAND (ip6_table_command, static) = {
|
||||
.path = "ip6 table",
|
||||
.short_help = "ip6 table [add|del] <table-id>",
|
||||
.function = vnet_ip6_table_cmd,
|
||||
.is_mp_safe = 1,
|
||||
};
|
||||
|
||||
static clib_error_t *
|
||||
|
Reference in New Issue
Block a user