ip: fix path MTU node errors definition 00/33700/3
authorBenoît Ganne <bganne@cisco.com>
Thu, 9 Sep 2021 09:58:28 +0000 (11:58 +0200)
committerDamjan Marion <dmarion@me.com>
Thu, 7 Oct 2021 15:22:57 +0000 (15:22 +0000)
The path mtu node uses errors defined by ip fragmentation.

Type: fix

Change-Id: I1f173955919a4f555ab0309cd8201ec342a0ae92
Signed-off-by: Benoît Ganne <bganne@cisco.com>
src/vnet/ip/ip_frag.c
src/vnet/ip/ip_frag.h
src/vnet/ip/ip_path_mtu_node.c

index cafa9a6..b9bc90d 100644 (file)
@@ -502,7 +502,7 @@ ip6_frag_do_fragment (vlib_main_t * vm, u32 from_bi, u16 mtu,
   return IP_FRAG_ERROR_NONE;
 }
 
-static char *ip4_frag_error_strings[] = {
+char *ip4_frag_error_strings[] = {
 #define _(sym,string) string,
   foreach_ip_frag_error
 #undef _
index 86462e6..ac562c9 100644 (file)
@@ -76,6 +76,8 @@ typedef enum
     IP_FRAG_N_ERROR,
 } ip_frag_error_t;
 
+extern char *ip4_frag_error_strings[];
+
 void ip_frag_set_vnet_buffer (vlib_buffer_t * b, u16 mtu,
                              u8 next_index, u8 flags);
 
index b13f9de..33be4bb 100644 (file)
@@ -176,7 +176,8 @@ VLIB_REGISTER_NODE (ip4_ip_pmtu_dpo_node) = {
   .name = "ip4-pmtu-dpo",
   .vector_size = sizeof (u32),
   .format_trace = format_ip_pmtu_trace,
-  .n_errors = 0,
+  .n_errors = IP_FRAG_N_ERROR,
+  .error_strings = ip4_frag_error_strings,
   .n_next_nodes = IP_PMTU_N_NEXT,
   .next_nodes =
   {
@@ -187,7 +188,8 @@ VLIB_REGISTER_NODE (ip6_ip_pmtu_dpo_node) = {
   .name = "ip6-pmtu-dpo",
   .vector_size = sizeof (u32),
   .format_trace = format_ip_pmtu_trace,
-  .n_errors = 0,
+  .n_errors = IP_FRAG_N_ERROR,
+  .error_strings = ip4_frag_error_strings,
   .n_next_nodes = IP_PMTU_N_NEXT,
   .next_nodes =
   {