From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 09512A0567; Wed, 10 Mar 2021 13:35:36 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 83DDA4068C; Wed, 10 Mar 2021 13:35:36 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 9943640687 for ; Wed, 10 Mar 2021 13:35:34 +0100 (CET) IronPort-SDR: FbCiaXy3gf9Nyg7lKS7QPOb4LiagHFJtfFV8RZmVdEGmWrEk58omDwUDfPsD0aFQOspdFic9Nq aYoUZ/CtkkNg== X-IronPort-AV: E=McAfee;i="6000,8403,9917"; a="175559628" X-IronPort-AV: E=Sophos;i="5.81,237,1610438400"; d="scan'208";a="175559628" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Mar 2021 04:35:33 -0800 IronPort-SDR: JdvIhXt7gy8rzW87GMLB8iRSw2Z8SQ2SdICn8Bte1KLKu8Q9hbUXFcvN18pX7I/xzOkTdNX0MO pb1wRATu/S2Q== X-IronPort-AV: E=Sophos;i="5.81,237,1610438400"; d="scan'208";a="509649898" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.209.124]) ([10.213.209.124]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Mar 2021 04:35:31 -0800 To: Qi Zhang Cc: dev@dpdk.org, xiao.w.wang@intel.com, jingjing.wu@intel.com, beilei.xing@intel.com, jia.guo@intel.com, qiming.yang@intel.com, haiyue.wang@intel.comi References: <20210310121626.2019863-1-qi.z.zhang@intel.com> From: Ferruh Yigit X-User: ferruhy Message-ID: Date: Wed, 10 Mar 2021 12:35:27 +0000 MIME-Version: 1.0 In-Reply-To: <20210310121626.2019863-1-qi.z.zhang@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH 0/8] ether: refine debug compile option X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" On 3/10/2021 12:16 PM, Qi Zhang wrote: > PMDs use RTE_LIBRTE__DEBUG_RX|TX as compile option to wrap > data path debug code. As .config has been removed since the meson build, > It is not friendly for new DPDK users to notice those debug options. > > Patch 1/8: introduces new compile options for specific Rx/Tx data path > debug in ether layer, so PMD can choose to reuse them to avoid maintain > their own. > > - RTE_LIBRTE_ETHDEV_DEBUG_RX > - RTE_LIBRTE_ETHDEV_DEBUG_TX > +1 to have common flag and documentation > Patch 2/8 - 8/8: refine all the compile option for Intel PMDs. > > Qi Zhang (8): > ether: refine debug compile option > net/fm10k: refine debug compile option > net/e1000: refine debug compile option > net/i40e: refine debug compile option > net/iavf: refine debug compile option > net/ice: refine debug compile option > net/ixgbe: refine debug compile option > net/igc: refine debug compile option <...>