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 54A42426DE; Sat, 7 Oct 2023 11:32:49 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2A4AE4029C; Sat, 7 Oct 2023 11:32:49 +0200 (CEST) Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) by mails.dpdk.org (Postfix) with ESMTP id C258A40293 for ; Sat, 7 Oct 2023 11:32:47 +0200 (CEST) Received: from dggpeml100024.china.huawei.com (unknown [172.30.72.57]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4S2g3h729jzVlZL; Sat, 7 Oct 2023 17:29:20 +0800 (CST) Received: from [10.67.121.161] (10.67.121.161) by dggpeml100024.china.huawei.com (7.185.36.115) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.31; Sat, 7 Oct 2023 17:32:44 +0800 Subject: Re: [PATCH v3 2/2] test/dma: add source buffer offload free test To: Amit Prakash Shukla , Kevin Laatz , Bruce Richardson CC: , , , , , , , , , , References: <20230926121747.4037154-1-amitprakashs@marvell.com> <20230928115031.259592-1-amitprakashs@marvell.com> <20230928115031.259592-3-amitprakashs@marvell.com> From: fengchengwen Message-ID: <86c51f45-a2cd-cb86-5da6-e381804734d9@huawei.com> Date: Sat, 7 Oct 2023 17:32:44 +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: <20230928115031.259592-3-amitprakashs@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: dggems702-chm.china.huawei.com (10.3.19.179) To dggpeml100024.china.huawei.com (7.185.36.115) 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 Hi Amit, On 2023/9/28 19:50, Amit Prakash Shukla wrote: > Add a test case to validate the functionality of drivers' dma > source buffer offload free. As part of dmadev_autotest, test case > will be executed only if the driver supports source buffer offload > free and if the test is exported by env variable DPDK_ADD_DMA_TEST. Why should under control by the env variable? > > Signed-off-by: Amit Prakash Shukla > --- > app/test/test_dmadev.c | 166 ++++++++++++++++++++++++++++++++++++++++- > 1 file changed, 165 insertions(+), 1 deletion(-) > ...