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 C0F10A04B1; Thu, 27 Aug 2020 03:15:37 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B98FB1C0B8; Thu, 27 Aug 2020 03:15:08 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 3B63F1C08E for ; Thu, 27 Aug 2020 03:15:02 +0200 (CEST) IronPort-SDR: wlpsEDUoMln/llfOeOAQRfFvG3JbqtacmzQXH1yh6Rb4c08hWIeLfhk4iVN1HoZUl6avuDg+v8 m2y2pl7eY4Mg== X-IronPort-AV: E=McAfee;i="6000,8403,9725"; a="153827005" X-IronPort-AV: E=Sophos;i="5.76,357,1592895600"; d="scan'208";a="153827005" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Aug 2020 18:15:01 -0700 IronPort-SDR: r1iTrj4FjgXDnXd3Ko481UzXTtZ1cjjJFfaSCDBuglkBUkI50yHSQnhw8iQfieb1pLG1xW6too bSnFAMiLwWng== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,357,1592895600"; d="scan'208";a="313066122" Received: from intel-npg-odc-srv01.cd.intel.com ([10.240.178.136]) by orsmga002.jf.intel.com with ESMTP; 26 Aug 2020 18:14:59 -0700 From: SteveX Yang To: dev@dpdk.org Cc: qiming.yang@intel.com, jingjing.wu@intel.com, beilei.xing@intel.com, SteveX Yang Date: Thu, 27 Aug 2020 01:14:10 +0000 Message-Id: <20200827011410.18401-7-stevex.yang@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200827011410.18401-1-stevex.yang@intel.com> References: <20200811075910.20954-1-stevex.yang@intel.com> <20200827011410.18401-1-stevex.yang@intel.com> Subject: [dpdk-dev] [PATCH v2 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