From patchwork Thu Dec 22 03:05:55 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ling, WeiX" X-Patchwork-Id: 121249 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 D900AA034C; Thu, 22 Dec 2022 04:14:35 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D475A40698; Thu, 22 Dec 2022 04:14:35 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 3D781400D7 for ; Thu, 22 Dec 2022 04:14:34 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1671678874; x=1703214874; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=IlLrGy9pMmTE9wb3VKViMjPtq+1EUip8kC3/N3fdWI0=; b=MnMU1kf5fV0zdLEikMRJiddKaSOr24X6U6bPjgnPOQduZu5SRh50rc8q YXtrp8pHpDpiTJnJ07tyBAkEyQXtuBgZz/nhATaGaKIN86OQCdUmIFoDG 1u8tfA87MmayvwSOg1iECnacnOBFad+FRKrAk2JsE5QTLYGKdL8tD8r1e 5U1qaQ/F1wA6lNEymD4LmGfNdgxNS0Zk/ZC8PXVlk+inabYpSN0ZvZklC YOai55nihqK/3dPkoayLX5RkKPuad92UsoqUSCouIavWErtrJx9GzzkOK 3dTAiDqw8EE7Hls9g5Eqxe5/wWPtL+jqOhQz0C+bOTGghAvea2sUI50zD Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10568"; a="321213297" X-IronPort-AV: E=Sophos;i="5.96,264,1665471600"; d="scan'208";a="321213297" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Dec 2022 19:14:32 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10568"; a="715013661" X-IronPort-AV: E=Sophos;i="5.96,264,1665471600"; d="scan'208";a="715013661" Received: from unknown (HELO localhost.localdomain) ([10.239.252.222]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Dec 2022 19:14:31 -0800 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Subject: [dts][PATCH V2] test_plans/virtio_event_idx_interrupt_cbdma_test_plan: fix testcase2&4 issue Date: Thu, 22 Dec 2022 11:05:55 +0800 Message-Id: <20221222030555.175017-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 testcase2&4 the following issue: 1)Missing the server parameter when start VM. 2)Missing the queues parameter when start VM. Signed-off-by: Wei Ling Acked-by: Lijuan Tu --- test_plans/virtio_event_idx_interrupt_cbdma_test_plan.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test_plans/virtio_event_idx_interrupt_cbdma_test_plan.rst b/test_plans/virtio_event_idx_interrupt_cbdma_test_plan.rst index d8694ad5..eed10893 100644 --- a/test_plans/virtio_event_idx_interrupt_cbdma_test_plan.rst +++ b/test_plans/virtio_event_idx_interrupt_cbdma_test_plan.rst @@ -118,8 +118,8 @@ vhost uses the asynchronous operations with CBDMA channels. -smp cores=1,sockets=1 -drive file=/home/osimg/ubuntu2004.img \ -monitor unix:/tmp/vm2_monitor.sock,server,nowait \ -device e1000,netdev=nttsip1 -netdev user,id=nttsip1,hostfwd=tcp:127.0.0.1:6000-:22 \ - -chardev socket,id=char1,path=./vhost-net \ - -netdev type=vhost-user,id=mynet1,chardev=char1,vhostforce \ + -chardev socket,id=char1,path=./vhost-net,server \ + -netdev type=vhost-user,id=mynet1,chardev=char1,vhostforce,queues=16 \ -device virtio-net-pci,mac=52:54:00:00:00:02,netdev=mynet1,mrg_rxbuf=on,csum=on,gso=on,guest_csum=on,host_tso4=on,guest_tso4=on,guest_ecn=on \ -vnc :11 -daemonize @@ -202,8 +202,8 @@ uses the asynchronous operations with CBDMA channels. -smp cores=1,sockets=1 -drive file=/home/osimg/ubuntu2004.img \ -monitor unix:/tmp/vm2_monitor.sock,server,nowait \ -device e1000,netdev=nttsip1 -netdev user,id=nttsip1,hostfwd=tcp:127.0.0.1:6000-:22 \ - -chardev socket,id=char1,path=./vhost-net \ - -netdev type=vhost-user,id=mynet1,chardev=char1,vhostforce \ + -chardev socket,id=char1,path=./vhost-net,server \ + -netdev type=vhost-user,id=mynet1,chardev=char1,vhostforce,queues=16 \ -device virtio-net-pci,mac=52:54:00:00:00:02,netdev=mynet1,mrg_rxbuf=on,csum=on,gso=on,guest_csum=on,host_tso4=on,guest_tso4=on,guest_ecn=on \ -vnc :11 -daemonize