Rename LISP GPE API to GPE
[vpp.git] / src / vnet / lisp-gpe / interface.c
index d12dc36..2142e09 100644 (file)
@@ -833,6 +833,22 @@ lisp_gpe_add_del_iface_command_fn (vlib_main_t * vm, unformat_input_t * input,
        }
     }
 
+  if (nsh_iface)
+    {
+      if (is_add)
+       {
+         if (~0 == lisp_gpe_add_nsh_iface (&lisp_gpe_main))
+           {
+             return clib_error_return (0, "NSH interface not created");
+           }
+       }
+      else
+       {
+         lisp_gpe_del_nsh_iface (&lisp_gpe_main);
+       }
+      return (NULL);
+    }
+
   if (vrf_is_set && bd_index_is_set)
     return clib_error_return (0,
                              "Cannot set both vrf and brdige domain index!");
@@ -864,28 +880,13 @@ lisp_gpe_add_del_iface_command_fn (vlib_main_t * vm, unformat_input_t * input,
        lisp_gpe_tenant_l3_iface_unlock (vni);
     }
 
-  if (nsh_iface)
-    {
-      if (is_add)
-       {
-         if (~0 == lisp_gpe_add_nsh_iface (&lisp_gpe_main))
-           {
-             return clib_error_return (0, "NSH interface not created");
-           }
-         else
-           {
-             lisp_gpe_del_nsh_iface (&lisp_gpe_main);
-           }
-       }
-    }
-
   return (NULL);
 }
 
 /* *INDENT-OFF* */
 VLIB_CLI_COMMAND (add_del_lisp_gpe_iface_command, static) = {
-  .path = "lisp gpe iface",
-  .short_help = "lisp gpe iface add/del vni <vni> vrf <vrf>",
+  .path = "gpe iface",
+  .short_help = "gpe iface add/del vni <vni> vrf <vrf>",
   .function = lisp_gpe_add_del_iface_command_fn,
 };
 /* *INDENT-ON* */