From c587c1bb0bb476fc599879f28a16a21632223be9 Mon Sep 17 00:00:00 2001 From: Ilya Maximets Date: Wed, 20 Feb 2019 15:47:29 +0300 Subject: [PATCH] dpif-netdev: Reduce log level for not found mark id. It's a normal case for 'find' function, especially because this happens for every first packet of flow that was not offloaded yet. Should not warn about this. Dropped to DBG to avoid log trashing in case of big number of new flows. CC: Yuanhan Liu Fixes: 241bad15d99a ("dpif-netdev: associate flow with a mark id") Acked-by: Flavio Leitner Signed-off-by: Ilya Maximets Signed-off-by: 0-day Robot --- lib/dpif-netdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c index 77ac1d2c19a..5b023f045b4 100644 --- a/lib/dpif-netdev.c +++ b/lib/dpif-netdev.c @@ -2183,8 +2183,8 @@ megaflow_to_mark_find(const ovs_u128 *mega_ufid) } } - VLOG_WARN("Mark id for ufid "UUID_FMT" was not found\n", - UUID_ARGS((struct uuid *)mega_ufid)); + VLOG_DBG("Mark id for ufid "UUID_FMT" was not found\n", + UUID_ARGS((struct uuid *)mega_ufid)); return INVALID_FLOW_MARK; }