diff options
author | Andrew Yourtchenko <ayourtch@gmail.com> | 2024-09-19 13:29:54 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@0xa5.net> | 2024-09-19 14:32:09 +0000 |
commit | 2fb8d2f96d9df0657d21b411d9cc803c0e994530 (patch) | |
tree | 7a30ce888cb99c008799e546898048babcba7406 | |
parent | 33e1243a4c8fcd07282dd1c7b7b27d904dcd0b2e (diff) |
pvti: remove clib_warning at init time
Type: fix
Change-Id: I62ccd96ea3549205510ff53118eab1fa3613d009
Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
-rw-r--r-- | src/plugins/pvti/pvti.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/plugins/pvti/pvti.c b/src/plugins/pvti/pvti.c index 524eabc6f3f..646276dec09 100644 --- a/src/plugins/pvti/pvti.c +++ b/src/plugins/pvti/pvti.c @@ -428,7 +428,6 @@ VNET_FEATURE_INIT (pvti6_bypass, static) = { static clib_error_t * pvti_early_config (vlib_main_t *vm, unformat_input_t *input) { - clib_warning ("early config pvti"); u8 *runs_before = 0; int rbi = 0; if (vec_len (vnet_feat_pvti4_bypass.runs_before) == 0) @@ -463,7 +462,6 @@ pvti_init (vlib_main_t *vm) { pvti_main_t *pmp = &pvti_main; clib_error_t *error = 0; - clib_warning ("pvti init"); pmp->vlib_main = vm; pmp->vnet_main = vnet_get_main (); |