From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 74595C433F5 for ; Mon, 6 Sep 2021 13:37:23 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 0B8F8606A5 for ; Mon, 6 Sep 2021 13:37:22 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 0B8F8606A5 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5BE5F410EF; Mon, 6 Sep 2021 15:37:22 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 90DC2410ED for ; Mon, 6 Sep 2021 15:37:20 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10099"; a="305532734" X-IronPort-AV: E=Sophos;i="5.85,272,1624345200"; d="scan'208";a="305532734" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Sep 2021 06:37:19 -0700 X-IronPort-AV: E=Sophos;i="5.85,272,1624345200"; d="scan'208";a="537043969" Received: from bricha3-mobl.ger.corp.intel.com ([10.252.3.77]) by fmsmga003-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 06 Sep 2021 06:37:16 -0700 Date: Mon, 6 Sep 2021 14:37:13 +0100 From: Bruce Richardson To: Chengwen Feng Cc: thomas@monjalon.net, ferruh.yigit@intel.com, jerinj@marvell.com, jerinjacobk@gmail.com, andrew.rybchenko@oktetlabs.ru, dev@dpdk.org, mb@smartsharesystems.com, nipun.gupta@nxp.com, hemant.agrawal@nxp.com, maxime.coquelin@redhat.com, honnappa.nagarahalli@arm.com, david.marchand@redhat.com, sburla@marvell.com, pkapoor@marvell.com, konstantin.ananyev@intel.com, conor.walsh@intel.com, kevin.laatz@intel.com Message-ID: References: <1625231891-2963-1-git-send-email-fengchengwen@huawei.com> <20210904101027.43252-1-fengchengwen@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210904101027.43252-1-fengchengwen@huawei.com> Subject: Re: [dpdk-dev] [PATCH v20 0/7] support dmadev 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 Sat, Sep 04, 2021 at 06:10:20PM +0800, Chengwen Feng wrote: > This patch set contains seven patch for new add dmadev. > > Chengwen Feng (7): > dmadev: introduce DMA device library public APIs > dmadev: introduce DMA device library internal header > dmadev: introduce DMA device library PMD header > dmadev: introduce DMA device library implementation > doc: add DMA device library guide > dma/skeleton: introduce skeleton dmadev driver > app/test: add dmadev API test > > --- > v20: > * delete unnecessary and duplicate include header files. > * the conf_sz parameter is added to the configure and vchan-setup > callbacks of the PMD, this is mainly used to enhance ABI > compatibility. > * the rte_dmadev structure field is rearranged to reserve more space > for I/O functions. > * fix some ambiguous and unnecessary comments. > * fix the potential memory leak of ut. > * redefine skeldma_init_once to skeldma_count. > * suppress rte_dmadev error output when execute ut. Thanks for V20, those I've checked look like some good changes. /Bruce