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 EDA6F4339F; Thu, 23 Nov 2023 02:14:52 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B1042402BD; Thu, 23 Nov 2023 02:14:52 +0100 (CET) Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) by mails.dpdk.org (Postfix) with ESMTP id 4AFDA40041 for ; Thu, 23 Nov 2023 02:14:51 +0100 (CET) Received: from dggpeml500024.china.huawei.com (unknown [172.30.72.57]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4SbKmT6l2GzPpXc; Thu, 23 Nov 2023 09:10:33 +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:14:49 +0800 Subject: Re: [PATCH v8 3/4] app/dma-perf: validate copied memory To: Gowrishankar Muthukrishnan , CC: , Cheng Jiang , Kevin Laatz , Bruce Richardson , Pavan Nikhilesh , Amit Prakash Shukla References: From: fengchengwen Message-ID: Date: Thu, 23 Nov 2023 09:14:49 +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: Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.67.121.161] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) 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: > Validate copied memory to ensure DMA copy did not fail. > > Signed-off-by: Gowrishankar Muthukrishnan > Acked-by: Anoob Joseph > --- > app/test-dma-perf/benchmark.c | 21 ++++++++++++++++++++- > app/test-dma-perf/main.c | 16 +++++++++++----- > app/test-dma-perf/main.h | 2 +- > 3 files changed, 32 insertions(+), 7 deletions(-) > ...