From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id D5AB3A04C5; Fri, 4 Sep 2020 09:46:59 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8B5DE1C11F; Fri, 4 Sep 2020 09:46:18 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 335191C11C for ; Fri, 4 Sep 2020 09:46:16 +0200 (CEST) IronPort-SDR: sc2FL1ucvE3btCq5xR4mO8FmKe7frEPEUayYO8xcZMeeC4RzXE8OItBDKJulqQkzAmrmB1bo2Z eRa8TeVHOEiQ== X-IronPort-AV: E=McAfee;i="6000,8403,9733"; a="145407681" X-IronPort-AV: E=Sophos;i="5.76,388,1592895600"; d="scan'208";a="145407681" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Sep 2020 00:46:15 -0700 IronPort-SDR: GXup9MrMzA6ljfDkSuVnp9UhAGJtknWn6AEbHU0/iluhGGvZ/n5HchvrcVK6x9Myg32FRFLwX6 8VbDQBXOUTBQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,388,1592895600"; d="scan'208";a="315770077" Received: from intel-npg-odc-srv01.cd.intel.com ([10.240.178.136]) by orsmga002.jf.intel.com with ESMTP; 04 Sep 2020 00:46:14 -0700 From: SteveX Yang To: dev@dpdk.org Cc: qiming.yang@intel.com, jingjing.wu@intel.com, beilei.xing@intel.com, SteveX Yang Date: Fri, 4 Sep 2020 07:29:07 +0000 Message-Id: <20200904072907.10648-7-stevex.yang@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200904072907.10648-1-stevex.yang@intel.com> References: <20200827011410.18401-1-stevex.yang@intel.com> <20200904072907.10648-1-stevex.yang@intel.com> Subject: [dpdk-dev] [PATCH v3 6/6] net/iavf: downgrade error log X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" When receiving the unsupported AQ messages, it's taken as an error. It's not appropriate and triggers too much unnecessary print. Fixes: 22b123a36d07 ("net/avf: initialize PMD") Signed-off-by: SteveX Yang --- drivers/net/iavf/iavf_vchnl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/iavf/iavf_vchnl.c b/drivers/net/iavf/iavf_vchnl.c index 614ea7e79..06eaae0e4 100644 --- a/drivers/net/iavf/iavf_vchnl.c +++ b/drivers/net/iavf/iavf_vchnl.c @@ -266,7 +266,7 @@ iavf_handle_virtchnl_msg(struct rte_eth_dev *dev) } break; default: - PMD_DRV_LOG(ERR, "Request %u is not supported yet", + PMD_DRV_LOG(DEBUG, "Request %u is not supported yet", aq_opc); break; } -- 2.17.1