From 558d872231e0e7b5cad9c0c570583aa34746e0df Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Tue, 19 Feb 2019 06:33:14 -0800 Subject: [PATCH] IPSEC-GRE: no clib_warning in the DP Change-Id: If30c7334de55d32e57554cf1601c529cd807b834 Signed-off-by: Neale Ranns --- src/vnet/ipsec-gre/node.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/vnet/ipsec-gre/node.c b/src/vnet/ipsec-gre/node.c index 217d323ad65..6a5536eceb9 100644 --- a/src/vnet/ipsec-gre/node.c +++ b/src/vnet/ipsec-gre/node.c @@ -168,7 +168,6 @@ ipsec_gre_input (vlib_main_t * vm, } else { - clib_warning("unknown GRE protocol: %d", protocol0); b0->error = node->errors[IPSEC_GRE_ERROR_UNKNOWN_PROTOCOL]; next0 = IPSEC_GRE_INPUT_NEXT_DROP; } @@ -179,7 +178,6 @@ ipsec_gre_input (vlib_main_t * vm, } else { - clib_warning("unknown GRE protocol: %d", protocol1); b1->error = node->errors[IPSEC_GRE_ERROR_UNKNOWN_PROTOCOL]; next1 = IPSEC_GRE_INPUT_NEXT_DROP; } @@ -324,7 +322,6 @@ drop1: } else { - clib_warning("unknown GRE protocol: %d", protocol0); b0->error = node->errors[IPSEC_GRE_ERROR_UNKNOWN_PROTOCOL]; next0 = IPSEC_GRE_INPUT_NEXT_DROP; } -- 2.16.6