From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hemant Agrawal Subject: Re: [RESEND v2 3/7] net/dpaa2: change into dynamic logging Date: Wed, 21 Mar 2018 12:01:04 +0530 Message-ID: <3c88da66-fb3b-e41c-471a-812f115c792f@codeaurora.org> References: <20180312092547.18472-1-shreyansh.jain@nxp.com> <20180313054431.19556-1-shreyansh.jain@nxp.com> <20180313054431.19556-4-shreyansh.jain@nxp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org, hemant.agrawal@nxp.com, nipun.gupta@nxp.com, akhil.goyal@nxp.com To: Shreyansh Jain , ferruh.yigit@intel.com Return-path: Received: from smtp.codeaurora.org (smtp.codeaurora.org [198.145.29.96]) by dpdk.org (Postfix) with ESMTP id BAB60AAB7 for ; Wed, 21 Mar 2018 07:31:11 +0100 (CET) In-Reply-To: <20180313054431.19556-4-shreyansh.jain@nxp.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi Shreyansh, On 3/13/2018 11:14 AM, Shreyansh Jain wrote: > Signed-off-by: Shreyansh Jain > --- > config/common_base | 5 - > config/defconfig_arm64-dpaa2-linuxapp-gcc | 9 - > doc/guides/nics/dpaa2.rst | 44 ++--- > drivers/net/dpaa2/Makefile | 6 - > drivers/net/dpaa2/base/dpaa2_hw_dpni.c | 30 ++-- > drivers/net/dpaa2/dpaa2_ethdev.c | 290 +++++++++++++++--------------- > drivers/net/dpaa2/dpaa2_pmd_logs.h | 41 +++++ > drivers/net/dpaa2/dpaa2_rxtx.c | 59 +++--- > 8 files changed, 258 insertions(+), 226 deletions(-) > create mode 100644 drivers/net/dpaa2/dpaa2_pmd_logs.h > > diff --git a/config/common_base b/config/common_base > index ad03cf433..64bdfbb73 100644 > --- a/config/common_base > +++ b/config/common_base > @@ -188,11 +188,6 @@ CONFIG_RTE_LIBRTE_DPAA2_USE_PHYS_IOVA=y > # Compile burst-oriented NXP DPAA2 PMD driver > # > CONFIG_RTE_LIBRTE_DPAA2_PMD=n > -CONFIG_RTE_LIBRTE_DPAA2_DEBUG_INIT=n > -CONFIG_RTE_LIBRTE_DPAA2_DEBUG_DRIVER=n See the comment in PATCH 2/7 w.r.t usages of DEBUG_DRIVER macro. > @@ -322,9 +322,9 @@ dpaa2_attach_bp_list(struct dpaa2_dev_priv *priv, > > retcode = dpni_set_pools(dpni, CMD_PRI_LOW, priv->token, &bpool_cfg); > if (retcode != 0) { > - PMD_INIT_LOG(ERR, "Error in attaching the buffer pool list" > - " bpid = %d Error code = %d\n", > - bpool_cfg.pools[0].dpbp_id, retcode); > + DPAA2_PMD_ERR("Error configuring buffer pool on interface." > + " bpid = %d error code = %d", > + bpool_cfg.pools[0].dpbp_id, retcode); Can you try to convert this and others into a single line message? Regards, Hemant