diff options
author | Benoît Ganne <bganne@cisco.com> | 2020-09-15 15:25:43 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-10-24 09:39:54 +0000 |
commit | d4e109138279fcfbfce9d82384f0fa53b8f43ae1 (patch) | |
tree | bba5b6edb7a74ad9da8d443b225cd61d2128b664 /src/plugins/af_xdp/cli.c | |
parent | 18f0e312f73b5b27748ef229be11da9c4ee1bc1b (diff) |
af_xdp: add option to claim all available rx queues
Type: feature
Change-Id: I97176c2c90ea664a68078b3a7b7d44eb237a7f13
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src/plugins/af_xdp/cli.c')
-rw-r--r-- | src/plugins/af_xdp/cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/af_xdp/cli.c b/src/plugins/af_xdp/cli.c index 5fe7c2ef399..d5f21d4c391 100644 --- a/src/plugins/af_xdp/cli.c +++ b/src/plugins/af_xdp/cli.c @@ -47,7 +47,7 @@ af_xdp_create_command_fn (vlib_main_t * vm, unformat_input_t * input, /* *INDENT-OFF* */ VLIB_CLI_COMMAND (af_xdp_create_command, static) = { .path = "create interface af_xdp", - .short_help = "create interface af_xdp <host-if linux-ifname> [name ifname] [rx-queue-size size] [tx-queue-size size] [num-rx-queues num] [prog pathname] [zero-copy|no-zero-copy]", + .short_help = "create interface af_xdp <host-if linux-ifname> [name ifname] [rx-queue-size size] [tx-queue-size size] [num-rx-queues <num|all>] [prog pathname] [zero-copy|no-zero-copy]", .function = af_xdp_create_command_fn, }; /* *INDENT-ON* */ |