Fix NSH-LISP interface addition 57/5157/2
authorFlorin Coras <fcoras@cisco.com>
Wed, 15 Feb 2017 22:16:26 +0000 (14:16 -0800)
committerDamjan Marion <dmarion.lists@gmail.com>
Thu, 16 Feb 2017 16:21:22 +0000 (16:21 +0000)
Change-Id: I3925d2ebb2d26c676fc61f118d25bdf7fd522f26
Signed-off-by: Florin Coras <fcoras@cisco.com>
src/vnet/lisp-gpe/interface.c

index d12dc36..d2664a4 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,21 +880,6 @@ 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);
 }