From patchwork Thu Aug 4 01:45:56 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ling, WeiX" X-Patchwork-Id: 114594 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 675F6A00C5; Thu, 4 Aug 2022 03:51:45 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6133C4282B; Thu, 4 Aug 2022 03:51:45 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 41CCE4068E for ; Thu, 4 Aug 2022 03:51:43 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1659577903; x=1691113903; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=IlgLU0keRWN4H8fpjcynk6B78FmnT73QdjPuiB7x9Do=; b=ZIJh5si9GD9qpfUsI/05tBkXZfLfCdsQUSCPTnVsu98lPbh7UiYO3dEL mwJ4vvyz+NPJ+hOKaS2u/6eqyRWHSZbopjNgTt+tybYSe03wqdDdicXd2 SAZyeAGstO1QLUU5R3pQiQLKr4ZmXI/auJqN0B8uG0VkYGoyG7aB/pcE6 wuVfG+fvy3P+Dmc0ehLUe29bSQHMIfdXMaOV8cw3Ct5mStPIbMkzHLJxf RZBwjEq97XIUf1ft4joGuW8vnz8fE9KrtLBGwgA4wa3KUTirwLY5H5Bsh Rjk7SArsAcrfwL6cZQTm6McdhVBU/J/2a9i77lLcf9C6z707XBD2B2p8A g==; X-IronPort-AV: E=McAfee;i="6400,9594,10428"; a="288574230" X-IronPort-AV: E=Sophos;i="5.93,214,1654585200"; d="scan'208,223";a="288574230" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Aug 2022 18:51:42 -0700 X-IronPort-AV: E=Sophos;i="5.93,214,1654585200"; d="scan'208,223";a="631381764" Received: from unknown (HELO localhost.localdomain) ([10.239.252.222]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Aug 2022 18:51:41 -0700 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Subject: [dts][PATCH V3 2/2] tests/vhost_virtio_user_interrupt_cbdma: modify testsuite to test virtio dequeue Date: Wed, 3 Aug 2022 21:45:56 -0400 Message-Id: <20220804014556.1146015-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 From DPDK-22.07, virtio support async dequeue for split and packed ring path, so modify vhost_virtio_user_interrupt_cbdma testsuite to test the split and packed ring async dequeue feature. Signed-off-by: Wei Ling --- ...Suite_vhost_virtio_user_interrupt_cbdma.py | 86 ++++++++++--------- 1 file changed, 45 insertions(+), 41 deletions(-) diff --git a/tests/TestSuite_vhost_virtio_user_interrupt_cbdma.py b/tests/TestSuite_vhost_virtio_user_interrupt_cbdma.py index a89ae5d7..ce26b968 100644 --- a/tests/TestSuite_vhost_virtio_user_interrupt_cbdma.py +++ b/tests/TestSuite_vhost_virtio_user_interrupt_cbdma.py @@ -31,11 +31,11 @@ class TestVirtioUserInterruptCbdma(TestCase): self.core_list = self.dut.get_core_list( self.core_config, socket=self.ports_socket ) - self.core_list_vhost = self.core_list[0:2] - self.core_list_l3fwd = self.core_list[2:4] - self.core_mask_vhost = utils.create_mask(self.core_list_vhost) - self.core_mask_l3fwd = utils.create_mask(self.core_list_l3fwd) - self.core_mask_virtio = self.core_mask_l3fwd + self.vhost_core_list = self.core_list[0:2] + self.l3fwd_core_list = self.core_list[2:4] + self.core_mask_vhost = utils.create_mask(self.vhost_core_list) + self.l3fwd_core_mask = utils.create_mask(self.l3fwd_core_list) + self.virtio_core_mask = self.l3fwd_core_mask self.pci_info = self.dut.ports_info[0]["pci"] self.cbdma_dev_infos = [] self.dmas_info = None @@ -78,14 +78,14 @@ class TestVirtioUserInterruptCbdma(TestCase): return True if out == "2048" else False def launch_l3fwd(self, path, packed=False): - self.core_interrupt = self.core_list_l3fwd[0] + self.core_interrupt = self.l3fwd_core_list[0] example_para = "./%s " % self.app_l3fwd_power_path if not packed: vdev = "virtio_user0,path=%s,cq=1" % path else: vdev = "virtio_user0,path=%s,cq=1,packed_vq=1" % path eal_params = self.dut.create_eal_parameters( - cores=self.core_list_l3fwd, prefix="l3fwd-pwd", no_pci=True, vdevs=[vdev] + cores=self.l3fwd_core_list, prefix="l3fwd-pwd", no_pci=True, vdevs=[vdev] ) if self.check_2M_env: eal_params += " --single-file-segments" @@ -171,21 +171,21 @@ class TestVirtioUserInterruptCbdma(TestCase): 60, ) - def test_lsc_event_between_vhost_user_and_virtio_user_with_split_ring_and_cbdma_enabled( + def test_split_ring_lsc_event_between_vhost_user_and_virtio_user_with_cbdma_enable( self, ): """ - Test Case1: LSC event between vhost-user and virtio-user with split ring and cbdma enabled + Test Case1: Split ring LSC event between vhost-user and virtio-user with cbdma enable """ - self.get_cbdma_ports_info_and_bind_to_dpdk(1) - lcore_dma = "[lcore{}@{}]".format(self.core_list_vhost[1], self.cbdma_list[0]) - vhost_param = "--lcore-dma={}".format(lcore_dma) + self.get_cbdma_ports_info_and_bind_to_dpdk(cbdma_num=1) + lcore_dma = "lcore%s@%s" % (self.vhost_core_list[1], self.cbdma_list[0]) + vhost_param = "--lcore-dma=[%s]" % lcore_dma vhost_eal_param = ( - "--vdev 'net_vhost0,iface=vhost-net,queues=1,client=0,dmas=[txq0]'" + "--vdev 'net_vhost0,iface=vhost-net,queues=1,client=0,dmas=[txq0;rxq0]'" ) ports = self.cbdma_list self.vhost_pmd.start_testpmd( - cores=self.core_list_vhost, + cores=self.vhost_core_list, ports=ports, prefix="vhost", eal_param=vhost_eal_param, @@ -198,7 +198,7 @@ class TestVirtioUserInterruptCbdma(TestCase): "--vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net" ) self.virtio_pmd.start_testpmd( - cores=self.core_list_l3fwd, + cores=self.l3fwd_core_list, no_pci=True, prefix="virtio", eal_param=virtio_eal_param, @@ -210,26 +210,28 @@ class TestVirtioUserInterruptCbdma(TestCase): self.vhost_pmd.quit() self.check_virtio_side_link_status("down") - def test_split_ring_virtio_user_interrupt_test_with_vhost_user_as_backend_and_cbdma_enabled( + def test_split_ring_virtio_user_interrupt_test_with_vhost_user_as_backend_and_cbdma_enable( self, ): """ - Test Case2: Split ring virtio-user interrupt test with vhost-user as backend and cbdma enabled + Test Case2: Split ring virtio-user interrupt test with vhost-user as backend and cbdma enable """ - self.get_cbdma_ports_info_and_bind_to_dpdk(2) - lcore_dma = "[lcore{}@{},lcore{}@{}]".format( - self.core_list_vhost[1], + self.get_cbdma_ports_info_and_bind_to_dpdk(cbdma_num=2) + lcore_dma = "lcore%s@%s,lcore%s@%s" % ( + self.vhost_core_list[1], self.cbdma_list[0], - self.core_list_vhost[1], + self.vhost_core_list[1], self.cbdma_list[1], ) - vhost_param = "--rxq=1 --txq=1 --lcore-dma={}".format(lcore_dma) - vhost_eal_param = "--vdev 'net_vhost0,iface=vhost-net,queues=1,dmas=[txq0]'" + vhost_param = "--rxq=1 --txq=1 --lcore-dma=[%s]" % lcore_dma + vhost_eal_param = ( + "--vdev 'net_vhost0,iface=vhost-net,queues=1,dmas=[txq0;rxq0]'" + ) ports = self.cbdma_list ports.append(self.dut.ports_info[0]["pci"]) self.logger.info(ports) self.vhost_pmd.start_testpmd( - cores=self.core_list_vhost, + cores=self.vhost_core_list, ports=ports, prefix="vhost", eal_param=vhost_eal_param, @@ -249,21 +251,21 @@ class TestVirtioUserInterruptCbdma(TestCase): time.sleep(3) self.check_interrupt_log(status="waked up") - def test_lsc_event_between_vhost_user_and_virtio_user_with_packed_ring_and_cbdma_enabled( + def test_packed_ring_lsc_event_between_vhost_user_and_virtio_user_with_cbdma_enable( self, ): """ - Test Case3: LSC event between vhost-user and virtio-user with packed ring and cbdma enabled + Test Case3: Packed ring LSC event between vhost-user and virtio-user with cbdma enable """ - self.get_cbdma_ports_info_and_bind_to_dpdk(1) - lcore_dma = "[lcore{}@{}]".format(self.core_list_vhost[1], self.cbdma_list[0]) - vhost_param = "--lcore-dma={}".format(lcore_dma) + self.get_cbdma_ports_info_and_bind_to_dpdk(cbdma_num=1) + lcore_dma = "lcore%s@%s" % (self.vhost_core_list[1], self.cbdma_list[0]) + vhost_param = "--lcore-dma=[%s]" % lcore_dma vhost_eal_param = ( - "--vdev 'net_vhost0,iface=vhost-net,queues=1,client=0,dmas=[txq0]'" + "--vdev 'net_vhost0,iface=vhost-net,queues=1,client=0,dmas=[txq0;rxq0]'" ) ports = self.cbdma_list self.vhost_pmd.start_testpmd( - cores=self.core_list_vhost, + cores=self.vhost_core_list, ports=ports, prefix="vhost", eal_param=vhost_eal_param, @@ -276,7 +278,7 @@ class TestVirtioUserInterruptCbdma(TestCase): "--vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,packed_vq=1" ) self.virtio_pmd.start_testpmd( - cores=self.core_list_l3fwd, + cores=self.l3fwd_core_list, no_pci=True, prefix="virtio", eal_param=virtio_eal_param, @@ -288,25 +290,27 @@ class TestVirtioUserInterruptCbdma(TestCase): self.vhost_pmd.quit() self.check_virtio_side_link_status("down") - def test_packed_ring_virtio_user_interrupt_test_with_vhost_user_as_backend_and_cbdma_enabled( + def test_packed_ring_virtio_user_interrupt_test_with_vhost_user_as_backend_and_cbdma_enable( self, ): """ - Test Case4: Packed ring virtio-user interrupt test with vhost-user as backend and cbdma enabled + Test Case4: Packed ring virtio-user interrupt test with vhost-user as backend and cbdma enable """ - self.get_cbdma_ports_info_and_bind_to_dpdk(2) - lcore_dma = "[lcore{}@{},lcore{}@{}]".format( - self.core_list_vhost[1], + self.get_cbdma_ports_info_and_bind_to_dpdk(cbdma_num=2) + lcore_dma = "lcore%s@%s,lcore%s@%s" % ( + self.vhost_core_list[1], self.cbdma_list[0], - self.core_list_vhost[1], + self.vhost_core_list[1], self.cbdma_list[1], ) - vhost_param = "--rxq=1 --txq=1 --lcore-dma={}".format(lcore_dma) - vhost_eal_param = "--vdev 'net_vhost0,iface=vhost-net,queues=1,dmas=[txq0]'" + vhost_param = "--rxq=1 --txq=1 --lcore-dma=[%s]" % lcore_dma + vhost_eal_param = ( + "--vdev 'net_vhost0,iface=vhost-net,queues=1,dmas=[txq0;rxq0]'" + ) ports = self.cbdma_list ports.append(self.dut.ports_info[0]["pci"]) self.vhost_pmd.start_testpmd( - cores=self.core_list_vhost, + cores=self.vhost_core_list, ports=ports, prefix="vhost", eal_param=vhost_eal_param,