diff options
author | flyingeagle23 <wang.hui56@zte.com.cn> | 2017-05-15 16:57:20 +0800 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-05-16 10:37:47 +0000 |
commit | 92a838b14a1862ef07c631412069e968f303639b (patch) | |
tree | 370900fb2c4f6f399e6b820336f1783d0d283800 /src/vnet/ip | |
parent | 0a69734dfe9ea35e3983f0c6a71e7853037adb74 (diff) |
ping command does not work when there is woker thread (VPP-844)
Change-Id: Ic896b237a7d141243e1b7d6d4fbb2a120f44363e
Signed-off-by: flyingeagle23 <wang.hui56@zte.com.cn>
Diffstat (limited to 'src/vnet/ip')
-rwxr-xr-x[-rw-r--r--] | src/vnet/ip/ping.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/ip/ping.c b/src/vnet/ip/ping.c index 4a7fdd6cba6..5d04b3d6798 100644..100755 --- a/src/vnet/ip/ping.c +++ b/src/vnet/ip/ping.c @@ -890,6 +890,7 @@ VLIB_CLI_COMMAND (ping_command, static) = " [ipv4 <ip4-addr> | ipv6 <ip6-addr>] [source <interface>]" " [size <pktsize>] [interval <sec>] [repeat <cnt>] [table-id <id>]" " [verbose]", + .is_mp_safe = 1, }; /* *INDENT-ON* */ |