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 1D2DF45507; Thu, 27 Jun 2024 07:52:30 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0B656402E6; Thu, 27 Jun 2024 07:52:30 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.8]) by mails.dpdk.org (Postfix) with ESMTP id 031504028A for ; Thu, 27 Jun 2024 07:52:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1719467548; x=1751003548; h=from:to:subject:date:message-id:mime-version: content-transfer-encoding; bh=r2okvzMpPb3de7I3UNtIb67wSyp/xc4bYza8LfraqxI=; b=jz3ti0O7bleCULmDtp6XC0QW3/q21TfKLpkWJHn/S04kD12gQ7HlpA6S QN3mraac55hjEWTiJhrAkAyop74WZ0Bi8TJSdPD7Gr2N66GX5UbxlY/TN nqBAnmp/ys1vTCgkGNGcFIiDox7pWBbc+Le2pOytszo0+WhqST94hxnS7 oitgA/2vmoMxuVMo8/h4qSp4qH3PeQPEWAq/qGY+E1TVahkm6VFwLvy66 KuUGsCOqzwjqt8RKKDGuxI29td387559RFbDS+SnpRtqPm0rN72S2rR09 djJO/guhFuh+qQl+q+O8VI9YcPgre6Bh0pns8fBKUUEomFg4kEmwpzAFr g==; X-CSE-ConnectionGUID: bvic3re/QYuJzK28NffkWg== X-CSE-MsgGUID: mIVspg85RX2dA5cP8/NfPg== X-IronPort-AV: E=McAfee;i="6700,10204,11115"; a="34107078" X-IronPort-AV: E=Sophos;i="6.08,269,1712646000"; d="scan'208";a="34107078" Received: from orviesa002.jf.intel.com ([10.64.159.142]) by fmvoesa102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Jun 2024 22:52:27 -0700 X-CSE-ConnectionGUID: pPl7QaVCQkSZgccrz9iZ5w== X-CSE-MsgGUID: yAomRe3KQGiPpcipPApwmA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,269,1712646000"; d="scan'208";a="75024198" Received: from npg-npf-wlpr-srv02.iind.intel.com (HELO npg-npfwlpr-srv02..) ([10.145.170.184]) by orviesa002.jf.intel.com with ESMTP; 26 Jun 2024 22:52:26 -0700 From: Shaiq Wani To: dev@dpdk.org Subject: [PATCH] app/dma-perf: documentation update of DMA perf for idxd Date: Thu, 27 Jun 2024 05:34:04 +0000 Message-Id: <20240627053404.3049609-1-shaiq.wani@intel.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 Added a note to avoid usage errors by end user. Signed-off-by: Shaiq Wani --- app/test-dma-perf/config.ini | 3 +++ doc/guides/tools/dmaperf.rst | 1 + 2 files changed, 4 insertions(+) diff --git a/app/test-dma-perf/config.ini b/app/test-dma-perf/config.ini index a1222ae86c..5008103979 100644 --- a/app/test-dma-perf/config.ini +++ b/app/test-dma-perf/config.ini @@ -61,6 +61,9 @@ ; If you do not specify a result file, one will be generated with the same name as the configuration ; file, with the addition of "_result.csv" at the end. +; Note: For idxd device (Device 0b25), add queue_id (lcore_dma=lcore10@0000:00:04.2-q0) + + [case1] type=DMA_MEM_COPY mem_size=10 diff --git a/doc/guides/tools/dmaperf.rst b/doc/guides/tools/dmaperf.rst index 6f85fceb8a..c97810a66d 100644 --- a/doc/guides/tools/dmaperf.rst +++ b/doc/guides/tools/dmaperf.rst @@ -104,6 +104,7 @@ Configuration Parameters .. note:: The mapping of lcore to DMA must be one-to-one and cannot be duplicated. + For idxd device (Device 0b25), add queue_id (lcore_dma=lcore10@0000:00:04.2-q0) ``lcore`` Specifies the lcore for CPU testing. -- 2.34.1