]> git.proxmox.com Git - mirror_ovs.git/commitdiff
upcall: reduce log level for "no reference to recirc flow" message
authorLance Richardson <lrichard@redhat.com>
Mon, 29 Aug 2016 21:06:13 +0000 (17:06 -0400)
committerJarno Rajahalme <jarno@ovn.org>
Tue, 30 Aug 2016 17:23:54 +0000 (10:23 -0700)
Reduce log level from "warn" to "debug" for "upcall: no reference to
recirc flow" log message.

Suggested-by: Jarno Rajahalme <jarno@ovn.org>
Signed-off-by: Lance Richardson <lrichard@redhat.com>
Acked-by: Jarno Rajahalme <jarno@ovn.org>
ofproto/ofproto-dpif-upcall.c

index 042a50a9f179091b1ef11a8e654ee465ae646127..e4473080ad659bf985987deaca21ebe511803be0 100644 (file)
@@ -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;
     }