tap: print the interface name on cli when created 18/20418/4
authorMohsin Kazmi <sykazmi@cisco.com>
Mon, 1 Jul 2019 08:26:43 +0000 (10:26 +0200)
committerDamjan Marion <dmarion@me.com>
Wed, 24 Jul 2019 12:03:30 +0000 (12:03 +0000)
Type: feature

Change-Id: If11f00574322c35c1780c31d5f7b47d30e083e35
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
src/vnet/devices/tap/cli.c
src/vnet/devices/tap/tap.c

index c74d24a..5bf38a3 100644 (file)
@@ -40,6 +40,7 @@ tap_create_command_fn (vlib_main_t * vm, unformat_input_t * input,
 
   args.id = ~0;
   args.tap_flags = 0;
+  args.rv = -1;
 
   /* Get a line of input. */
   if (unformat_user (input, unformat_line_input, line_input))
@@ -103,6 +104,10 @@ tap_create_command_fn (vlib_main_t * vm, unformat_input_t * input,
 
   tap_create_if (vm, &args);
 
+  if (!args.rv)
+    vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
+                    vnet_get_main (), args.sw_if_index);
+
   vec_free (args.host_if_name);
   vec_free (args.host_namespace);
   vec_free (args.host_bridge);
index 974a417..6c6d2ca 100644 (file)
@@ -441,6 +441,7 @@ tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args)
   sw = vnet_get_hw_sw_interface (vnm, vif->hw_if_index);
   vif->sw_if_index = sw->sw_if_index;
   args->sw_if_index = vif->sw_if_index;
+  args->rv = 0;
   hw = vnet_get_hw_interface (vnm, vif->hw_if_index);
   hw->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_INT_MODE;
   if (args->tap_flags & TAP_FLAG_GSO)