[ovs-dev] [PATCH v2] upcall: reduce log level for "no reference to recirc flow" message

Lance Richardson lrichard at redhat.com
Mon Aug 29 21:06:13 UTC 2016


Reduce log level from "warn" to "debug" for "upcall: no reference to
recirc flow" log message.

Suggested-by: Jarno Rajahalme <jarno at ovn.org>
Signed-off-by: Lance Richardson <lrichard at redhat.com>
---
v2: Instead of ignoring log message in system-traffic.at, reduce level
    so it no longer appears in the log. 

 ofproto/ofproto-dpif-upcall.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ofproto/ofproto-dpif-upcall.c b/ofproto/ofproto-dpif-upcall.c
index 042a50a..e447308 100644
--- a/ofproto/ofproto-dpif-upcall.c
+++ b/ofproto/ofproto-dpif-upcall.c
@@ -1147,7 +1147,7 @@ should_install_flow(struct udpif *udpif, struct upcall *upcall)
     if (upcall->type != DPIF_UC_MISS) {
         return false;
     } else if (upcall->recirc && !upcall->have_recirc_ref) {
-        VLOG_WARN_RL(&rl, "upcall: no reference for recirc flow");
+        VLOG_DBG_RL(&rl, "upcall: no reference for recirc flow");
         return false;
     }
 
-- 
2.5.5




More information about the dev mailing list