From patchwork Mon Aug 29 21:06:13 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lance Richardson X-Patchwork-Id: 663832 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from archives.nicira.com (archives.nicira.com [96.126.127.54]) by ozlabs.org (Postfix) with ESMTP id 3sNPMc2GzHz9s9G for ; Tue, 30 Aug 2016 07:06:19 +1000 (AEST) Received: from archives.nicira.com (localhost [127.0.0.1]) by archives.nicira.com (Postfix) with ESMTP id 4671D10543; Mon, 29 Aug 2016 14:06:18 -0700 (PDT) X-Original-To: dev@openvswitch.org Delivered-To: dev@openvswitch.org Received: from mx1e4.cudamail.com (mx1.cudamail.com [69.90.118.67]) by archives.nicira.com (Postfix) with ESMTPS id 4D3E510302 for ; Mon, 29 Aug 2016 14:06:17 -0700 (PDT) Received: from bar5.cudamail.com (unknown [192.168.21.12]) by mx1e4.cudamail.com (Postfix) with ESMTPS id AF48C1E0165 for ; Mon, 29 Aug 2016 15:06:16 -0600 (MDT) X-ASG-Debug-ID: 1472504775-09eadd27910a990001-byXFYA Received: from mx1-pf1.cudamail.com ([192.168.24.1]) by bar5.cudamail.com with ESMTP id zj8h3GlKgenwmlO5 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Mon, 29 Aug 2016 15:06:15 -0600 (MDT) X-Barracuda-Envelope-From: lrichard@redhat.com X-Barracuda-RBL-Trusted-Forwarder: 192.168.24.1 Received: from unknown (HELO mx1.redhat.com) (209.132.183.28) by mx1-pf1.cudamail.com with ESMTPS (DHE-RSA-AES256-SHA encrypted); 29 Aug 2016 21:06:15 -0000 Received-SPF: pass (mx1-pf1.cudamail.com: SPF record at _spf1.redhat.com designates 209.132.183.28 as permitted sender) X-Barracuda-Apparent-Source-IP: 209.132.183.28 X-Barracuda-RBL-IP: 209.132.183.28 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id A905C747 for ; Mon, 29 Aug 2016 21:06:14 +0000 (UTC) Received: from thinkcentre.nc.rr.com (vpn-61-153.rdu2.redhat.com [10.10.61.153]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u7TL6Epv029726 for ; Mon, 29 Aug 2016 17:06:14 -0400 X-CudaMail-Envelope-Sender: lrichard@redhat.com From: Lance Richardson To: dev@openvswitch.org X-CudaMail-Whitelist-To: dev@openvswitch.org X-CudaMail-MID: CM-E1-828066912 X-CudaMail-DTE: 082916 X-CudaMail-Originating-IP: 209.132.183.28 Date: Mon, 29 Aug 2016 17:06:13 -0400 X-ASG-Orig-Subj: [##CM-E1-828066912##][PATCH v2] upcall: reduce log level for "no reference to recirc flow" message Message-Id: <1472504773-24447-1-git-send-email-lrichard@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Mon, 29 Aug 2016 21:06:14 +0000 (UTC) X-Barracuda-Connect: UNKNOWN[192.168.24.1] X-Barracuda-Start-Time: 1472504775 X-Barracuda-Encrypted: ECDHE-RSA-AES256-GCM-SHA384 X-Barracuda-URL: https://web.cudamail.com:443/cgi-mod/mark.cgi X-ASG-Whitelist: Header =?UTF-8?B?eFwtY3VkYW1haWxcLXdoaXRlbGlzdFwtdG8=?= X-Virus-Scanned: by bsmtpd at cudamail.com X-Barracuda-BRTS-Status: 1 Subject: [ovs-dev] [PATCH v2] upcall: reduce log level for "no reference to recirc flow" message X-BeenThere: dev@openvswitch.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dev-bounces@openvswitch.org Sender: "dev" Reduce log level from "warn" to "debug" for "upcall: no reference to recirc flow" log message. Suggested-by: Jarno Rajahalme Signed-off-by: Lance Richardson Acked-by: Jarno Rajahalme --- 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; }