aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNeale Ranns <nranns@cisco.com>2019-02-19 06:33:14 -0800
committerDamjan Marion <dmarion@me.com>2019-02-20 09:05:24 +0000
commit558d872231e0e7b5cad9c0c570583aa34746e0df (patch)
treea6a351c261bdc7685c77c1479abe9614c66fa363 /src
parentfd9d04d820bcc360d11444acbd919b1995923b33 (diff)
IPSEC-GRE: no clib_warning in the DP
Change-Id: If30c7334de55d32e57554cf1601c529cd807b834 Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src')
-rw-r--r--src/vnet/ipsec-gre/node.c3
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;
}