From: Neale Ranns Date: Tue, 19 Feb 2019 14:33:14 +0000 (-0800) Subject: IPSEC-GRE: no clib_warning in the DP X-Git-Tag: v19.04-rc1~456 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;ds=sidebyside;h=558d872231e0e7b5cad9c0c570583aa34746e0df;p=vpp.git IPSEC-GRE: no clib_warning in the DP Change-Id: If30c7334de55d32e57554cf1601c529cd807b834 Signed-off-by: Neale Ranns --- 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; }