From f715b33f10028b1601e2be88c7eeb938a371016a Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Wed, 12 Jan 2022 11:13:24 +0100 Subject: [PATCH] dpdk: use blunt force to skip irrelevant and confusing logs Type: improvement Change-Id: I2cd37f0c1a1ed33438bfa4b7590e5609e5094fc8 Signed-off-by: Damjan Marion --- src/plugins/dpdk/device/init.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/plugins/dpdk/device/init.c b/src/plugins/dpdk/device/init.c index 3b0ce193baa..da7a12367ff 100644 --- a/src/plugins/dpdk/device/init.c +++ b/src/plugins/dpdk/device/init.c @@ -1025,7 +1025,19 @@ dpdk_log_read_ready (clib_file_t * uf) while (unformat_user (&input, unformat_line, &line)) { - dpdk_log_notice ("%v", line); + int skip = 0; + vec_add1 (line, 0); + + /* unfortunatelly DPDK polutes log with this error messages + * even when we pass --in-memory which means no secondary process */ + if (strstr ((char *) line, "WARNING! Base virtual address hint")) + skip = 1; + else if (strstr ((char *) line, "This may cause issues with mapping " + "memory into secondary processes")) + skip = 1; + vec_pop (line); + if (!skip) + dpdk_log_notice ("%v", line); vec_free (line); } -- 2.16.6