Code Review
/
vpp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
1c8b630
)
ip: Adding IP tables is no MP safe
68/28368/1
author
Neale Ranns
<
[email protected]
>
Wed, 25 Mar 2020 07:21:09 +0000
(
03:21
-0400)
committer
Andrew Yourtchenko
<
[email protected]
>
Thu, 13 Aug 2020 10:39:40 +0000
(10:39 +0000)
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 <
[email protected]
>
(cherry picked from commit
31d6c738c20d3baa619dbbb08af6125fab32bc08
)
src/vnet/ip/lookup.c
patch
|
blob
|
history
diff --git
a/src/vnet/ip/lookup.c
b/src/vnet/ip/lookup.c
index
4db7660
..
cc8b46f
100644
(file)
--- a/
src/vnet/ip/lookup.c
+++ b/
src/vnet/ip/lookup.c
@@
-659,7
+659,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* */
@@
-675,7
+674,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 *