From 28adbb3aef75d087eda8df2463de46ac378c8b00 Mon Sep 17 00:00:00 2001 From: Mohsin Kazmi Date: Wed, 29 Apr 2020 13:10:08 +0200 Subject: tap: fix missing "num-rx-queues" from cli help Type: fix Change-Id: Ib09c7cebb6978b3adc09ac36cb32f7947b143e51 Signed-off-by: Mohsin Kazmi --- src/vnet/devices/tap/cli.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/vnet/devices/tap') diff --git a/src/vnet/devices/tap/cli.c b/src/vnet/devices/tap/cli.c index 40086a588aa..486cd9fda21 100644 --- a/src/vnet/devices/tap/cli.c +++ b/src/vnet/devices/tap/cli.c @@ -133,12 +133,12 @@ tap_create_command_fn (vlib_main_t * vm, unformat_input_t * input, VLIB_CLI_COMMAND (tap_create_command, static) = { .path = "create tap", .short_help = "create tap {id } [hw-addr ] " - "[rx-ring-size ] [tx-ring-size ] [host-ns ] " - "[host-bridge ] [host-ip4-addr ] " - "[host-ip6-addr ] [host-ip4-gw ] " - "[host-ip6-gw ] [host-mac-addr ] " - "[host-if-name ] [host-mtu-size ] [no-gso|gso|csum-offload] " - "[persist] [attach] [tun]", + "[num-rx-queues ] [rx-ring-size ] [tx-ring-size ] " + "[host-ns ] [host-bridge ] " + "[host-ip4-addr ] [host-ip6-addr ] " + "[host-ip4-gw ] [host-ip6-gw ] " + "[host-mac-addr ] [host-if-name ] " + "[host-mtu-size ] [no-gso|gso|csum-offload] [persist] [attach] [tun]", .function = tap_create_command_fn, }; /* *INDENT-ON* */ -- cgit 1.2.3-korg