diff options
author | Neale Ranns <nranns@cisco.com> | 2020-03-25 03:21:09 -0400 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-03-25 11:55:50 +0000 |
commit | 31d6c738c20d3baa619dbbb08af6125fab32bc08 (patch) | |
tree | 811dd6f0d7229fd056c49fdeacf674ed6873abb2 /src/vnet/ip | |
parent | 40490db79b755c5ca7113e2b772fe6052925f044 (diff) |
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>
Diffstat (limited to 'src/vnet/ip')
-rw-r--r-- | src/vnet/ip/lookup.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/vnet/ip/lookup.c b/src/vnet/ip/lookup.c index 3b30fb9ce5e..a0cb28b8906 100644 --- a/src/vnet/ip/lookup.c +++ b/src/vnet/ip/lookup.c @@ -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 * |