diff options
Diffstat (limited to 'src/plugins/af_xdp/cli.c')
-rw-r--r-- | src/plugins/af_xdp/cli.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/af_xdp/cli.c b/src/plugins/af_xdp/cli.c index 2f3deffaaee..660725813aa 100644 --- a/src/plugins/af_xdp/cli.c +++ b/src/plugins/af_xdp/cli.c @@ -40,6 +40,8 @@ af_xdp_create_command_fn (vlib_main_t * vm, unformat_input_t * input, vec_free (args.linux_ifname); vec_free (args.name); + vec_free (args.prog); + vec_free (args.netns); return args.error; } @@ -50,7 +52,7 @@ VLIB_CLI_COMMAND (af_xdp_create_command, static) = { .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] [no-syscall-lock]", + "[prog pathname] [netns ns] [zero-copy|no-zero-copy] [no-syscall-lock]", .function = af_xdp_create_command_fn, }; /* *INDENT-ON* */ |