From patchwork Thu Dec 22 03:10:09 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ling, WeiX" X-Patchwork-Id: 121250 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 71BF8A034C; Thu, 22 Dec 2022 04:18:50 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4F6DE40698; Thu, 22 Dec 2022 04:18:50 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 102DD400D7 for ; Thu, 22 Dec 2022 04:18:47 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1671679128; x=1703215128; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=UuItlKwv84q9VgRHBgg4Rkgs642Dtc7DmTRv5+yXqws=; b=iC3+hiaHuAghNSq7As27QoVKP9469ByWIbYdt/H6vB2ab2v91uzCB8Ys OXAd8l5wMCelR/SoFEVJNDe34WdfGdG9Y/S5AZg9ky1Jo/80oFdAMDACy X0zmfYZoQkXG0Qoh4CrJL3xoI1EdBIIbknbNJiEtRN+U8bqdaANr4frUv 6H9euAtxOejnEVtPUuch6ADbYtteivl1AlfAuCbW3D/m2tgzHxXv8pYa4 v5BAjEIFIR6uYfq0q1MqVVLQ2IZy6a7NarYQjNnmlBht3CgqTiWNg6OOO rtxGSJFO4YWcBpX6PGa7YBTC7WGWF5eduiS//S/dBeL6PF7zphfiNhnqj w==; X-IronPort-AV: E=McAfee;i="6500,9779,10568"; a="384381327" X-IronPort-AV: E=Sophos;i="5.96,264,1665471600"; d="scan'208";a="384381327" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Dec 2022 19:18:46 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10568"; a="825828095" X-IronPort-AV: E=Sophos;i="5.96,264,1665471600"; d="scan'208";a="825828095" Received: from unknown (HELO localhost.localdomain) ([10.239.252.222]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Dec 2022 19:18:44 -0800 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Subject: [dts][PATCH V1] test_plans/vhost_event_idx_interrupt_test_plan: fix lcore index error Date: Thu, 22 Dec 2022 11:10:09 +0800 Message-Id: <20221222031009.175142-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 Fix lcore index error in testcase2&3. Signed-off-by: Wei Ling Acked-by: Xingguang He Acked-by: Lijuan Tu --- test_plans/vhost_event_idx_interrupt_test_plan.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test_plans/vhost_event_idx_interrupt_test_plan.rst b/test_plans/vhost_event_idx_interrupt_test_plan.rst index cca91dae..18e66efb 100644 --- a/test_plans/vhost_event_idx_interrupt_test_plan.rst +++ b/test_plans/vhost_event_idx_interrupt_test_plan.rst @@ -126,10 +126,10 @@ Test Case 2: wake up split ring vhost-user cores with event idx interrupt mode 1 6. Check vhost related cores are waked up with l3fwd-power log, such as following:: - L3FWD_POWER: lcore 0 is waked up from rx interrupt on port 0 queue 0 + L3FWD_POWER: lcore 1 is waked up from rx interrupt on port 0 queue 0 ... ... - L3FWD_POWER: lcore 15 is waked up from rx interrupt on port 0 queue 15 + L3FWD_POWER: lcore 16 is waked up from rx interrupt on port 0 queue 15 Test Case 3: wake up split ring vhost-user cores by multi virtio-net in VMs with event idx interrupt mode ========================================================================================================= @@ -299,10 +299,10 @@ Test Case 5: wake up packed ring vhost-user cores with event idx interrupt mode 6. Check vhost related cores are waked up with l3fwd-power log, such as following:: - L3FWD_POWER: lcore 0 is waked up from rx interrupt on port 0 queue 0 + L3FWD_POWER: lcore 1 is waked up from rx interrupt on port 0 queue 0 ... ... - L3FWD_POWER: lcore 15 is waked up from rx interrupt on port 0 queue 15 + L3FWD_POWER: lcore 16 is waked up from rx interrupt on port 0 queue 15 Test Case 6: wake up packed ring vhost-user cores by multi virtio-net in VMs with event idx interrupt mode ==========================================================================================================