ikev2: add support for custom ipsec-over-udp port
[vpp.git] / src / vnet / l2 / l2_patch.c
index 54286c2..fb8849d 100644 (file)
@@ -49,9 +49,13 @@ format_l2_patch_trace (u8 * s, va_list * args)
   return s;
 }
 
-static l2_patch_main_t l2_patch_main;
+#ifndef CLIB_MARCH_VARIANT
+l2_patch_main_t l2_patch_main;
+#else
+extern l2_patch_main_t l2_patch_main;
+#endif
 
-static vlib_node_registration_t l2_patch_node;
+extern vlib_node_registration_t l2_patch_node;
 
 #define foreach_l2_patch_error                 \
 _(PATCHED, "L2 patch packets")                 \
@@ -204,7 +208,7 @@ VLIB_NODE_FN (l2_patch_node) (vlib_main_t * vm,
 }
 
 /* *INDENT-OFF* */
-VLIB_REGISTER_NODE (l2_patch_node, static) = {
+VLIB_REGISTER_NODE (l2_patch_node) = {
   .name = "l2-patch",
   .vector_size = sizeof (u32),
   .format_trace = format_l2_patch_trace,