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-17 16:15:51 +0000 |
commit | 7ebd374e182275aed72860ba0fff6da5af8b53d1 (patch) | |
tree | c4132023146ecb22ef683d99112d82eb74eb934f /src/vnet/ip | |
parent | c4352553ee5a824c1c143c330e69b1ec063b4377 (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>
(cherry picked from commit 92a838b14a1862ef07c631412069e968f303639b)
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 4131bd710a3..ab3b19977d6 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* */ |