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 ABE00456AC; Thu, 25 Jul 2024 19:48:54 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6EEEE436A5; Thu, 25 Jul 2024 19:48:54 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 77D5143551; Thu, 25 Jul 2024 19:48:52 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.18.1.2/8.18.1.2) with ESMTP id 46P9poli030785; Thu, 25 Jul 2024 10:48:51 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:message-id :mime-version:subject:to; s=pfpt0220; bh=mIuGyjJhRFNM+Y4fI4TSsc2 Clu9FmhlDohEtmntgFPA=; b=ARo01sLfv7KyYt8XAVyFtdI/C3riyUCsKy8ekzW XejNq+bcXvGi2xw0fV+WrAZ1lxYDsHIKQ+MwouqiaQy0xqei04nzW4UNXfPPYF/e poL5Fp11xn6sxHjP4j0AMvVYCo8/xOb1xoNpnkfFMYmnJLU2cnpxUvI7L5Q4wtRO IuEsLb8OLroxzkMlPVmzy0cEG/qWKMIklEQVCJ6c6wts1Ua1prRwa3RDOPRnTxRH knNeq84qecrfn9Ceo5NeXC6BCMi42+9h3+Kdb5ZTDgZ037f6uXnTC91kkV0Cox/I OP6cfqqA9rhOxMdqRx4QJ+SThWlMi05/fRaP+XBMhwSSmRw== Received: from dc6wp-exch02.marvell.com ([4.21.29.225]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 40kmeu1uf4-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 25 Jul 2024 10:48:51 -0700 (PDT) Received: from DC6WP-EXCH02.marvell.com (10.76.176.209) by DC6WP-EXCH02.marvell.com (10.76.176.209) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Thu, 25 Jul 2024 10:48:20 -0700 Received: from maili.marvell.com (10.69.176.80) by DC6WP-EXCH02.marvell.com (10.76.176.209) with Microsoft SMTP Server id 15.2.1544.4 via Frontend Transport; Thu, 25 Jul 2024 10:48:20 -0700 Received: from cavium-OptiPlex-5090-BM14.. (unknown [10.28.36.157]) by maili.marvell.com (Postfix) with ESMTP id 9C5125E686B; Thu, 25 Jul 2024 10:48:17 -0700 (PDT) From: Amit Prakash Shukla To: Cheng Jiang , Chengwen Feng , Yuan Wang , Anoob Joseph , Jiayu Hu CC: , , , "Amit Prakash Shukla" , Subject: [PATCH] doc: fix dma perf typo Date: Thu, 25 Jul 2024 23:17:56 +0530 Message-ID: <20240725174756.2074703-1-amitprakashs@marvell.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: SHxlzDTEnEDQsm50x3Lw9moeagcm6v90 X-Proofpoint-ORIG-GUID: SHxlzDTEnEDQsm50x3Lw9moeagcm6v90 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.293,Aquarius:18.0.1039,Hydra:6.0.680,FMLib:17.12.28.16 definitions=2024-07-25_16,2024-07-25_03,2024-05-17_01 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 Fixing typo in command line arguments for dma perf application. Fixes: 623dc9364dc6 ("app/dma-perf: introduce DMA performance test") Cc: stable@dpdk.org Signed-off-by: Amit Prakash Shukla --- doc/guides/tools/dmaperf.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/tools/dmaperf.rst b/doc/guides/tools/dmaperf.rst index 6f85fceb8a..f68353b920 100644 --- a/doc/guides/tools/dmaperf.rst +++ b/doc/guides/tools/dmaperf.rst @@ -119,7 +119,7 @@ Typical command-line invocation to execute the application: .. code-block:: console - dpdk-test-dma-perf --config=./config_dma.ini --result=./res_dma.csv + dpdk-test-dma-perf --config ./config_dma.ini --result ./res_dma.csv Where ``config_dma.ini`` is the configuration file, and ``res_dma.csv`` will be the generated result file. -- 2.34.1