From patchwork Wed Sep 7 03:12:05 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ling, WeiX" X-Patchwork-Id: 115998 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4C42EA0542; Wed, 7 Sep 2022 05:17:17 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 47023400D6; Wed, 7 Sep 2022 05:17:17 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id CB70440042 for ; Wed, 7 Sep 2022 05:17:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1662520636; x=1694056636; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=i8L2J7cEmZjgqPkQvBL9lS3LW/T6+SUbwHqyfujG/V4=; b=UXNwMaj4P8vBz53Rx5OsZI1LuiDPhfT4ZPFNQ2lEAEfdOI3vs8PrVFoN BhpH1D03nMU0cFePPWbeAYdHFgWZZ/MWHJYCwKXFzzOU7f5pdifyWm56/ FHN1TiQ+OVEVLKsi1UZg7HCGCrW8HIakF5dqkcLs+EfdecBLxihdZMnKU YN8GKdLh8qa384PHl9gl+pWXkDQDXN3QtBMwMaPrdZMsvFzTd+v1ZG1pJ 62tUchdYzDflf9ytvgpFOtwiC2ZnTycIIFQ8yRm3qUA8rMcCzm60m4CBw BKos9eoK4OexTVR7SpY8opC99uuBIyUGMIRD22ov8+Pr0oZxj7zwNH2H4 g==; X-IronPort-AV: E=McAfee;i="6500,9779,10462"; a="360713072" X-IronPort-AV: E=Sophos;i="5.93,295,1654585200"; d="scan'208";a="360713072" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Sep 2022 20:17:15 -0700 X-IronPort-AV: E=Sophos;i="5.93,295,1654585200"; d="scan'208";a="591517645" Received: from unknown (HELO localhost.localdomain) ([10.239.252.222]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Sep 2022 20:17:08 -0700 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Subject: [PATCH V1] test_plans/*: fix the bind CBDMA device command error Date: Tue, 6 Sep 2022 23:12:05 -0400 Message-Id: <20220907031205.1128565-1-weix.ling@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Signed-off-by: Wei Ling Acked-by: Lijuan Tu Acked-by: Xingguang He --- test_plans/vhost_cbdma_test_plan.rst | 2 +- test_plans/vm2vm_virtio_net_perf_cbdma_test_plan.rst | 2 +- test_plans/vm2vm_virtio_pmd_cbdma_test_plan.rst | 2 +- test_plans/vm2vm_virtio_user_cbdma_test_plan.rst | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test_plans/vhost_cbdma_test_plan.rst b/test_plans/vhost_cbdma_test_plan.rst index 308fc2a0..0b7af0ea 100644 --- a/test_plans/vhost_cbdma_test_plan.rst +++ b/test_plans/vhost_cbdma_test_plan.rst @@ -88,7 +88,7 @@ Common steps For example, Bind 1 NIC port and 2 CBDMA devices:: ./usertools/dpdk-devbind.py -b vfio-pci 0000:00:18.0 - ./usertools/dpdk-devbind.py -b vfio-pci 0000:00:04.0,0000:00:04.1 + ./usertools/dpdk-devbind.py -b vfio-pci 0000:00:04.0 0000:00:04.1 2. Send tcp imix packets [64,1518] to NIC by traffic generator:: diff --git a/test_plans/vm2vm_virtio_net_perf_cbdma_test_plan.rst b/test_plans/vm2vm_virtio_net_perf_cbdma_test_plan.rst index d200ede3..60036743 100644 --- a/test_plans/vm2vm_virtio_net_perf_cbdma_test_plan.rst +++ b/test_plans/vm2vm_virtio_net_perf_cbdma_test_plan.rst @@ -76,7 +76,7 @@ Common steps # ./usertools/dpdk-devbind.py -b vfio-pci For example, Bind 1 NIC port and 2 CBDMA channels: - # ./usertools/dpdk-devbind.py -b vfio-pci 0000:00:04.0,0000:00:04.1 + # ./usertools/dpdk-devbind.py -b vfio-pci 0000:00:04.0 0000:00:04.1 Test Case 1: VM2VM virtio-net split ring CBDMA enable test with tcp traffic --------------------------------------------------------------------------- diff --git a/test_plans/vm2vm_virtio_pmd_cbdma_test_plan.rst b/test_plans/vm2vm_virtio_pmd_cbdma_test_plan.rst index d8fabe3f..480f02b9 100644 --- a/test_plans/vm2vm_virtio_pmd_cbdma_test_plan.rst +++ b/test_plans/vm2vm_virtio_pmd_cbdma_test_plan.rst @@ -74,7 +74,7 @@ Common steps For example, Bind 1 NIC port and 2 CBDMA channels:: # ./usertools/dpdk-devbind.py -b vfio-pci 0000:00:18.0 - # ./usertools/dpdk-devbind.py -b vfio-pci 0000:00:04.0,0000:00:04.1 + # ./usertools/dpdk-devbind.py -b vfio-pci 0000:00:04.0 0000:00:04.1 2. On VM1 and VM2, bind virtio device(for example,0000:00:05.0) with vfio-pci driver:: diff --git a/test_plans/vm2vm_virtio_user_cbdma_test_plan.rst b/test_plans/vm2vm_virtio_user_cbdma_test_plan.rst index 8fd170f9..caf1a96b 100644 --- a/test_plans/vm2vm_virtio_user_cbdma_test_plan.rst +++ b/test_plans/vm2vm_virtio_user_cbdma_test_plan.rst @@ -74,7 +74,7 @@ Common steps # ./usertools/dpdk-devbind.py -b vfio-pci For example, 2 CBDMA channels: - # ./usertools/dpdk-devbind.py -b vfio-pci 0000:00:04.0,0000:00:04.1 + # ./usertools/dpdk-devbind.py -b vfio-pci 0000:00:04.0 0000:00:04.1 Test Case 1: VM2VM split ring non-mergeable path multi-queues payload check with cbdma enable ---------------------------------------------------------------------------------------------