diff options
author | Neale Ranns <nranns@cisco.com> | 2019-02-19 06:33:14 -0800 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-02-20 09:05:24 +0000 |
commit | 558d872231e0e7b5cad9c0c570583aa34746e0df (patch) | |
tree | a6a351c261bdc7685c77c1479abe9614c66fa363 | |
parent | fd9d04d820bcc360d11444acbd919b1995923b33 (diff) |
IPSEC-GRE: no clib_warning in the DP
Change-Id: If30c7334de55d32e57554cf1601c529cd807b834
Signed-off-by: Neale Ranns <nranns@cisco.com>
-rw-r--r-- | src/vnet/ipsec-gre/node.c | 3 |
1 files changed, 0 insertions, 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; } |