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 EE3D24339F; Thu, 23 Nov 2023 02:12:54 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 73278402BD; Thu, 23 Nov 2023 02:12:54 +0100 (CET) Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) by mails.dpdk.org (Postfix) with ESMTP id 2613740041 for ; Thu, 23 Nov 2023 02:12:51 +0100 (CET) Received: from dggpeml500024.china.huawei.com (unknown [172.30.72.54]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4SbKpP5phgzWgnN; Thu, 23 Nov 2023 09:12:13 +0800 (CST) Received: from [10.67.121.161] (10.67.121.161) by dggpeml500024.china.huawei.com (7.185.36.10) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.35; Thu, 23 Nov 2023 09:12:48 +0800 Subject: Re: [PATCH v8 2/4] app/dma-perf: add PCI device support To: Gowrishankar Muthukrishnan , CC: , Cheng Jiang , Kevin Laatz , Bruce Richardson , Pavan Nikhilesh , Amit Prakash Shukla References: <899120d1bf9b775fd2db1abf724950b1ee2509a7.1700650397.git.gmuthukrishn@marvell.com> From: fengchengwen Message-ID: <31bf7ae7-8973-c20a-211d-c9f83e1e08f6@huawei.com> Date: Thu, 23 Nov 2023 09:12:48 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 In-Reply-To: <899120d1bf9b775fd2db1abf724950b1ee2509a7.1700650397.git.gmuthukrishn@marvell.com> Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.67.121.161] X-ClientProxiedBy: dggems704-chm.china.huawei.com (10.3.19.181) To dggpeml500024.china.huawei.com (7.185.36.10) X-CFilter-Loop: Reflected 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 Acked-by: Chengwen Feng On 2023/11/22 19:06, Gowrishankar Muthukrishnan wrote: > From: Amit Prakash Shukla > > Add support to test performance for "device to memory" and > "memory to device" data transfer. > > Signed-off-by: Amit Prakash Shukla > Acked-by: Anoob Joseph > --- > app/test-dma-perf/benchmark.c | 108 +++++++++++++++++++++++++++++++--- > app/test-dma-perf/config.ini | 37 ++++++++++++ > app/test-dma-perf/main.c | 67 +++++++++++++++++++++ > app/test-dma-perf/main.h | 6 ++ > 4 files changed, 209 insertions(+), 9 deletions(-) > ...