test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V2] tests/pvp_multi_paths_vhost_single_core_performance:remove vectorized=0 by default in test case 9 and optimize code
@ 2021-03-10  9:35 Ling Wei
  2021-03-10  9:37 ` Ling, WeiX
  2021-03-15  7:02 ` Tu, Lijuan
  0 siblings, 2 replies; 3+ messages in thread
From: Ling Wei @ 2021-03-10  9:35 UTC (permalink / raw)
  To: dts; +Cc: Ling Wei

Remove vectorized=0 by default in test case 9 and 
use pmd.start_testpmd() to replace session.send_expect() 
to start and quit testpmd.

Signed-off-by: Ling Wei <weix.ling@intel.com>
---
 ...lti_paths_vhost_single_core_performance.py | 44 +++++++++----------
 1 file changed, 20 insertions(+), 24 deletions(-)

diff --git a/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py b/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py
index d0e075c8..d26b2719 100644
--- a/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py
+++ b/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py
@@ -43,6 +43,7 @@ from packet import Packet
 from pktgen import PacketGeneratorHelper
 from settings import UPDATE_EXPECTED, load_global_setting
 from copy import deepcopy
+from pmd_output import PmdOutput
 
 
 class TestPVPMultiPathVhostPerformance(TestCase):
@@ -67,8 +68,10 @@ class TestPVPMultiPathVhostPerformance(TestCase):
             self.tester.send_expect('mkdir -p %s' % self.out_path, '# ')
         # create an instance to set stream field setting
         self.pktgen_helper = PacketGeneratorHelper()
-        self.vhost_user = self.dut.new_session(suite="user")
-        self.vhost = self.dut.new_session(suite="vhost")
+        self.vhost_user = self.dut.new_session(suite="vhost-user")
+        self.virtio_user0 = self.dut.new_session(suite="virtio-user0")
+        self.vhost_user_pmd = PmdOutput(self.dut, self.vhost_user)
+        self.virtio_user0_pmd = PmdOutput(self.dut, self.virtio_user0)
         self.save_result_flag = True
         self.json_obj = {}
         self.path=self.dut.apps_name['test-pmd']
@@ -160,33 +163,26 @@ class TestPVPMultiPathVhostPerformance(TestCase):
         self.dut.send_expect("rm -rf ./vhost-net*", "#")
         self.dut.send_expect("killall -s INT %s" % self.testpmd_name , "#")
         self.dut.send_expect("killall -s INT qemu-system-x86_64", "#")
-        eal_param = self.dut.create_eal_parameters(cores=self.core_list_host, prefix='vhost',
-                                                   no_pci=True,
-                                                   vdevs=['net_vhost0,iface=vhost-net,queues=1'])
-        command_line_client =self.path + eal_param + \
-                    " -- -i --nb-cores=1 --txd=%d --rxd=%d" % (self.nb_desc, self.nb_desc)
-        self.vhost.send_expect(command_line_client, "testpmd> ", 120)
-        self.vhost.send_expect("set fwd mac", "testpmd> ", 120)
-        self.vhost.send_expect("start", "testpmd> ", 120)
+        vdevs = ['net_vhost0,iface=vhost-net,queues=1']
+        param = "--nb-cores=1 --txd=%d --rxd=%d" % (self.nb_desc, self.nb_desc)
+        self.vhost_user_pmd.start_testpmd(cores=self.core_list_host, param=param, vdevs=vdevs, no_pci=True, prefix="vhost")
+        self.vhost_user_pmd.execute_cmd("set fwd mac")
+        self.vhost_user_pmd.execute_cmd("start")
 
     def start_virtio_testpmd(self, args):
         """
         start testpmd on virtio
         """
-        eal_param = self.dut.create_eal_parameters(cores=self.core_list_user, prefix='virtio',
-                                                    ports=[0],
-                                                   vdevs=['virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=1,%s' %
-                                                          args["version"]])
+        eal_param = ""
         if self.check_2M_env:
             eal_param += " --single-file-segments"
         if 'virtio11_vectorized' in self.running_case:
             eal_param += " --force-max-simd-bitwidth=512"
-        command_line_user = self.path + eal_param + \
-                            " -- -i %s --nb-cores=2 --txd=%d --rxd=%d" % \
-                            (args["path"], self.nb_desc, self.nb_desc)
-        self.vhost_user.send_expect(command_line_user, "testpmd> ", 120)
-        self.vhost_user.send_expect("set fwd io", "testpmd> ", 120)
-        self.vhost_user.send_expect("start", "testpmd> ", 120)
+        vdevs = ['net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=1,%s' % args["version"]]
+        param = "%s --rss-ip --nb-cores=2 --txd=%d --rxd=%d" % (args["path"], self.nb_desc, self.nb_desc)
+        self.virtio_user0_pmd.start_testpmd(cores=self.core_list_user, eal_param=eal_param, param=param, vdevs=vdevs, ports=[0], prefix='virtio')
+        self.virtio_user0_pmd.execute_cmd("set fwd mac")
+        self.virtio_user0_pmd.execute_cmd("start")
 
     def handle_expected(self):
         """
@@ -287,15 +283,15 @@ class TestPVPMultiPathVhostPerformance(TestCase):
         """
         close all testpmd of vhost and virtio
         """
-        self.vhost.send_expect("quit", "#", 60)
-        self.vhost_user.send_expect("quit", "#", 60)
+        self.vhost_user_pmd.quit()
+        self.virtio_user0_pmd.quit()
 
     def close_all_session(self):
         """
         close all session of vhost and vhost-user
         """
         self.dut.close_session(self.vhost_user)
-        self.dut.close_session(self.vhost)
+        self.dut.close_session(self.virtio_user0)
 
     def test_perf_vhost_single_core_virtio11_mergeable(self):
         """
@@ -354,7 +350,7 @@ class TestPVPMultiPathVhostPerformance(TestCase):
         """
         self.test_target = self.running_case
         self.expected_throughput = self.get_suite_cfg()['expected_throughput'][self.test_target]
-        virtio_pmd_arg = {"version": "in_order=1,packed_vq=1,mrg_rxbuf=0,vectorized=0",
+        virtio_pmd_arg = {"version": "in_order=1,packed_vq=1,mrg_rxbuf=0",
                             "path": "--enable-hw-vlan-strip --rss-ip"}
         self.start_vhost_testpmd()
         self.start_virtio_testpmd(virtio_pmd_arg)
-- 
2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V2] tests/pvp_multi_paths_vhost_single_core_performance:remove vectorized=0 by default in test case 9 and optimize code
  2021-03-10  9:35 [dts] [PATCH V2] tests/pvp_multi_paths_vhost_single_core_performance:remove vectorized=0 by default in test case 9 and optimize code Ling Wei
@ 2021-03-10  9:37 ` Ling, WeiX
  2021-03-15  7:02 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Ling, WeiX @ 2021-03-10  9:37 UTC (permalink / raw)
  To: dts

[-- Attachment #1: Type: text/plain, Size: 371 bytes --]

> -----Original Message-----
> From: Ling, WeiX <weix.ling@intel.com>
> Sent: Wednesday, March 10, 2021 05:35 PM
> To: dts@dpdk.org
> Cc: Ling, WeiX <weix.ling@intel.com>
> Subject: [dts][PATCH V2]
> tests/pvp_multi_paths_vhost_single_core_performance:remove
> vectorized=0 by default in test case 9 and optimize code

Tested-by: Wei Ling <weix.ling@intel.com>

[-- Attachment #2: TestPVPMultiPathVhostPerformance.log --]
[-- Type: application/octet-stream, Size: 431577 bytes --]

10/03/2021 16:10:37                            dts: 
TEST SUITE : TestPVPMultiPathVhostPerformance
10/03/2021 16:10:37                            dts: NIC :        fortville_spirit
10/03/2021 16:10:37             dut.10.240.183.214: 
10/03/2021 16:10:37                         tester: 
10/03/2021 16:10:37                         tester: ls -d /tmp
10/03/2021 16:10:37                         tester: /tmp
10/03/2021 16:10:41             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
10/03/2021 16:10:41             dut.10.240.183.214: 2048
10/03/2021 16:10:41 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_inorder_mergeable Begin
10/03/2021 16:10:41             dut.10.240.183.214: 
10/03/2021 16:10:41                         tester: 
10/03/2021 16:10:41             dut.10.240.183.214: rm -rf ./vhost.out
10/03/2021 16:10:41             dut.10.240.183.214: 
10/03/2021 16:10:41             dut.10.240.183.214: rm -rf ./vhost-net*
10/03/2021 16:10:41             dut.10.240.183.214: 
10/03/2021 16:10:41             dut.10.240.183.214: killall -s INT dpdk-testpmd 
10/03/2021 16:10:41             dut.10.240.183.214: dpdk-testpmd: no process found
10/03/2021 16:10:41             dut.10.240.183.214: killall -s INT qemu-system-x86_64
10/03/2021 16:10:41             dut.10.240.183.214: qemu-system-x86_64: no process found
10/03/2021 16:10:52             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
10/03/2021 16:10:52             dut.10.240.183.214: 2048
10/03/2021 16:11:03 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
10/03/2021 16:11:03                         tester: ls -d /tmp
10/03/2021 16:11:03                         tester: /tmp
10/03/2021 16:11:03                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:11:04                         pktgen: test port 0 map gen port 0
10/03/2021 16:11:04                         pktgen: test port 0 map gen port 0
10/03/2021 16:11:04                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:11:04                         pktgen: trex port <0> not support flow control
10/03/2021 16:11:04                         pktgen: check the trex port link status
10/03/2021 16:11:04                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:11:04                         pktgen: begin traffic ......
10/03/2021 16:11:04                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:11:14                         pktgen: begin get port statistic ...
10/03/2021 16:11:14                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:11:14                         pktgen: {0: {'ibytes': 5826069248,
     'ierrors': 0,
     'ipackets': 91032332,
     'obytes': 17438855616,
     'oerrors': 0,
     'opackets': 272482158,
     'rx_bps': 4648940032.0,
     'rx_bps_L1': 6101733632.0,
     'rx_pps': 9079960.0,
     'rx_util': 15.254334080000001,
     'tx_bps': 13898288128.0,
     'tx_bps_L1': 18241503488.0,
     'tx_pps': 27145096.0,
     'tx_util': 45.60375872},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 1.8853647708892822,
            'cpu_util': 92.14588165283203,
            'cpu_util_raw': 99.3125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 138866116,
            'rx_bps': 4648940032.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9249347584.0,
            'rx_pps': 9079960.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13898288128.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 27145096.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 5826069248,
           'ierrors': 0,
           'ipackets': 91032332,
           'obytes': 17438855616,
           'oerrors': 0,
           'opackets': 272482158,
           'rx_bps': 4648940032.0,
           'rx_bps_L1': 6101733632.0,
           'rx_pps': 9079960.0,
           'rx_util': 15.254334080000001,
           'tx_bps': 13898288128.0,
           'tx_bps_L1': 18241503488.0,
           'tx_pps': 27145096.0,
           'tx_util': 45.60375872}}
10/03/2021 16:11:14                         pktgen: {'ibytes': 5826069248,
 'ierrors': 0,
 'ipackets': 91032332,
 'obytes': 17438855616,
 'oerrors': 0,
 'opackets': 272482158,
 'rx_bps': 4648940032.0,
 'rx_bps_L1': 6101733632.0,
 'rx_pps': 9079960.0,
 'rx_util': 15.254334080000001,
 'tx_bps': 13898288128.0,
 'tx_bps_L1': 18241503488.0,
 'tx_pps': 27145096.0,
 'tx_util': 45.60375872}
10/03/2021 16:11:14                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13898288128.000000, tx_pps: 27145096.000000 
10/03/2021 16:11:14                         pktgen: {'ibytes': 5826069248,
 'ierrors': 0,
 'ipackets': 91032332,
 'obytes': 17438855616,
 'oerrors': 0,
 'opackets': 272482158,
 'rx_bps': 4648940032.0,
 'rx_bps_L1': 6101733632.0,
 'rx_pps': 9079960.0,
 'rx_util': 15.254334080000001,
 'tx_bps': 13898288128.0,
 'tx_bps_L1': 18241503488.0,
 'tx_pps': 27145096.0,
 'tx_util': 45.60375872}
10/03/2021 16:11:14                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4648940032.000000, rx_pps: 9079960.000000
10/03/2021 16:11:14                         pktgen: throughput: pps_rx 9079960.000000, bps_rx 4648940032.000000
10/03/2021 16:11:14                         pktgen: traffic completed. 
10/03/2021 16:11:14 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
10/03/2021 16:11:14                         tester: ls -d /tmp
10/03/2021 16:11:14                         tester: /tmp
10/03/2021 16:11:14                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:11:16                         pktgen: test port 0 map gen port 0
10/03/2021 16:11:16                         pktgen: test port 0 map gen port 0
10/03/2021 16:11:16                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:11:16                         pktgen: trex port <0> not support flow control
10/03/2021 16:11:16                         pktgen: check the trex port link status
10/03/2021 16:11:16                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:11:16                         pktgen: begin traffic ......
10/03/2021 16:11:16                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:11:26                         pktgen: begin get port statistic ...
10/03/2021 16:11:26                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:11:26                         pktgen: {0: {'ibytes': 10865029248,
     'ierrors': 0,
     'ipackets': 84883041,
     'obytes': 27922382848,
     'oerrors': 0,
     'opackets': 218143642,
     'rx_bps': 8637435904.0,
     'rx_bps_L1': 9987508864.000002,
     'rx_pps': 8437956.0,
     'rx_util': 24.968772160000004,
     'tx_bps': 22231388160.0,
     'tx_bps_L1': 25706462079.999996,
     'tx_pps': 21719212.0,
     'tx_util': 64.26615519999999},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 2.8793702125549316,
            'cpu_util': 96.51150512695312,
            'cpu_util_raw': 98.9375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 140734735,
            'rx_bps': 8637435904.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 13593953280.0,
            'rx_pps': 8437956.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 22231388160.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21719212.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 10865029248,
           'ierrors': 0,
           'ipackets': 84883041,
           'obytes': 27922382848,
           'oerrors': 0,
           'opackets': 218143642,
           'rx_bps': 8637435904.0,
           'rx_bps_L1': 9987508864.000002,
           'rx_pps': 8437956.0,
           'rx_util': 24.968772160000004,
           'tx_bps': 22231388160.0,
           'tx_bps_L1': 25706462079.999996,
           'tx_pps': 21719212.0,
           'tx_util': 64.26615519999999}}
10/03/2021 16:11:26                         pktgen: {'ibytes': 10865029248,
 'ierrors': 0,
 'ipackets': 84883041,
 'obytes': 27922382848,
 'oerrors': 0,
 'opackets': 218143642,
 'rx_bps': 8637435904.0,
 'rx_bps_L1': 9987508864.000002,
 'rx_pps': 8437956.0,
 'rx_util': 24.968772160000004,
 'tx_bps': 22231388160.0,
 'tx_bps_L1': 25706462079.999996,
 'tx_pps': 21719212.0,
 'tx_util': 64.26615519999999}
10/03/2021 16:11:26                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 22231388160.000000, tx_pps: 21719212.000000 
10/03/2021 16:11:26                         pktgen: {'ibytes': 10865029248,
 'ierrors': 0,
 'ipackets': 84883041,
 'obytes': 27922382848,
 'oerrors': 0,
 'opackets': 218143642,
 'rx_bps': 8637435904.0,
 'rx_bps_L1': 9987508864.000002,
 'rx_pps': 8437956.0,
 'rx_util': 24.968772160000004,
 'tx_bps': 22231388160.0,
 'tx_bps_L1': 25706462079.999996,
 'tx_pps': 21719212.0,
 'tx_util': 64.26615519999999}
10/03/2021 16:11:26                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 8637435904.000000, rx_pps: 8437956.000000
10/03/2021 16:11:26                         pktgen: throughput: pps_rx 8437956.000000, bps_rx 8637435904.000000
10/03/2021 16:11:26                         pktgen: traffic completed. 
10/03/2021 16:11:26 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
10/03/2021 16:11:26                         tester: ls -d /tmp
10/03/2021 16:11:26                         tester: /tmp
10/03/2021 16:11:26                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:11:28                         pktgen: test port 0 map gen port 0
10/03/2021 16:11:28                         pktgen: test port 0 map gen port 0
10/03/2021 16:11:28                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:11:28                         pktgen: trex port <0> not support flow control
10/03/2021 16:11:28                         pktgen: check the trex port link status
10/03/2021 16:11:28                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:11:28                         pktgen: begin traffic ......
10/03/2021 16:11:28                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:11:38                         pktgen: begin get port statistic ...
10/03/2021 16:11:38                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:11:38                         pktgen: {0: {'ibytes': 19930805248,
     'ierrors': 0,
     'ipackets': 77854712,
     'obytes': 46393608704,
     'oerrors': 0,
     'opackets': 181225057,
     'rx_bps': 15887071232.0,
     'rx_bps_L1': 17128527712.000002,
     'rx_pps': 7759103.0,
     'rx_util': 42.821319280000004,
     'tx_bps': 37011845120.0,
     'tx_bps_L1': 39904114560.0,
     'tx_pps': 18076684.0,
     'tx_util': 99.7602864},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 54.9047966003418,
            'cpu_util': 8.426368713378906,
            'cpu_util_raw': 3.9375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 1982641,
            'rx_bps': 15887071232.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 21124773888.0,
            'rx_pps': 7759103.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37011845120.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18076684.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 19930805248,
           'ierrors': 0,
           'ipackets': 77854712,
           'obytes': 46393608704,
           'oerrors': 0,
           'opackets': 181225057,
           'rx_bps': 15887071232.0,
           'rx_bps_L1': 17128527712.000002,
           'rx_pps': 7759103.0,
           'rx_util': 42.821319280000004,
           'tx_bps': 37011845120.0,
           'tx_bps_L1': 39904114560.0,
           'tx_pps': 18076684.0,
           'tx_util': 99.7602864}}
10/03/2021 16:11:38                         pktgen: {'ibytes': 19930805248,
 'ierrors': 0,
 'ipackets': 77854712,
 'obytes': 46393608704,
 'oerrors': 0,
 'opackets': 181225057,
 'rx_bps': 15887071232.0,
 'rx_bps_L1': 17128527712.000002,
 'rx_pps': 7759103.0,
 'rx_util': 42.821319280000004,
 'tx_bps': 37011845120.0,
 'tx_bps_L1': 39904114560.0,
 'tx_pps': 18076684.0,
 'tx_util': 99.7602864}
10/03/2021 16:11:38                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37011845120.000000, tx_pps: 18076684.000000 
10/03/2021 16:11:38                         pktgen: {'ibytes': 19930805248,
 'ierrors': 0,
 'ipackets': 77854712,
 'obytes': 46393608704,
 'oerrors': 0,
 'opackets': 181225057,
 'rx_bps': 15887071232.0,
 'rx_bps_L1': 17128527712.000002,
 'rx_pps': 7759103.0,
 'rx_util': 42.821319280000004,
 'tx_bps': 37011845120.0,
 'tx_bps_L1': 39904114560.0,
 'tx_pps': 18076684.0,
 'tx_util': 99.7602864}
10/03/2021 16:11:38                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 15887071232.000000, rx_pps: 7759103.000000
10/03/2021 16:11:38                         pktgen: throughput: pps_rx 7759103.000000, bps_rx 15887071232.000000
10/03/2021 16:11:38                         pktgen: traffic completed. 
10/03/2021 16:11:38 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
10/03/2021 16:11:38                         tester: ls -d /tmp
10/03/2021 16:11:38                         tester: /tmp
10/03/2021 16:11:38                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:11:39                         pktgen: test port 0 map gen port 0
10/03/2021 16:11:39                         pktgen: test port 0 map gen port 0
10/03/2021 16:11:39                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:11:39                         pktgen: trex port <0> not support flow control
10/03/2021 16:11:39                         pktgen: check the trex port link status
10/03/2021 16:11:39                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:11:39                         pktgen: begin traffic ......
10/03/2021 16:11:39                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:11:49                         pktgen: begin get port statistic ...
10/03/2021 16:11:49                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:11:49                         pktgen: {0: {'ibytes': 29088594432,
     'ierrors': 0,
     'ipackets': 56813670,
     'obytes': 48144218624,
     'oerrors': 0,
     'opackets': 94031689,
     'rx_bps': 23168090112.0,
     'rx_bps_L1': 24073406912.000004,
     'rx_pps': 5658230.0,
     'rx_util': 60.18351728000001,
     'tx_bps': 38361817088.0,
     'tx_bps_L1': 39861055008.0,
     'tx_pps': 9370237.0,
     'tx_util': 99.65263752},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.629006385803223,
            'cpu_util': 55.571022033691406,
            'cpu_util_raw': 60.1875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 82859061,
            'rx_bps': 23168090112.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 15193726976.0,
            'rx_pps': 5658230.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38361817088.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9370237.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 29088594432,
           'ierrors': 0,
           'ipackets': 56813670,
           'obytes': 48144218624,
           'oerrors': 0,
           'opackets': 94031689,
           'rx_bps': 23168090112.0,
           'rx_bps_L1': 24073406912.000004,
           'rx_pps': 5658230.0,
           'rx_util': 60.18351728000001,
           'tx_bps': 38361817088.0,
           'tx_bps_L1': 39861055008.0,
           'tx_pps': 9370237.0,
           'tx_util': 99.65263752}}
10/03/2021 16:11:49                         pktgen: {'ibytes': 29088594432,
 'ierrors': 0,
 'ipackets': 56813670,
 'obytes': 48144218624,
 'oerrors': 0,
 'opackets': 94031689,
 'rx_bps': 23168090112.0,
 'rx_bps_L1': 24073406912.000004,
 'rx_pps': 5658230.0,
 'rx_util': 60.18351728000001,
 'tx_bps': 38361817088.0,
 'tx_bps_L1': 39861055008.0,
 'tx_pps': 9370237.0,
 'tx_util': 99.65263752}
10/03/2021 16:11:49                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38361817088.000000, tx_pps: 9370237.000000 
10/03/2021 16:11:49                         pktgen: {'ibytes': 29088594432,
 'ierrors': 0,
 'ipackets': 56813670,
 'obytes': 48144218624,
 'oerrors': 0,
 'opackets': 94031689,
 'rx_bps': 23168090112.0,
 'rx_bps_L1': 24073406912.000004,
 'rx_pps': 5658230.0,
 'rx_util': 60.18351728000001,
 'tx_bps': 38361817088.0,
 'tx_bps_L1': 39861055008.0,
 'tx_pps': 9370237.0,
 'tx_util': 99.65263752}
10/03/2021 16:11:49                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 23168090112.000000, rx_pps: 5658230.000000
10/03/2021 16:11:49                         pktgen: throughput: pps_rx 5658230.000000, bps_rx 23168090112.000000
10/03/2021 16:11:49                         pktgen: traffic completed. 
10/03/2021 16:11:49 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
10/03/2021 16:11:49                         tester: ls -d /tmp
10/03/2021 16:11:49                         tester: /tmp
10/03/2021 16:11:49                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:11:51                         pktgen: test port 0 map gen port 0
10/03/2021 16:11:51                         pktgen: test port 0 map gen port 0
10/03/2021 16:11:51                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:11:51                         pktgen: trex port <0> not support flow control
10/03/2021 16:11:51                         pktgen: check the trex port link status
10/03/2021 16:11:51                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:11:51                         pktgen: begin traffic ......
10/03/2021 16:11:51                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:12:01                         pktgen: begin get port statistic ...
10/03/2021 16:12:01                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:12:01                         pktgen: {0: {'ibytes': 47305360384,
     'ierrors': 0,
     'ipackets': 46196647,
     'obytes': 49095367680,
     'oerrors': 0,
     'opackets': 47944699,
     'rx_bps': 37812678656.0,
     'rx_bps_L1': 38551516736.0,
     'rx_pps': 4617738.0,
     'rx_util': 96.37879184,
     'tx_bps': 39288344576.0,
     'tx_bps_L1': 40056206816.0,
     'tx_pps': 4799139.0,
     'tx_util': 100.14051703999999},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 16.86652946472168,
            'cpu_util': 29.117094039916992,
            'cpu_util_raw': 27.9375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 37133267,
            'rx_bps': 37812678656.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4617738.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39288344576.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4799139.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 47305360384,
           'ierrors': 0,
           'ipackets': 46196647,
           'obytes': 49095367680,
           'oerrors': 0,
           'opackets': 47944699,
           'rx_bps': 37812678656.0,
           'rx_bps_L1': 38551516736.0,
           'rx_pps': 4617738.0,
           'rx_util': 96.37879184,
           'tx_bps': 39288344576.0,
           'tx_bps_L1': 40056206816.0,
           'tx_pps': 4799139.0,
           'tx_util': 100.14051703999999}}
10/03/2021 16:12:01                         pktgen: {'ibytes': 47305360384,
 'ierrors': 0,
 'ipackets': 46196647,
 'obytes': 49095367680,
 'oerrors': 0,
 'opackets': 47944699,
 'rx_bps': 37812678656.0,
 'rx_bps_L1': 38551516736.0,
 'rx_pps': 4617738.0,
 'rx_util': 96.37879184,
 'tx_bps': 39288344576.0,
 'tx_bps_L1': 40056206816.0,
 'tx_pps': 4799139.0,
 'tx_util': 100.14051703999999}
10/03/2021 16:12:01                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39288344576.000000, tx_pps: 4799139.000000 
10/03/2021 16:12:01                         pktgen: {'ibytes': 47305360384,
 'ierrors': 0,
 'ipackets': 46196647,
 'obytes': 49095367680,
 'oerrors': 0,
 'opackets': 47944699,
 'rx_bps': 37812678656.0,
 'rx_bps_L1': 38551516736.0,
 'rx_pps': 4617738.0,
 'rx_util': 96.37879184,
 'tx_bps': 39288344576.0,
 'tx_bps_L1': 40056206816.0,
 'tx_pps': 4799139.0,
 'tx_util': 100.14051703999999}
10/03/2021 16:12:01                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 37812678656.000000, rx_pps: 4617738.000000
10/03/2021 16:12:01                         pktgen: throughput: pps_rx 4617738.000000, bps_rx 37812678656.000000
10/03/2021 16:12:01                         pktgen: traffic completed. 
10/03/2021 16:12:01 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
10/03/2021 16:12:01                         tester: ls -d /tmp
10/03/2021 16:12:01                         tester: /tmp
10/03/2021 16:12:01                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:12:03                         pktgen: test port 0 map gen port 0
10/03/2021 16:12:03                         pktgen: test port 0 map gen port 0
10/03/2021 16:12:03                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:12:03                         pktgen: trex port <0> not support flow control
10/03/2021 16:12:03                         pktgen: check the trex port link status
10/03/2021 16:12:03                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:12:03                         pktgen: begin traffic ......
10/03/2021 16:12:03                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:12:13                         pktgen: begin get port statistic ...
10/03/2021 16:12:13                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:12:13                         pktgen: {0: {'ibytes': 49374006528,
     'ierrors': 0,
     'ipackets': 32525700,
     'obytes': 49373986794,
     'oerrors': 0,
     'opackets': 32525687,
     'rx_bps': 39543054336.0,
     'rx_bps_L1': 40064146896.0,
     'rx_pps': 3256828.5,
     'rx_util': 100.16036724,
     'tx_bps': 39543599104.0,
     'tx_bps_L1': 40064702784.0,
     'tx_pps': 3256898.0,
     'tx_util': 100.16175696},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 32.73368835449219,
            'cpu_util': 15.10049819946289,
            'cpu_util_raw': 15.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17393423,
            'rx_bps': 39543054336.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3256828.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39543599104.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3256898.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49374006528,
           'ierrors': 0,
           'ipackets': 32525700,
           'obytes': 49373986794,
           'oerrors': 0,
           'opackets': 32525687,
           'rx_bps': 39543054336.0,
           'rx_bps_L1': 40064146896.0,
           'rx_pps': 3256828.5,
           'rx_util': 100.16036724,
           'tx_bps': 39543599104.0,
           'tx_bps_L1': 40064702784.0,
           'tx_pps': 3256898.0,
           'tx_util': 100.16175696}}
10/03/2021 16:12:13                         pktgen: {'ibytes': 49374006528,
 'ierrors': 0,
 'ipackets': 32525700,
 'obytes': 49373986794,
 'oerrors': 0,
 'opackets': 32525687,
 'rx_bps': 39543054336.0,
 'rx_bps_L1': 40064146896.0,
 'rx_pps': 3256828.5,
 'rx_util': 100.16036724,
 'tx_bps': 39543599104.0,
 'tx_bps_L1': 40064702784.0,
 'tx_pps': 3256898.0,
 'tx_util': 100.16175696}
10/03/2021 16:12:13                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39543599104.000000, tx_pps: 3256898.000000 
10/03/2021 16:12:13                         pktgen: {'ibytes': 49374006528,
 'ierrors': 0,
 'ipackets': 32525700,
 'obytes': 49373986794,
 'oerrors': 0,
 'opackets': 32525687,
 'rx_bps': 39543054336.0,
 'rx_bps_L1': 40064146896.0,
 'rx_pps': 3256828.5,
 'rx_util': 100.16036724,
 'tx_bps': 39543599104.0,
 'tx_bps_L1': 40064702784.0,
 'tx_pps': 3256898.0,
 'tx_util': 100.16175696}
10/03/2021 16:12:13                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39543054336.000000, rx_pps: 3256828.500000
10/03/2021 16:12:13                         pktgen: throughput: pps_rx 3256828.500000, bps_rx 39543054336.000000
10/03/2021 16:12:13                         pktgen: traffic completed. 
10/03/2021 16:12:14 TestPVPMultiPathVhostPerformance: result of all framesize result
10/03/2021 16:12:14 TestPVPMultiPathVhostPerformance: 
+-------+---------------------+-------+------------+
| Frame |    Mode/RXD-TXD     | Mpps  | % linerate |
+=======+=====================+=======+============+
| 64    | inoder mergeable on | 9.080 | 15.254     |
+-------+---------------------+-------+------------+
| 128   | inoder mergeable on | 8.438 | 24.976     |
+-------+---------------------+-------+------------+
| 256   | inoder mergeable on | 7.759 | 42.830     |
+-------+---------------------+-------+------------+
| 512   | inoder mergeable on | 5.658 | 60.204     |
+-------+---------------------+-------+------------+
| 1024  | inoder mergeable on | 4.618 | 96.418     |
+-------+---------------------+-------+------------+
| 1518  | inoder mergeable on | 3.257 | 100.180    |
+-------+---------------------+-------+------------+
10/03/2021 16:12:14 TestPVPMultiPathVhostPerformance: 
+-------+--------------+------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps    | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+============+============+=====================+=======================+
| 64    | 1024         | 9.080 Mpps | 15.254%    | 9.657 Mpps          | -0.577 Mpps           |
+-------+--------------+------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.257 Mpps | 100.180%   | 3.246 Mpps          | 0.011 Mpps            |
+-------+--------------+------------+------------+---------------------+-----------------------+
10/03/2021 16:12:14 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.482850
10/03/2021 16:12:14 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.577000
10/03/2021 16:12:14 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162300
10/03/2021 16:12:14 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.011000
10/03/2021 16:12:14 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_inorder_mergeable Result FAILED: 'Exceeded Gap'
10/03/2021 16:12:14             dut.10.240.183.214: kill_all: called by dut and prefix list has value.
10/03/2021 16:12:15 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_inorder_normal Begin
10/03/2021 16:12:16             dut.10.240.183.214: 
10/03/2021 16:12:16                         tester: 
10/03/2021 16:12:16             dut.10.240.183.214: rm -rf ./vhost.out
10/03/2021 16:12:16             dut.10.240.183.214: 
10/03/2021 16:12:16             dut.10.240.183.214: rm -rf ./vhost-net*
10/03/2021 16:12:16             dut.10.240.183.214: 
10/03/2021 16:12:16             dut.10.240.183.214: killall -s INT dpdk-testpmd 
10/03/2021 16:12:16             dut.10.240.183.214: dpdk-testpmd: no process found
10/03/2021 16:12:16             dut.10.240.183.214: killall -s INT qemu-system-x86_64
10/03/2021 16:12:16             dut.10.240.183.214: qemu-system-x86_64: no process found
10/03/2021 16:12:27             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
10/03/2021 16:12:27             dut.10.240.183.214: 2048
10/03/2021 16:12:38 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
10/03/2021 16:12:38                         tester: ls -d /tmp
10/03/2021 16:12:38                         tester: /tmp
10/03/2021 16:12:38                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:12:39                         pktgen: test port 0 map gen port 0
10/03/2021 16:12:39                         pktgen: test port 0 map gen port 0
10/03/2021 16:12:39                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:12:39                         pktgen: trex port <0> not support flow control
10/03/2021 16:12:39                         pktgen: check the trex port link status
10/03/2021 16:12:39                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:12:39                         pktgen: begin traffic ......
10/03/2021 16:12:39                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:12:49                         pktgen: begin get port statistic ...
10/03/2021 16:12:49                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:12:49                         pktgen: {0: {'ibytes': 6280806400,
     'ierrors': 0,
     'ipackets': 98137626,
     'obytes': 17491548032,
     'oerrors': 0,
     'opackets': 273305455,
     'rx_bps': 5012590080.0,
     'rx_bps_L1': 6579024640.0,
     'rx_pps': 9790216.0,
     'rx_util': 16.4475616,
     'tx_bps': 13954953216.0,
     'tx_bps_L1': 18315876096.0,
     'tx_pps': 27255768.0,
     'tx_util': 45.789690240000006},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 1.87663996219635,
            'cpu_util': 92.95172119140625,
            'cpu_util_raw': 99.375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 139074301,
            'rx_bps': 5012590080.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8942363648.0,
            'rx_pps': 9790216.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13954953216.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 27255768.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 6280806400,
           'ierrors': 0,
           'ipackets': 98137626,
           'obytes': 17491548032,
           'oerrors': 0,
           'opackets': 273305455,
           'rx_bps': 5012590080.0,
           'rx_bps_L1': 6579024640.0,
           'rx_pps': 9790216.0,
           'rx_util': 16.4475616,
           'tx_bps': 13954953216.0,
           'tx_bps_L1': 18315876096.0,
           'tx_pps': 27255768.0,
           'tx_util': 45.789690240000006}}
10/03/2021 16:12:49                         pktgen: {'ibytes': 6280806400,
 'ierrors': 0,
 'ipackets': 98137626,
 'obytes': 17491548032,
 'oerrors': 0,
 'opackets': 273305455,
 'rx_bps': 5012590080.0,
 'rx_bps_L1': 6579024640.0,
 'rx_pps': 9790216.0,
 'rx_util': 16.4475616,
 'tx_bps': 13954953216.0,
 'tx_bps_L1': 18315876096.0,
 'tx_pps': 27255768.0,
 'tx_util': 45.789690240000006}
10/03/2021 16:12:49                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13954953216.000000, tx_pps: 27255768.000000 
10/03/2021 16:12:49                         pktgen: {'ibytes': 6280806400,
 'ierrors': 0,
 'ipackets': 98137626,
 'obytes': 17491548032,
 'oerrors': 0,
 'opackets': 273305455,
 'rx_bps': 5012590080.0,
 'rx_bps_L1': 6579024640.0,
 'rx_pps': 9790216.0,
 'rx_util': 16.4475616,
 'tx_bps': 13954953216.0,
 'tx_bps_L1': 18315876096.0,
 'tx_pps': 27255768.0,
 'tx_util': 45.789690240000006}
10/03/2021 16:12:49                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 5012590080.000000, rx_pps: 9790216.000000
10/03/2021 16:12:49                         pktgen: throughput: pps_rx 9790216.000000, bps_rx 5012590080.000000
10/03/2021 16:12:49                         pktgen: traffic completed. 
10/03/2021 16:12:49 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
10/03/2021 16:12:49                         tester: ls -d /tmp
10/03/2021 16:12:49                         tester: /tmp
10/03/2021 16:12:49                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:12:51                         pktgen: test port 0 map gen port 0
10/03/2021 16:12:51                         pktgen: test port 0 map gen port 0
10/03/2021 16:12:51                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:12:51                         pktgen: trex port <0> not support flow control
10/03/2021 16:12:51                         pktgen: check the trex port link status
10/03/2021 16:12:51                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:12:51                         pktgen: begin traffic ......
10/03/2021 16:12:51                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:13:01                         pktgen: begin get port statistic ...
10/03/2021 16:13:01                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:13:01                         pktgen: {0: {'ibytes': 11615891456,
     'ierrors': 0,
     'ipackets': 90749170,
     'obytes': 28075095552,
     'oerrors': 0,
     'opackets': 219336712,
     'rx_bps': 9243171840.0,
     'rx_bps_L1': 10687784960.0,
     'rx_pps': 9028832.0,
     'rx_util': 26.719462399999998,
     'tx_bps': 22366980096.0,
     'tx_bps_L1': 25862845056.0,
     'tx_pps': 21849156.0,
     'tx_util': 64.65711264000001},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 2.8859517574310303,
            'cpu_util': 96.87870025634766,
            'cpu_util_raw': 99.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 141898156,
            'rx_bps': 9243171840.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 13123808256.0,
            'rx_pps': 9028832.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 22366980096.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21849156.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 11615891456,
           'ierrors': 0,
           'ipackets': 90749170,
           'obytes': 28075095552,
           'oerrors': 0,
           'opackets': 219336712,
           'rx_bps': 9243171840.0,
           'rx_bps_L1': 10687784960.0,
           'rx_pps': 9028832.0,
           'rx_util': 26.719462399999998,
           'tx_bps': 22366980096.0,
           'tx_bps_L1': 25862845056.0,
           'tx_pps': 21849156.0,
           'tx_util': 64.65711264000001}}
10/03/2021 16:13:01                         pktgen: {'ibytes': 11615891456,
 'ierrors': 0,
 'ipackets': 90749170,
 'obytes': 28075095552,
 'oerrors': 0,
 'opackets': 219336712,
 'rx_bps': 9243171840.0,
 'rx_bps_L1': 10687784960.0,
 'rx_pps': 9028832.0,
 'rx_util': 26.719462399999998,
 'tx_bps': 22366980096.0,
 'tx_bps_L1': 25862845056.0,
 'tx_pps': 21849156.0,
 'tx_util': 64.65711264000001}
10/03/2021 16:13:01                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 22366980096.000000, tx_pps: 21849156.000000 
10/03/2021 16:13:01                         pktgen: {'ibytes': 11615891456,
 'ierrors': 0,
 'ipackets': 90749170,
 'obytes': 28075095552,
 'oerrors': 0,
 'opackets': 219336712,
 'rx_bps': 9243171840.0,
 'rx_bps_L1': 10687784960.0,
 'rx_pps': 9028832.0,
 'rx_util': 26.719462399999998,
 'tx_bps': 22366980096.0,
 'tx_bps_L1': 25862845056.0,
 'tx_pps': 21849156.0,
 'tx_util': 64.65711264000001}
10/03/2021 16:13:01                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 9243171840.000000, rx_pps: 9028832.000000
10/03/2021 16:13:01                         pktgen: throughput: pps_rx 9028832.000000, bps_rx 9243171840.000000
10/03/2021 16:13:01                         pktgen: traffic completed. 
10/03/2021 16:13:01 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
10/03/2021 16:13:01                         tester: ls -d /tmp
10/03/2021 16:13:01                         tester: /tmp
10/03/2021 16:13:01                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:13:02                         pktgen: test port 0 map gen port 0
10/03/2021 16:13:02                         pktgen: test port 0 map gen port 0
10/03/2021 16:13:02                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:13:02                         pktgen: trex port <0> not support flow control
10/03/2021 16:13:02                         pktgen: check the trex port link status
10/03/2021 16:13:02                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:13:03                         pktgen: begin traffic ......
10/03/2021 16:13:03                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:13:13                         pktgen: begin get port statistic ...
10/03/2021 16:13:13                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:13:13                         pktgen: {0: {'ibytes': 21405231104,
     'ierrors': 0,
     'ipackets': 83614187,
     'obytes': 46391986176,
     'oerrors': 0,
     'opackets': 181218719,
     'rx_bps': 17062773760.0,
     'rx_bps_L1': 18396255680.0,
     'rx_pps': 8334262.0,
     'rx_util': 45.9906392,
     'tx_bps': 37006479360.0,
     'tx_bps_L1': 39898706560.0,
     'tx_pps': 18076420.0,
     'tx_util': 99.7467664},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 57.803035736083984,
            'cpu_util': 8.002711296081543,
            'cpu_util_raw': 3.625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 1978585,
            'rx_bps': 17062773760.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 19943706624.0,
            'rx_pps': 8334262.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37006479360.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18076420.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 21405231104,
           'ierrors': 0,
           'ipackets': 83614187,
           'obytes': 46391986176,
           'oerrors': 0,
           'opackets': 181218719,
           'rx_bps': 17062773760.0,
           'rx_bps_L1': 18396255680.0,
           'rx_pps': 8334262.0,
           'rx_util': 45.9906392,
           'tx_bps': 37006479360.0,
           'tx_bps_L1': 39898706560.0,
           'tx_pps': 18076420.0,
           'tx_util': 99.7467664}}
10/03/2021 16:13:13                         pktgen: {'ibytes': 21405231104,
 'ierrors': 0,
 'ipackets': 83614187,
 'obytes': 46391986176,
 'oerrors': 0,
 'opackets': 181218719,
 'rx_bps': 17062773760.0,
 'rx_bps_L1': 18396255680.0,
 'rx_pps': 8334262.0,
 'rx_util': 45.9906392,
 'tx_bps': 37006479360.0,
 'tx_bps_L1': 39898706560.0,
 'tx_pps': 18076420.0,
 'tx_util': 99.7467664}
10/03/2021 16:13:13                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37006479360.000000, tx_pps: 18076420.000000 
10/03/2021 16:13:13                         pktgen: {'ibytes': 21405231104,
 'ierrors': 0,
 'ipackets': 83614187,
 'obytes': 46391986176,
 'oerrors': 0,
 'opackets': 181218719,
 'rx_bps': 17062773760.0,
 'rx_bps_L1': 18396255680.0,
 'rx_pps': 8334262.0,
 'rx_util': 45.9906392,
 'tx_bps': 37006479360.0,
 'tx_bps_L1': 39898706560.0,
 'tx_pps': 18076420.0,
 'tx_util': 99.7467664}
10/03/2021 16:13:13                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 17062773760.000000, rx_pps: 8334262.000000
10/03/2021 16:13:13                         pktgen: throughput: pps_rx 8334262.000000, bps_rx 17062773760.000000
10/03/2021 16:13:13                         pktgen: traffic completed. 
10/03/2021 16:13:13 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
10/03/2021 16:13:13                         tester: ls -d /tmp
10/03/2021 16:13:13                         tester: /tmp
10/03/2021 16:13:13                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:13:14                         pktgen: test port 0 map gen port 0
10/03/2021 16:13:14                         pktgen: test port 0 map gen port 0
10/03/2021 16:13:14                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:13:14                         pktgen: trex port <0> not support flow control
10/03/2021 16:13:14                         pktgen: check the trex port link status
10/03/2021 16:13:14                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:13:14                         pktgen: begin traffic ......
10/03/2021 16:13:14                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:13:24                         pktgen: begin get port statistic ...
10/03/2021 16:13:24                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:13:24                         pktgen: {0: {'ibytes': 29287588352,
     'ierrors': 0,
     'ipackets': 57202332,
     'obytes': 48171862528,
     'oerrors': 0,
     'opackets': 94085681,
     'rx_bps': 23337961472.0,
     'rx_bps_L1': 24249868352.0,
     'rx_pps': 5699418.0,
     'rx_util': 60.62467088,
     'tx_bps': 38394802176.0,
     'tx_bps_L1': 39895179456.0,
     'tx_pps': 9377358.0,
     'tx_util': 99.73794864},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.502747535705566,
            'cpu_util': 56.444698333740234,
            'cpu_util_raw': 60.875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 82888606,
            'rx_bps': 23337961472.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 15056839680.0,
            'rx_pps': 5699418.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38394802176.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9377358.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 29287588352,
           'ierrors': 0,
           'ipackets': 57202332,
           'obytes': 48171862528,
           'oerrors': 0,
           'opackets': 94085681,
           'rx_bps': 23337961472.0,
           'rx_bps_L1': 24249868352.0,
           'rx_pps': 5699418.0,
           'rx_util': 60.62467088,
           'tx_bps': 38394802176.0,
           'tx_bps_L1': 39895179456.0,
           'tx_pps': 9377358.0,
           'tx_util': 99.73794864}}
10/03/2021 16:13:24                         pktgen: {'ibytes': 29287588352,
 'ierrors': 0,
 'ipackets': 57202332,
 'obytes': 48171862528,
 'oerrors': 0,
 'opackets': 94085681,
 'rx_bps': 23337961472.0,
 'rx_bps_L1': 24249868352.0,
 'rx_pps': 5699418.0,
 'rx_util': 60.62467088,
 'tx_bps': 38394802176.0,
 'tx_bps_L1': 39895179456.0,
 'tx_pps': 9377358.0,
 'tx_util': 99.73794864}
10/03/2021 16:13:24                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38394802176.000000, tx_pps: 9377358.000000 
10/03/2021 16:13:24                         pktgen: {'ibytes': 29287588352,
 'ierrors': 0,
 'ipackets': 57202332,
 'obytes': 48171862528,
 'oerrors': 0,
 'opackets': 94085681,
 'rx_bps': 23337961472.0,
 'rx_bps_L1': 24249868352.0,
 'rx_pps': 5699418.0,
 'rx_util': 60.62467088,
 'tx_bps': 38394802176.0,
 'tx_bps_L1': 39895179456.0,
 'tx_pps': 9377358.0,
 'tx_util': 99.73794864}
10/03/2021 16:13:24                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 23337961472.000000, rx_pps: 5699418.000000
10/03/2021 16:13:24                         pktgen: throughput: pps_rx 5699418.000000, bps_rx 23337961472.000000
10/03/2021 16:13:24                         pktgen: traffic completed. 
10/03/2021 16:13:24 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
10/03/2021 16:13:24                         tester: ls -d /tmp
10/03/2021 16:13:24                         tester: /tmp
10/03/2021 16:13:24                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:13:26                         pktgen: test port 0 map gen port 0
10/03/2021 16:13:26                         pktgen: test port 0 map gen port 0
10/03/2021 16:13:26                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:13:26                         pktgen: trex port <0> not support flow control
10/03/2021 16:13:26                         pktgen: check the trex port link status
10/03/2021 16:13:26                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:13:26                         pktgen: begin traffic ......
10/03/2021 16:13:26                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:13:36                         pktgen: begin get port statistic ...
10/03/2021 16:13:36                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:13:36                         pktgen: {0: {'ibytes': 44951047168,
     'ierrors': 0,
     'ipackets': 43897512,
     'obytes': 49096395776,
     'oerrors': 0,
     'opackets': 47945705,
     'rx_bps': 35768623104.0,
     'rx_bps_L1': 36467453984.0,
     'rx_pps': 4367693.0,
     'rx_util': 91.16863495999999,
     'tx_bps': 39113003008.0,
     'tx_bps_L1': 39877298848.0,
     'tx_pps': 4776849.0,
     'tx_util': 99.69324712},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 16.451339721679688,
            'cpu_util': 29.718708038330078,
            'cpu_util_raw': 30.1875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 37256500,
            'rx_bps': 35768623104.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4367693.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39113003008.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4776849.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 44951047168,
           'ierrors': 0,
           'ipackets': 43897512,
           'obytes': 49096395776,
           'oerrors': 0,
           'opackets': 47945705,
           'rx_bps': 35768623104.0,
           'rx_bps_L1': 36467453984.0,
           'rx_pps': 4367693.0,
           'rx_util': 91.16863495999999,
           'tx_bps': 39113003008.0,
           'tx_bps_L1': 39877298848.0,
           'tx_pps': 4776849.0,
           'tx_util': 99.69324712}}
10/03/2021 16:13:36                         pktgen: {'ibytes': 44951047168,
 'ierrors': 0,
 'ipackets': 43897512,
 'obytes': 49096395776,
 'oerrors': 0,
 'opackets': 47945705,
 'rx_bps': 35768623104.0,
 'rx_bps_L1': 36467453984.0,
 'rx_pps': 4367693.0,
 'rx_util': 91.16863495999999,
 'tx_bps': 39113003008.0,
 'tx_bps_L1': 39877298848.0,
 'tx_pps': 4776849.0,
 'tx_util': 99.69324712}
10/03/2021 16:13:36                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39113003008.000000, tx_pps: 4776849.000000 
10/03/2021 16:13:36                         pktgen: {'ibytes': 44951047168,
 'ierrors': 0,
 'ipackets': 43897512,
 'obytes': 49096395776,
 'oerrors': 0,
 'opackets': 47945705,
 'rx_bps': 35768623104.0,
 'rx_bps_L1': 36467453984.0,
 'rx_pps': 4367693.0,
 'rx_util': 91.16863495999999,
 'tx_bps': 39113003008.0,
 'tx_bps_L1': 39877298848.0,
 'tx_pps': 4776849.0,
 'tx_util': 99.69324712}
10/03/2021 16:13:36                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 35768623104.000000, rx_pps: 4367693.000000
10/03/2021 16:13:36                         pktgen: throughput: pps_rx 4367693.000000, bps_rx 35768623104.000000
10/03/2021 16:13:36                         pktgen: traffic completed. 
10/03/2021 16:13:36 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
10/03/2021 16:13:36                         tester: ls -d /tmp
10/03/2021 16:13:36                         tester: /tmp
10/03/2021 16:13:36                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:13:37                         pktgen: test port 0 map gen port 0
10/03/2021 16:13:37                         pktgen: test port 0 map gen port 0
10/03/2021 16:13:37                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:13:37                         pktgen: trex port <0> not support flow control
10/03/2021 16:13:37                         pktgen: check the trex port link status
10/03/2021 16:13:37                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:13:38                         pktgen: begin traffic ......
10/03/2021 16:13:38                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:13:48                         pktgen: begin get port statistic ...
10/03/2021 16:13:48                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:13:48                         pktgen: {0: {'ibytes': 49403832192,
     'ierrors': 0,
     'ipackets': 32545347,
     'obytes': 49403853444,
     'oerrors': 0,
     'opackets': 32545362,
     'rx_bps': 39530557440.0,
     'rx_bps_L1': 40051535680.0,
     'rx_pps': 3256114.0,
     'rx_util': 100.1288392,
     'tx_bps': 39533199360.0,
     'tx_bps_L1': 40054226800.0,
     'tx_pps': 3256421.5,
     'tx_util': 100.135567},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 33.505455017089844,
            'cpu_util': 14.748791694641113,
            'cpu_util_raw': 14.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17344547,
            'rx_bps': 39530557440.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3256114.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39533199360.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3256421.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49403832192,
           'ierrors': 0,
           'ipackets': 32545347,
           'obytes': 49403853444,
           'oerrors': 0,
           'opackets': 32545362,
           'rx_bps': 39530557440.0,
           'rx_bps_L1': 40051535680.0,
           'rx_pps': 3256114.0,
           'rx_util': 100.1288392,
           'tx_bps': 39533199360.0,
           'tx_bps_L1': 40054226800.0,
           'tx_pps': 3256421.5,
           'tx_util': 100.135567}}
10/03/2021 16:13:48                         pktgen: {'ibytes': 49403832192,
 'ierrors': 0,
 'ipackets': 32545347,
 'obytes': 49403853444,
 'oerrors': 0,
 'opackets': 32545362,
 'rx_bps': 39530557440.0,
 'rx_bps_L1': 40051535680.0,
 'rx_pps': 3256114.0,
 'rx_util': 100.1288392,
 'tx_bps': 39533199360.0,
 'tx_bps_L1': 40054226800.0,
 'tx_pps': 3256421.5,
 'tx_util': 100.135567}
10/03/2021 16:13:48                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39533199360.000000, tx_pps: 3256421.500000 
10/03/2021 16:13:48                         pktgen: {'ibytes': 49403832192,
 'ierrors': 0,
 'ipackets': 32545347,
 'obytes': 49403853444,
 'oerrors': 0,
 'opackets': 32545362,
 'rx_bps': 39530557440.0,
 'rx_bps_L1': 40051535680.0,
 'rx_pps': 3256114.0,
 'rx_util': 100.1288392,
 'tx_bps': 39533199360.0,
 'tx_bps_L1': 40054226800.0,
 'tx_pps': 3256421.5,
 'tx_util': 100.135567}
10/03/2021 16:13:48                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39530557440.000000, rx_pps: 3256114.000000
10/03/2021 16:13:48                         pktgen: throughput: pps_rx 3256114.000000, bps_rx 39530557440.000000
10/03/2021 16:13:48                         pktgen: traffic completed. 
10/03/2021 16:13:49 TestPVPMultiPathVhostPerformance: result of all framesize result
10/03/2021 16:13:49 TestPVPMultiPathVhostPerformance: 
+-------+----------------------+-------+------------+
| Frame |     Mode/RXD-TXD     | Mpps  | % linerate |
+=======+======================+=======+============+
| 64    | inoder mergeable off | 9.790 | 16.448     |
+-------+----------------------+-------+------------+
| 128   | inoder mergeable off | 9.029 | 26.725     |
+-------+----------------------+-------+------------+
| 256   | inoder mergeable off | 8.334 | 46.005     |
+-------+----------------------+-------+------------+
| 512   | inoder mergeable off | 5.699 | 60.642     |
+-------+----------------------+-------+------------+
| 1024  | inoder mergeable off | 4.368 | 91.197     |
+-------+----------------------+-------+------------+
| 1518  | inoder mergeable off | 3.256 | 100.158    |
+-------+----------------------+-------+------------+
10/03/2021 16:13:49 TestPVPMultiPathVhostPerformance: 
+-------+--------------+------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps    | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+============+============+=====================+=======================+
| 64    | 1024         | 9.790 Mpps | 16.448%    | 9.929 Mpps          | -0.139 Mpps           |
+-------+--------------+------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.256 Mpps | 100.158%   | 3.242 Mpps          | 0.014 Mpps            |
+-------+--------------+------------+------------+---------------------+-----------------------+
10/03/2021 16:13:49 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.496450
10/03/2021 16:13:49 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.139000
10/03/2021 16:13:49 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162100
10/03/2021 16:13:49 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.014000
10/03/2021 16:13:49 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_inorder_normal Result PASSED:
10/03/2021 16:13:49             dut.10.240.183.214: kill_all: called by dut and prefix list has value.
10/03/2021 16:13:50 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_mergeable Begin
10/03/2021 16:13:51             dut.10.240.183.214: 
10/03/2021 16:13:51                         tester: 
10/03/2021 16:13:51             dut.10.240.183.214: rm -rf ./vhost.out
10/03/2021 16:13:51             dut.10.240.183.214: 
10/03/2021 16:13:51             dut.10.240.183.214: rm -rf ./vhost-net*
10/03/2021 16:13:51             dut.10.240.183.214: 
10/03/2021 16:13:51             dut.10.240.183.214: killall -s INT dpdk-testpmd 
10/03/2021 16:13:51             dut.10.240.183.214: dpdk-testpmd: no process found
10/03/2021 16:13:51             dut.10.240.183.214: killall -s INT qemu-system-x86_64
10/03/2021 16:13:51             dut.10.240.183.214: qemu-system-x86_64: no process found
10/03/2021 16:14:01             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
10/03/2021 16:14:02             dut.10.240.183.214: 2048
10/03/2021 16:14:13 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
10/03/2021 16:14:13                         tester: ls -d /tmp
10/03/2021 16:14:13                         tester: /tmp
10/03/2021 16:14:13                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:14:14                         pktgen: test port 0 map gen port 0
10/03/2021 16:14:14                         pktgen: test port 0 map gen port 0
10/03/2021 16:14:14                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:14:14                         pktgen: trex port <0> not support flow control
10/03/2021 16:14:14                         pktgen: check the trex port link status
10/03/2021 16:14:14                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:14:14                         pktgen: begin traffic ......
10/03/2021 16:14:14                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:14:24                         pktgen: begin get port statistic ...
10/03/2021 16:14:24                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:14:24                         pktgen: {0: {'ibytes': 5722418432,
     'ierrors': 0,
     'ipackets': 89412788,
     'obytes': 17347359232,
     'oerrors': 0,
     'opackets': 271052520,
     'rx_bps': 4569348608.0,
     'rx_bps_L1': 5997271008.0,
     'rx_pps': 8924515.0,
     'rx_util': 14.99317752,
     'tx_bps': 13869027328.0,
     'tx_bps_L1': 18203097728.0,
     'tx_pps': 27087940.0,
     'tx_util': 45.50774432},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 1.8510310649871826,
            'cpu_util': 93.6574478149414,
            'cpu_util_raw': 99.4375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 139144350,
            'rx_bps': 4569348608.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9299678208.0,
            'rx_pps': 8924515.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13869027328.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 27087940.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 5722418432,
           'ierrors': 0,
           'ipackets': 89412788,
           'obytes': 17347359232,
           'oerrors': 0,
           'opackets': 271052520,
           'rx_bps': 4569348608.0,
           'rx_bps_L1': 5997271008.0,
           'rx_pps': 8924515.0,
           'rx_util': 14.99317752,
           'tx_bps': 13869027328.0,
           'tx_bps_L1': 18203097728.0,
           'tx_pps': 27087940.0,
           'tx_util': 45.50774432}}
10/03/2021 16:14:24                         pktgen: {'ibytes': 5722418432,
 'ierrors': 0,
 'ipackets': 89412788,
 'obytes': 17347359232,
 'oerrors': 0,
 'opackets': 271052520,
 'rx_bps': 4569348608.0,
 'rx_bps_L1': 5997271008.0,
 'rx_pps': 8924515.0,
 'rx_util': 14.99317752,
 'tx_bps': 13869027328.0,
 'tx_bps_L1': 18203097728.0,
 'tx_pps': 27087940.0,
 'tx_util': 45.50774432}
10/03/2021 16:14:24                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13869027328.000000, tx_pps: 27087940.000000 
10/03/2021 16:14:24                         pktgen: {'ibytes': 5722418432,
 'ierrors': 0,
 'ipackets': 89412788,
 'obytes': 17347359232,
 'oerrors': 0,
 'opackets': 271052520,
 'rx_bps': 4569348608.0,
 'rx_bps_L1': 5997271008.0,
 'rx_pps': 8924515.0,
 'rx_util': 14.99317752,
 'tx_bps': 13869027328.0,
 'tx_bps_L1': 18203097728.0,
 'tx_pps': 27087940.0,
 'tx_util': 45.50774432}
10/03/2021 16:14:24                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4569348608.000000, rx_pps: 8924515.000000
10/03/2021 16:14:24                         pktgen: throughput: pps_rx 8924515.000000, bps_rx 4569348608.000000
10/03/2021 16:14:24                         pktgen: traffic completed. 
10/03/2021 16:14:24 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
10/03/2021 16:14:24                         tester: ls -d /tmp
10/03/2021 16:14:24                         tester: /tmp
10/03/2021 16:14:24                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:14:26                         pktgen: test port 0 map gen port 0
10/03/2021 16:14:26                         pktgen: test port 0 map gen port 0
10/03/2021 16:14:26                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:14:26                         pktgen: trex port <0> not support flow control
10/03/2021 16:14:26                         pktgen: check the trex port link status
10/03/2021 16:14:26                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:14:26                         pktgen: begin traffic ......
10/03/2021 16:14:26                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:14:36                         pktgen: begin get port statistic ...
10/03/2021 16:14:36                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:14:36                         pktgen: {0: {'ibytes': 10752227200,
     'ierrors': 0,
     'ipackets': 84001775,
     'obytes': 28080110464,
     'oerrors': 0,
     'opackets': 219375892,
     'rx_bps': 8581732352.0,
     'rx_bps_L1': 9923165312.0,
     'rx_pps': 8383956.0,
     'rx_util': 24.807913279999998,
     'tx_bps': 22437167104.0,
     'tx_bps_L1': 25944601344.0,
     'tx_pps': 21921464.0,
     'tx_util': 64.86150336},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 2.8909318447113037,
            'cpu_util': 97.01528930664062,
            'cpu_util_raw': 99.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 141874522,
            'rx_bps': 8581732352.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 13855435776.0,
            'rx_pps': 8383956.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 22437167104.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21921464.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 10752227200,
           'ierrors': 0,
           'ipackets': 84001775,
           'obytes': 28080110464,
           'oerrors': 0,
           'opackets': 219375892,
           'rx_bps': 8581732352.0,
           'rx_bps_L1': 9923165312.0,
           'rx_pps': 8383956.0,
           'rx_util': 24.807913279999998,
           'tx_bps': 22437167104.0,
           'tx_bps_L1': 25944601344.0,
           'tx_pps': 21921464.0,
           'tx_util': 64.86150336}}
10/03/2021 16:14:36                         pktgen: {'ibytes': 10752227200,
 'ierrors': 0,
 'ipackets': 84001775,
 'obytes': 28080110464,
 'oerrors': 0,
 'opackets': 219375892,
 'rx_bps': 8581732352.0,
 'rx_bps_L1': 9923165312.0,
 'rx_pps': 8383956.0,
 'rx_util': 24.807913279999998,
 'tx_bps': 22437167104.0,
 'tx_bps_L1': 25944601344.0,
 'tx_pps': 21921464.0,
 'tx_util': 64.86150336}
10/03/2021 16:14:36                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 22437167104.000000, tx_pps: 21921464.000000 
10/03/2021 16:14:36                         pktgen: {'ibytes': 10752227200,
 'ierrors': 0,
 'ipackets': 84001775,
 'obytes': 28080110464,
 'oerrors': 0,
 'opackets': 219375892,
 'rx_bps': 8581732352.0,
 'rx_bps_L1': 9923165312.0,
 'rx_pps': 8383956.0,
 'rx_util': 24.807913279999998,
 'tx_bps': 22437167104.0,
 'tx_bps_L1': 25944601344.0,
 'tx_pps': 21921464.0,
 'tx_util': 64.86150336}
10/03/2021 16:14:36                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 8581732352.000000, rx_pps: 8383956.000000
10/03/2021 16:14:36                         pktgen: throughput: pps_rx 8383956.000000, bps_rx 8581732352.000000
10/03/2021 16:14:36                         pktgen: traffic completed. 
10/03/2021 16:14:36 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
10/03/2021 16:14:36                         tester: ls -d /tmp
10/03/2021 16:14:36                         tester: /tmp
10/03/2021 16:14:36                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:14:37                         pktgen: test port 0 map gen port 0
10/03/2021 16:14:37                         pktgen: test port 0 map gen port 0
10/03/2021 16:14:37                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:14:37                         pktgen: trex port <0> not support flow control
10/03/2021 16:14:37                         pktgen: check the trex port link status
10/03/2021 16:14:37                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:14:37                         pktgen: begin traffic ......
10/03/2021 16:14:37                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:14:47                         pktgen: begin get port statistic ...
10/03/2021 16:14:47                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:14:47                         pktgen: {0: {'ibytes': 19478398464,
     'ierrors': 0,
     'ipackets': 76087494,
     'obytes': 46391675392,
     'oerrors': 0,
     'opackets': 181217505,
     'rx_bps': 15531488256.0,
     'rx_bps_L1': 16745201536.000002,
     'rx_pps': 7585708.0,
     'rx_util': 41.863003840000005,
     'tx_bps': 37014974464.0,
     'tx_bps_L1': 39907597184.0,
     'tx_pps': 18078892.0,
     'tx_util': 99.76899296},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 53.059112548828125,
            'cpu_util': 8.720220565795898,
            'cpu_util_raw': 3.6875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 2021647,
            'rx_bps': 15531488256.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 21483485184.0,
            'rx_pps': 7585708.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37014974464.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18078892.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 19478398464,
           'ierrors': 0,
           'ipackets': 76087494,
           'obytes': 46391675392,
           'oerrors': 0,
           'opackets': 181217505,
           'rx_bps': 15531488256.0,
           'rx_bps_L1': 16745201536.000002,
           'rx_pps': 7585708.0,
           'rx_util': 41.863003840000005,
           'tx_bps': 37014974464.0,
           'tx_bps_L1': 39907597184.0,
           'tx_pps': 18078892.0,
           'tx_util': 99.76899296}}
10/03/2021 16:14:47                         pktgen: {'ibytes': 19478398464,
 'ierrors': 0,
 'ipackets': 76087494,
 'obytes': 46391675392,
 'oerrors': 0,
 'opackets': 181217505,
 'rx_bps': 15531488256.0,
 'rx_bps_L1': 16745201536.000002,
 'rx_pps': 7585708.0,
 'rx_util': 41.863003840000005,
 'tx_bps': 37014974464.0,
 'tx_bps_L1': 39907597184.0,
 'tx_pps': 18078892.0,
 'tx_util': 99.76899296}
10/03/2021 16:14:47                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37014974464.000000, tx_pps: 18078892.000000 
10/03/2021 16:14:47                         pktgen: {'ibytes': 19478398464,
 'ierrors': 0,
 'ipackets': 76087494,
 'obytes': 46391675392,
 'oerrors': 0,
 'opackets': 181217505,
 'rx_bps': 15531488256.0,
 'rx_bps_L1': 16745201536.000002,
 'rx_pps': 7585708.0,
 'rx_util': 41.863003840000005,
 'tx_bps': 37014974464.0,
 'tx_bps_L1': 39907597184.0,
 'tx_pps': 18078892.0,
 'tx_util': 99.76899296}
10/03/2021 16:14:47                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 15531488256.000000, rx_pps: 7585708.000000
10/03/2021 16:14:47                         pktgen: throughput: pps_rx 7585708.000000, bps_rx 15531488256.000000
10/03/2021 16:14:47                         pktgen: traffic completed. 
10/03/2021 16:14:47 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
10/03/2021 16:14:47                         tester: ls -d /tmp
10/03/2021 16:14:48                         tester: /tmp
10/03/2021 16:14:48                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:14:49                         pktgen: test port 0 map gen port 0
10/03/2021 16:14:49                         pktgen: test port 0 map gen port 0
10/03/2021 16:14:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:14:49                         pktgen: trex port <0> not support flow control
10/03/2021 16:14:49                         pktgen: check the trex port link status
10/03/2021 16:14:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:14:49                         pktgen: begin traffic ......
10/03/2021 16:14:49                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:14:59                         pktgen: begin get port statistic ...
10/03/2021 16:14:59                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:14:59                         pktgen: {0: {'ibytes': 29114505216,
     'ierrors': 0,
     'ipackets': 56864276,
     'obytes': 48169876480,
     'oerrors': 0,
     'opackets': 94081798,
     'rx_bps': 23281713152.0,
     'rx_bps_L1': 24191533552.0,
     'rx_pps': 5686377.5,
     'rx_util': 60.47883388,
     'tx_bps': 38539546624.0,
     'tx_bps_L1': 40045900864.0,
     'tx_pps': 9414714.0,
     'tx_util': 100.11475216000001},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.510642051696777,
            'cpu_util': 56.60493469238281,
            'cpu_util_raw': 60.875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 82691104,
            'rx_bps': 23281713152.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 15257834496.0,
            'rx_pps': 5686377.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38539546624.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9414714.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 29114505216,
           'ierrors': 0,
           'ipackets': 56864276,
           'obytes': 48169876480,
           'oerrors': 0,
           'opackets': 94081798,
           'rx_bps': 23281713152.0,
           'rx_bps_L1': 24191533552.0,
           'rx_pps': 5686377.5,
           'rx_util': 60.47883388,
           'tx_bps': 38539546624.0,
           'tx_bps_L1': 40045900864.0,
           'tx_pps': 9414714.0,
           'tx_util': 100.11475216000001}}
10/03/2021 16:14:59                         pktgen: {'ibytes': 29114505216,
 'ierrors': 0,
 'ipackets': 56864276,
 'obytes': 48169876480,
 'oerrors': 0,
 'opackets': 94081798,
 'rx_bps': 23281713152.0,
 'rx_bps_L1': 24191533552.0,
 'rx_pps': 5686377.5,
 'rx_util': 60.47883388,
 'tx_bps': 38539546624.0,
 'tx_bps_L1': 40045900864.0,
 'tx_pps': 9414714.0,
 'tx_util': 100.11475216000001}
10/03/2021 16:14:59                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38539546624.000000, tx_pps: 9414714.000000 
10/03/2021 16:14:59                         pktgen: {'ibytes': 29114505216,
 'ierrors': 0,
 'ipackets': 56864276,
 'obytes': 48169876480,
 'oerrors': 0,
 'opackets': 94081798,
 'rx_bps': 23281713152.0,
 'rx_bps_L1': 24191533552.0,
 'rx_pps': 5686377.5,
 'rx_util': 60.47883388,
 'tx_bps': 38539546624.0,
 'tx_bps_L1': 40045900864.0,
 'tx_pps': 9414714.0,
 'tx_util': 100.11475216000001}
10/03/2021 16:14:59                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 23281713152.000000, rx_pps: 5686377.500000
10/03/2021 16:14:59                         pktgen: throughput: pps_rx 5686377.500000, bps_rx 23281713152.000000
10/03/2021 16:14:59                         pktgen: traffic completed. 
10/03/2021 16:14:59 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
10/03/2021 16:14:59                         tester: ls -d /tmp
10/03/2021 16:14:59                         tester: /tmp
10/03/2021 16:14:59                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:15:01                         pktgen: test port 0 map gen port 0
10/03/2021 16:15:01                         pktgen: test port 0 map gen port 0
10/03/2021 16:15:01                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:15:01                         pktgen: trex port <0> not support flow control
10/03/2021 16:15:01                         pktgen: check the trex port link status
10/03/2021 16:15:01                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:15:01                         pktgen: begin traffic ......
10/03/2021 16:15:01                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:15:11                         pktgen: begin get port statistic ...
10/03/2021 16:15:11                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:15:11                         pktgen: {0: {'ibytes': 47070432256,
     'ierrors': 0,
     'ipackets': 45967225,
     'obytes': 49091705856,
     'oerrors': 0,
     'opackets': 47941125,
     'rx_bps': 37545058304.0,
     'rx_bps_L1': 38278543344.0,
     'rx_pps': 4584281.5,
     'rx_util': 95.69635836,
     'tx_bps': 39188082688.0,
     'tx_bps_L1': 39953778208.0,
     'tx_pps': 4785597.0,
     'tx_util': 99.88444552},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 16.45108413696289,
            'cpu_util': 29.776216506958008,
            'cpu_util_raw': 30.125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 37430108,
            'rx_bps': 37545058304.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4584281.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39188082688.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4785597.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 47070432256,
           'ierrors': 0,
           'ipackets': 45967225,
           'obytes': 49091705856,
           'oerrors': 0,
           'opackets': 47941125,
           'rx_bps': 37545058304.0,
           'rx_bps_L1': 38278543344.0,
           'rx_pps': 4584281.5,
           'rx_util': 95.69635836,
           'tx_bps': 39188082688.0,
           'tx_bps_L1': 39953778208.0,
           'tx_pps': 4785597.0,
           'tx_util': 99.88444552}}
10/03/2021 16:15:11                         pktgen: {'ibytes': 47070432256,
 'ierrors': 0,
 'ipackets': 45967225,
 'obytes': 49091705856,
 'oerrors': 0,
 'opackets': 47941125,
 'rx_bps': 37545058304.0,
 'rx_bps_L1': 38278543344.0,
 'rx_pps': 4584281.5,
 'rx_util': 95.69635836,
 'tx_bps': 39188082688.0,
 'tx_bps_L1': 39953778208.0,
 'tx_pps': 4785597.0,
 'tx_util': 99.88444552}
10/03/2021 16:15:11                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39188082688.000000, tx_pps: 4785597.000000 
10/03/2021 16:15:11                         pktgen: {'ibytes': 47070432256,
 'ierrors': 0,
 'ipackets': 45967225,
 'obytes': 49091705856,
 'oerrors': 0,
 'opackets': 47941125,
 'rx_bps': 37545058304.0,
 'rx_bps_L1': 38278543344.0,
 'rx_pps': 4584281.5,
 'rx_util': 95.69635836,
 'tx_bps': 39188082688.0,
 'tx_bps_L1': 39953778208.0,
 'tx_pps': 4785597.0,
 'tx_util': 99.88444552}
10/03/2021 16:15:11                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 37545058304.000000, rx_pps: 4584281.500000
10/03/2021 16:15:11                         pktgen: throughput: pps_rx 4584281.500000, bps_rx 37545058304.000000
10/03/2021 16:15:11                         pktgen: traffic completed. 
10/03/2021 16:15:11 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
10/03/2021 16:15:11                         tester: ls -d /tmp
10/03/2021 16:15:11                         tester: /tmp
10/03/2021 16:15:11                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:15:12                         pktgen: test port 0 map gen port 0
10/03/2021 16:15:12                         pktgen: test port 0 map gen port 0
10/03/2021 16:15:12                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:15:12                         pktgen: trex port <0> not support flow control
10/03/2021 16:15:12                         pktgen: check the trex port link status
10/03/2021 16:15:12                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:15:12                         pktgen: begin traffic ......
10/03/2021 16:15:12                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:15:22                         pktgen: begin get port statistic ...
10/03/2021 16:15:22                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:15:22                         pktgen: {0: {'ibytes': 49402333926,
     'ierrors': 0,
     'ipackets': 32544361,
     'obytes': 49402355178,
     'oerrors': 0,
     'opackets': 32544375,
     'rx_bps': 39538823168.0,
     'rx_bps_L1': 40059875447.99999,
     'rx_pps': 3256576.75,
     'rx_util': 100.14968861999998,
     'tx_bps': 39539740672.0,
     'tx_bps_L1': 40060810272.0,
     'tx_pps': 3256685.0,
     'tx_util': 100.15202568},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 33.37380599975586,
            'cpu_util': 14.80942153930664,
            'cpu_util_raw': 14.8125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17217093,
            'rx_bps': 39538823168.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3256576.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39539740672.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3256685.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49402333926,
           'ierrors': 0,
           'ipackets': 32544361,
           'obytes': 49402355178,
           'oerrors': 0,
           'opackets': 32544375,
           'rx_bps': 39538823168.0,
           'rx_bps_L1': 40059875447.99999,
           'rx_pps': 3256576.75,
           'rx_util': 100.14968861999998,
           'tx_bps': 39539740672.0,
           'tx_bps_L1': 40060810272.0,
           'tx_pps': 3256685.0,
           'tx_util': 100.15202568}}
10/03/2021 16:15:22                         pktgen: {'ibytes': 49402333926,
 'ierrors': 0,
 'ipackets': 32544361,
 'obytes': 49402355178,
 'oerrors': 0,
 'opackets': 32544375,
 'rx_bps': 39538823168.0,
 'rx_bps_L1': 40059875447.99999,
 'rx_pps': 3256576.75,
 'rx_util': 100.14968861999998,
 'tx_bps': 39539740672.0,
 'tx_bps_L1': 40060810272.0,
 'tx_pps': 3256685.0,
 'tx_util': 100.15202568}
10/03/2021 16:15:22                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39539740672.000000, tx_pps: 3256685.000000 
10/03/2021 16:15:22                         pktgen: {'ibytes': 49402333926,
 'ierrors': 0,
 'ipackets': 32544361,
 'obytes': 49402355178,
 'oerrors': 0,
 'opackets': 32544375,
 'rx_bps': 39538823168.0,
 'rx_bps_L1': 40059875447.99999,
 'rx_pps': 3256576.75,
 'rx_util': 100.14968861999998,
 'tx_bps': 39539740672.0,
 'tx_bps_L1': 40060810272.0,
 'tx_pps': 3256685.0,
 'tx_util': 100.15202568}
10/03/2021 16:15:22                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39538823168.000000, rx_pps: 3256576.750000
10/03/2021 16:15:22                         pktgen: throughput: pps_rx 3256576.750000, bps_rx 39538823168.000000
10/03/2021 16:15:22                         pktgen: traffic completed. 
10/03/2021 16:15:24 TestPVPMultiPathVhostPerformance: result of all framesize result
10/03/2021 16:15:24 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------+------------+
| Frame | Mode/RXD-TXD | Mpps  | % linerate |
+=======+==============+=======+============+
| 64    | mergeable on | 8.925 | 14.993     |
+-------+--------------+-------+------------+
| 128   | mergeable on | 8.384 | 24.817     |
+-------+--------------+-------+------------+
| 256   | mergeable on | 7.586 | 41.873     |
+-------+--------------+-------+------------+
| 512   | mergeable on | 5.686 | 60.503     |
+-------+--------------+-------+------------+
| 1024  | mergeable on | 4.584 | 95.720     |
+-------+--------------+-------+------------+
| 1518  | mergeable on | 3.257 | 100.172    |
+-------+--------------+-------+------------+
10/03/2021 16:15:24 TestPVPMultiPathVhostPerformance: 
+-------+--------------+------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps    | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+============+============+=====================+=======================+
| 64    | 1024         | 8.925 Mpps | 14.993%    | 9.560 Mpps          | -0.635 Mpps           |
+-------+--------------+------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.257 Mpps | 100.172%   | 3.255 Mpps          | 0.002 Mpps            |
+-------+--------------+------------+------------+---------------------+-----------------------+
10/03/2021 16:15:24 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.478000
10/03/2021 16:15:24 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.635000
10/03/2021 16:15:24 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162750
10/03/2021 16:15:24 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.002000
10/03/2021 16:15:24 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_mergeable Result FAILED: 'Exceeded Gap'
10/03/2021 16:15:24             dut.10.240.183.214: kill_all: called by dut and prefix list has value.
10/03/2021 16:15:25 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_normal Begin
10/03/2021 16:15:25             dut.10.240.183.214: 
10/03/2021 16:15:26                         tester: 
10/03/2021 16:15:26             dut.10.240.183.214: rm -rf ./vhost.out
10/03/2021 16:15:26             dut.10.240.183.214: 
10/03/2021 16:15:26             dut.10.240.183.214: rm -rf ./vhost-net*
10/03/2021 16:15:26             dut.10.240.183.214: 
10/03/2021 16:15:26             dut.10.240.183.214: killall -s INT dpdk-testpmd 
10/03/2021 16:15:26             dut.10.240.183.214: dpdk-testpmd: no process found
10/03/2021 16:15:26             dut.10.240.183.214: killall -s INT qemu-system-x86_64
10/03/2021 16:15:26             dut.10.240.183.214: qemu-system-x86_64: no process found
10/03/2021 16:15:36             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
10/03/2021 16:15:36             dut.10.240.183.214: 2048
10/03/2021 16:15:47 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
10/03/2021 16:15:47                         tester: ls -d /tmp
10/03/2021 16:15:48                         tester: /tmp
10/03/2021 16:15:48                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:15:49                         pktgen: test port 0 map gen port 0
10/03/2021 16:15:49                         pktgen: test port 0 map gen port 0
10/03/2021 16:15:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:15:49                         pktgen: trex port <0> not support flow control
10/03/2021 16:15:49                         pktgen: check the trex port link status
10/03/2021 16:15:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:15:49                         pktgen: begin traffic ......
10/03/2021 16:15:49                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:15:59                         pktgen: begin get port statistic ...
10/03/2021 16:15:59                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:15:59                         pktgen: {0: {'ibytes': 6201071680,
     'ierrors': 0,
     'ipackets': 96891764,
     'obytes': 17503542592,
     'oerrors': 0,
     'opackets': 273492880,
     'rx_bps': 4957584896.0,
     'rx_bps_L1': 6506829056.0,
     'rx_pps': 9682776.0,
     'rx_util': 16.26707264,
     'tx_bps': 14012035072.0,
     'tx_bps_L1': 18390795712.0,
     'tx_pps': 27367254.0,
     'tx_util': 45.976989280000005},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 1.8909599781036377,
            'cpu_util': 92.6251449584961,
            'cpu_util_raw': 99.375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 139137599,
            'rx_bps': 4957584896.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9054450688.0,
            'rx_pps': 9682776.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 14012035072.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 27367254.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 6201071680,
           'ierrors': 0,
           'ipackets': 96891764,
           'obytes': 17503542592,
           'oerrors': 0,
           'opackets': 273492880,
           'rx_bps': 4957584896.0,
           'rx_bps_L1': 6506829056.0,
           'rx_pps': 9682776.0,
           'rx_util': 16.26707264,
           'tx_bps': 14012035072.0,
           'tx_bps_L1': 18390795712.0,
           'tx_pps': 27367254.0,
           'tx_util': 45.976989280000005}}
10/03/2021 16:15:59                         pktgen: {'ibytes': 6201071680,
 'ierrors': 0,
 'ipackets': 96891764,
 'obytes': 17503542592,
 'oerrors': 0,
 'opackets': 273492880,
 'rx_bps': 4957584896.0,
 'rx_bps_L1': 6506829056.0,
 'rx_pps': 9682776.0,
 'rx_util': 16.26707264,
 'tx_bps': 14012035072.0,
 'tx_bps_L1': 18390795712.0,
 'tx_pps': 27367254.0,
 'tx_util': 45.976989280000005}
10/03/2021 16:15:59                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 14012035072.000000, tx_pps: 27367254.000000 
10/03/2021 16:15:59                         pktgen: {'ibytes': 6201071680,
 'ierrors': 0,
 'ipackets': 96891764,
 'obytes': 17503542592,
 'oerrors': 0,
 'opackets': 273492880,
 'rx_bps': 4957584896.0,
 'rx_bps_L1': 6506829056.0,
 'rx_pps': 9682776.0,
 'rx_util': 16.26707264,
 'tx_bps': 14012035072.0,
 'tx_bps_L1': 18390795712.0,
 'tx_pps': 27367254.0,
 'tx_util': 45.976989280000005}
10/03/2021 16:15:59                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4957584896.000000, rx_pps: 9682776.000000
10/03/2021 16:15:59                         pktgen: throughput: pps_rx 9682776.000000, bps_rx 4957584896.000000
10/03/2021 16:15:59                         pktgen: traffic completed. 
10/03/2021 16:15:59 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
10/03/2021 16:15:59                         tester: ls -d /tmp
10/03/2021 16:15:59                         tester: /tmp
10/03/2021 16:15:59                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:16:01                         pktgen: test port 0 map gen port 0
10/03/2021 16:16:01                         pktgen: test port 0 map gen port 0
10/03/2021 16:16:01                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:16:01                         pktgen: trex port <0> not support flow control
10/03/2021 16:16:01                         pktgen: check the trex port link status
10/03/2021 16:16:01                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:16:01                         pktgen: begin traffic ......
10/03/2021 16:16:01                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:16:11                         pktgen: begin get port statistic ...
10/03/2021 16:16:11                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:16:11                         pktgen: {0: {'ibytes': 11546657664,
     'ierrors': 0,
     'ipackets': 90208263,
     'obytes': 28122433536,
     'oerrors': 0,
     'opackets': 219706528,
     'rx_bps': 9193512960.0,
     'rx_bps_L1': 10630424320.0,
     'rx_pps': 8980696.0,
     'rx_util': 26.5760608,
     'tx_bps': 22418178048.0,
     'tx_bps_L1': 25922213247.999996,
     'tx_pps': 21900220.0,
     'tx_util': 64.80553311999999},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 2.8996834754943848,
            'cpu_util': 96.640625,
            'cpu_util_raw': 99.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 141735734,
            'rx_bps': 9193512960.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 13224665088.0,
            'rx_pps': 8980696.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 22418178048.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21900220.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 11546657664,
           'ierrors': 0,
           'ipackets': 90208263,
           'obytes': 28122433536,
           'oerrors': 0,
           'opackets': 219706528,
           'rx_bps': 9193512960.0,
           'rx_bps_L1': 10630424320.0,
           'rx_pps': 8980696.0,
           'rx_util': 26.5760608,
           'tx_bps': 22418178048.0,
           'tx_bps_L1': 25922213247.999996,
           'tx_pps': 21900220.0,
           'tx_util': 64.80553311999999}}
10/03/2021 16:16:11                         pktgen: {'ibytes': 11546657664,
 'ierrors': 0,
 'ipackets': 90208263,
 'obytes': 28122433536,
 'oerrors': 0,
 'opackets': 219706528,
 'rx_bps': 9193512960.0,
 'rx_bps_L1': 10630424320.0,
 'rx_pps': 8980696.0,
 'rx_util': 26.5760608,
 'tx_bps': 22418178048.0,
 'tx_bps_L1': 25922213247.999996,
 'tx_pps': 21900220.0,
 'tx_util': 64.80553311999999}
10/03/2021 16:16:11                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 22418178048.000000, tx_pps: 21900220.000000 
10/03/2021 16:16:11                         pktgen: {'ibytes': 11546657664,
 'ierrors': 0,
 'ipackets': 90208263,
 'obytes': 28122433536,
 'oerrors': 0,
 'opackets': 219706528,
 'rx_bps': 9193512960.0,
 'rx_bps_L1': 10630424320.0,
 'rx_pps': 8980696.0,
 'rx_util': 26.5760608,
 'tx_bps': 22418178048.0,
 'tx_bps_L1': 25922213247.999996,
 'tx_pps': 21900220.0,
 'tx_util': 64.80553311999999}
10/03/2021 16:16:11                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 9193512960.000000, rx_pps: 8980696.000000
10/03/2021 16:16:11                         pktgen: throughput: pps_rx 8980696.000000, bps_rx 9193512960.000000
10/03/2021 16:16:11                         pktgen: traffic completed. 
10/03/2021 16:16:11 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
10/03/2021 16:16:11                         tester: ls -d /tmp
10/03/2021 16:16:11                         tester: /tmp
10/03/2021 16:16:11                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:16:12                         pktgen: test port 0 map gen port 0
10/03/2021 16:16:12                         pktgen: test port 0 map gen port 0
10/03/2021 16:16:12                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:16:12                         pktgen: trex port <0> not support flow control
10/03/2021 16:16:12                         pktgen: check the trex port link status
10/03/2021 16:16:12                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:16:12                         pktgen: begin traffic ......
10/03/2021 16:16:12                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:16:22                         pktgen: begin get port statistic ...
10/03/2021 16:16:22                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:16:22                         pktgen: {0: {'ibytes': 20990089984,
     'ierrors': 0,
     'ipackets': 81992550,
     'obytes': 46398300160,
     'oerrors': 0,
     'opackets': 181243383,
     'rx_bps': 16738310144.0,
     'rx_bps_L1': 18046504384.0,
     'rx_pps': 8176214.0,
     'rx_util': 45.11626096,
     'tx_bps': 37021171712.0,
     'tx_bps_L1': 39914701312.0,
     'tx_pps': 18084560.0,
     'tx_util': 99.78675328},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 55.05529022216797,
            'cpu_util': 8.405452728271484,
            'cpu_util_raw': 4.4375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 1938302,
            'rx_bps': 16738310144.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 20282861568.0,
            'rx_pps': 8176214.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37021171712.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18084560.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 20990089984,
           'ierrors': 0,
           'ipackets': 81992550,
           'obytes': 46398300160,
           'oerrors': 0,
           'opackets': 181243383,
           'rx_bps': 16738310144.0,
           'rx_bps_L1': 18046504384.0,
           'rx_pps': 8176214.0,
           'rx_util': 45.11626096,
           'tx_bps': 37021171712.0,
           'tx_bps_L1': 39914701312.0,
           'tx_pps': 18084560.0,
           'tx_util': 99.78675328}}
10/03/2021 16:16:22                         pktgen: {'ibytes': 20990089984,
 'ierrors': 0,
 'ipackets': 81992550,
 'obytes': 46398300160,
 'oerrors': 0,
 'opackets': 181243383,
 'rx_bps': 16738310144.0,
 'rx_bps_L1': 18046504384.0,
 'rx_pps': 8176214.0,
 'rx_util': 45.11626096,
 'tx_bps': 37021171712.0,
 'tx_bps_L1': 39914701312.0,
 'tx_pps': 18084560.0,
 'tx_util': 99.78675328}
10/03/2021 16:16:22                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37021171712.000000, tx_pps: 18084560.000000 
10/03/2021 16:16:22                         pktgen: {'ibytes': 20990089984,
 'ierrors': 0,
 'ipackets': 81992550,
 'obytes': 46398300160,
 'oerrors': 0,
 'opackets': 181243383,
 'rx_bps': 16738310144.0,
 'rx_bps_L1': 18046504384.0,
 'rx_pps': 8176214.0,
 'rx_util': 45.11626096,
 'tx_bps': 37021171712.0,
 'tx_bps_L1': 39914701312.0,
 'tx_pps': 18084560.0,
 'tx_util': 99.78675328}
10/03/2021 16:16:22                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 16738310144.000000, rx_pps: 8176214.000000
10/03/2021 16:16:22                         pktgen: throughput: pps_rx 8176214.000000, bps_rx 16738310144.000000
10/03/2021 16:16:22                         pktgen: traffic completed. 
10/03/2021 16:16:22 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
10/03/2021 16:16:22                         tester: ls -d /tmp
10/03/2021 16:16:22                         tester: /tmp
10/03/2021 16:16:22                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:16:24                         pktgen: test port 0 map gen port 0
10/03/2021 16:16:24                         pktgen: test port 0 map gen port 0
10/03/2021 16:16:24                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:16:24                         pktgen: trex port <0> not support flow control
10/03/2021 16:16:24                         pktgen: check the trex port link status
10/03/2021 16:16:24                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:16:24                         pktgen: begin traffic ......
10/03/2021 16:16:24                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:16:34                         pktgen: begin get port statistic ...
10/03/2021 16:16:34                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:16:34                         pktgen: {0: {'ibytes': 28982886400,
     'ierrors': 0,
     'ipackets': 56607206,
     'obytes': 48174117888,
     'oerrors': 0,
     'opackets': 94090086,
     'rx_bps': 23116824576.0,
     'rx_bps_L1': 24020112096.0,
     'rx_pps': 5645547.0,
     'rx_util': 60.05028024,
     'tx_bps': 38430355456.0,
     'tx_bps_L1': 39932175936.0,
     'tx_pps': 9386378.0,
     'tx_util': 99.83043984},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.49774169921875,
            'cpu_util': 56.530250549316406,
            'cpu_util_raw': 61.1875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 83137229,
            'rx_bps': 23116824576.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 15313530880.0,
            'rx_pps': 5645547.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38430355456.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9386378.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 28982886400,
           'ierrors': 0,
           'ipackets': 56607206,
           'obytes': 48174117888,
           'oerrors': 0,
           'opackets': 94090086,
           'rx_bps': 23116824576.0,
           'rx_bps_L1': 24020112096.0,
           'rx_pps': 5645547.0,
           'rx_util': 60.05028024,
           'tx_bps': 38430355456.0,
           'tx_bps_L1': 39932175936.0,
           'tx_pps': 9386378.0,
           'tx_util': 99.83043984}}
10/03/2021 16:16:34                         pktgen: {'ibytes': 28982886400,
 'ierrors': 0,
 'ipackets': 56607206,
 'obytes': 48174117888,
 'oerrors': 0,
 'opackets': 94090086,
 'rx_bps': 23116824576.0,
 'rx_bps_L1': 24020112096.0,
 'rx_pps': 5645547.0,
 'rx_util': 60.05028024,
 'tx_bps': 38430355456.0,
 'tx_bps_L1': 39932175936.0,
 'tx_pps': 9386378.0,
 'tx_util': 99.83043984}
10/03/2021 16:16:34                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38430355456.000000, tx_pps: 9386378.000000 
10/03/2021 16:16:34                         pktgen: {'ibytes': 28982886400,
 'ierrors': 0,
 'ipackets': 56607206,
 'obytes': 48174117888,
 'oerrors': 0,
 'opackets': 94090086,
 'rx_bps': 23116824576.0,
 'rx_bps_L1': 24020112096.0,
 'rx_pps': 5645547.0,
 'rx_util': 60.05028024,
 'tx_bps': 38430355456.0,
 'tx_bps_L1': 39932175936.0,
 'tx_pps': 9386378.0,
 'tx_util': 99.83043984}
10/03/2021 16:16:34                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 23116824576.000000, rx_pps: 5645547.000000
10/03/2021 16:16:34                         pktgen: throughput: pps_rx 5645547.000000, bps_rx 23116824576.000000
10/03/2021 16:16:34                         pktgen: traffic completed. 
10/03/2021 16:16:34 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
10/03/2021 16:16:34                         tester: ls -d /tmp
10/03/2021 16:16:34                         tester: /tmp
10/03/2021 16:16:34                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:16:36                         pktgen: test port 0 map gen port 0
10/03/2021 16:16:36                         pktgen: test port 0 map gen port 0
10/03/2021 16:16:36                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:16:36                         pktgen: trex port <0> not support flow control
10/03/2021 16:16:36                         pktgen: check the trex port link status
10/03/2021 16:16:36                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:16:36                         pktgen: begin traffic ......
10/03/2021 16:16:36                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:16:46                         pktgen: begin get port statistic ...
10/03/2021 16:16:46                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:16:46                         pktgen: {0: {'ibytes': 46274492416,
     'ierrors': 0,
     'ipackets': 45189936,
     'obytes': 49093365760,
     'oerrors': 0,
     'opackets': 47942744,
     'rx_bps': 36931010560.0,
     'rx_bps_L1': 37652566400.0,
     'rx_pps': 4509724.0,
     'rx_util': 94.131416,
     'tx_bps': 39194963968.0,
     'tx_bps_L1': 39960901327.99999,
     'tx_pps': 4787108.5,
     'tx_util': 99.90225331999997},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 16.538259506225586,
            'cpu_util': 29.624462127685547,
            'cpu_util_raw': 30.5625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 36896201,
            'rx_bps': 36931010560.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4509724.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39194963968.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4787108.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 46274492416,
           'ierrors': 0,
           'ipackets': 45189936,
           'obytes': 49093365760,
           'oerrors': 0,
           'opackets': 47942744,
           'rx_bps': 36931010560.0,
           'rx_bps_L1': 37652566400.0,
           'rx_pps': 4509724.0,
           'rx_util': 94.131416,
           'tx_bps': 39194963968.0,
           'tx_bps_L1': 39960901327.99999,
           'tx_pps': 4787108.5,
           'tx_util': 99.90225331999997}}
10/03/2021 16:16:46                         pktgen: {'ibytes': 46274492416,
 'ierrors': 0,
 'ipackets': 45189936,
 'obytes': 49093365760,
 'oerrors': 0,
 'opackets': 47942744,
 'rx_bps': 36931010560.0,
 'rx_bps_L1': 37652566400.0,
 'rx_pps': 4509724.0,
 'rx_util': 94.131416,
 'tx_bps': 39194963968.0,
 'tx_bps_L1': 39960901327.99999,
 'tx_pps': 4787108.5,
 'tx_util': 99.90225331999997}
10/03/2021 16:16:46                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39194963968.000000, tx_pps: 4787108.500000 
10/03/2021 16:16:46                         pktgen: {'ibytes': 46274492416,
 'ierrors': 0,
 'ipackets': 45189936,
 'obytes': 49093365760,
 'oerrors': 0,
 'opackets': 47942744,
 'rx_bps': 36931010560.0,
 'rx_bps_L1': 37652566400.0,
 'rx_pps': 4509724.0,
 'rx_util': 94.131416,
 'tx_bps': 39194963968.0,
 'tx_bps_L1': 39960901327.99999,
 'tx_pps': 4787108.5,
 'tx_util': 99.90225331999997}
10/03/2021 16:16:46                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 36931010560.000000, rx_pps: 4509724.000000
10/03/2021 16:16:46                         pktgen: throughput: pps_rx 4509724.000000, bps_rx 36931010560.000000
10/03/2021 16:16:46                         pktgen: traffic completed. 
10/03/2021 16:16:46 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
10/03/2021 16:16:46                         tester: ls -d /tmp
10/03/2021 16:16:46                         tester: /tmp
10/03/2021 16:16:46                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:16:47                         pktgen: test port 0 map gen port 0
10/03/2021 16:16:47                         pktgen: test port 0 map gen port 0
10/03/2021 16:16:47                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:16:47                         pktgen: trex port <0> not support flow control
10/03/2021 16:16:47                         pktgen: check the trex port link status
10/03/2021 16:16:47                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:16:47                         pktgen: begin traffic ......
10/03/2021 16:16:47                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:16:57                         pktgen: begin get port statistic ...
10/03/2021 16:16:57                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:16:57                         pktgen: {0: {'ibytes': 49402678512,
     'ierrors': 0,
     'ipackets': 32544588,
     'obytes': 49402695210,
     'oerrors': 0,
     'opackets': 32544600,
     'rx_bps': 39406919680.0,
     'rx_bps_L1': 39926284560.0,
     'rx_pps': 3246030.5,
     'rx_util': 99.8157114,
     'tx_bps': 39408623616.0,
     'tx_bps_L1': 39928021456.0,
     'tx_pps': 3246236.5,
     'tx_util': 99.82005364},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 33.6053581237793,
            'cpu_util': 14.658609390258789,
            'cpu_util_raw': 14.9375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17450029,
            'rx_bps': 39406919680.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3246030.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39408623616.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3246236.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49402678512,
           'ierrors': 0,
           'ipackets': 32544588,
           'obytes': 49402695210,
           'oerrors': 0,
           'opackets': 32544600,
           'rx_bps': 39406919680.0,
           'rx_bps_L1': 39926284560.0,
           'rx_pps': 3246030.5,
           'rx_util': 99.8157114,
           'tx_bps': 39408623616.0,
           'tx_bps_L1': 39928021456.0,
           'tx_pps': 3246236.5,
           'tx_util': 99.82005364}}
10/03/2021 16:16:57                         pktgen: {'ibytes': 49402678512,
 'ierrors': 0,
 'ipackets': 32544588,
 'obytes': 49402695210,
 'oerrors': 0,
 'opackets': 32544600,
 'rx_bps': 39406919680.0,
 'rx_bps_L1': 39926284560.0,
 'rx_pps': 3246030.5,
 'rx_util': 99.8157114,
 'tx_bps': 39408623616.0,
 'tx_bps_L1': 39928021456.0,
 'tx_pps': 3246236.5,
 'tx_util': 99.82005364}
10/03/2021 16:16:57                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39408623616.000000, tx_pps: 3246236.500000 
10/03/2021 16:16:57                         pktgen: {'ibytes': 49402678512,
 'ierrors': 0,
 'ipackets': 32544588,
 'obytes': 49402695210,
 'oerrors': 0,
 'opackets': 32544600,
 'rx_bps': 39406919680.0,
 'rx_bps_L1': 39926284560.0,
 'rx_pps': 3246030.5,
 'rx_util': 99.8157114,
 'tx_bps': 39408623616.0,
 'tx_bps_L1': 39928021456.0,
 'tx_pps': 3246236.5,
 'tx_util': 99.82005364}
10/03/2021 16:16:57                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39406919680.000000, rx_pps: 3246030.500000
10/03/2021 16:16:57                         pktgen: throughput: pps_rx 3246030.500000, bps_rx 39406919680.000000
10/03/2021 16:16:57                         pktgen: traffic completed. 
10/03/2021 16:16:59 TestPVPMultiPathVhostPerformance: result of all framesize result
10/03/2021 16:16:59 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------+------------+
| Frame | Mode/RXD-TXD | Mpps  | % linerate |
+=======+==============+=======+============+
| 64    | normal       | 9.683 | 16.267     |
+-------+--------------+-------+------------+
| 128   | normal       | 8.981 | 26.583     |
+-------+--------------+-------+------------+
| 256   | normal       | 8.176 | 45.133     |
+-------+--------------+-------+------------+
| 512   | normal       | 5.646 | 60.069     |
+-------+--------------+-------+------------+
| 1024  | normal       | 4.510 | 94.163     |
+-------+--------------+-------+------------+
| 1518  | normal       | 3.246 | 99.848     |
+-------+--------------+-------+------------+
10/03/2021 16:16:59 TestPVPMultiPathVhostPerformance: 
+-------+--------------+------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps    | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+============+============+=====================+=======================+
| 64    | 1024         | 9.683 Mpps | 16.267%    | 9.796 Mpps          | -0.113 Mpps           |
+-------+--------------+------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.246 Mpps | 99.848%    | 3.247 Mpps          | -0.001 Mpps           |
+-------+--------------+------------+------------+---------------------+-----------------------+
10/03/2021 16:16:59 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.489800
10/03/2021 16:16:59 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.113000
10/03/2021 16:16:59 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162350
10/03/2021 16:16:59 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.001000
10/03/2021 16:16:59 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_normal Result PASSED:
10/03/2021 16:16:59             dut.10.240.183.214: kill_all: called by dut and prefix list has value.
10/03/2021 16:17:00 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_vector_rx Begin
10/03/2021 16:17:00             dut.10.240.183.214: 
10/03/2021 16:17:00                         tester: 
10/03/2021 16:17:00             dut.10.240.183.214: rm -rf ./vhost.out
10/03/2021 16:17:00             dut.10.240.183.214: 
10/03/2021 16:17:00             dut.10.240.183.214: rm -rf ./vhost-net*
10/03/2021 16:17:01             dut.10.240.183.214: 
10/03/2021 16:17:01             dut.10.240.183.214: killall -s INT dpdk-testpmd 
10/03/2021 16:17:01             dut.10.240.183.214: dpdk-testpmd: no process found
10/03/2021 16:17:01             dut.10.240.183.214: killall -s INT qemu-system-x86_64
10/03/2021 16:17:01             dut.10.240.183.214: qemu-system-x86_64: no process found
10/03/2021 16:17:11             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
10/03/2021 16:17:11             dut.10.240.183.214: 2048
10/03/2021 16:17:22 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
10/03/2021 16:17:22                         tester: ls -d /tmp
10/03/2021 16:17:22                         tester: /tmp
10/03/2021 16:17:22                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:17:24                         pktgen: test port 0 map gen port 0
10/03/2021 16:17:24                         pktgen: test port 0 map gen port 0
10/03/2021 16:17:24                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:17:24                         pktgen: trex port <0> not support flow control
10/03/2021 16:17:24                         pktgen: check the trex port link status
10/03/2021 16:17:24                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:17:24                         pktgen: begin traffic ......
10/03/2021 16:17:24                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:17:34                         pktgen: begin get port statistic ...
10/03/2021 16:17:34                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:17:34                         pktgen: {0: {'ibytes': 6421259776,
     'ierrors': 0,
     'ipackets': 100332184,
     'obytes': 17340806272,
     'oerrors': 0,
     'opackets': 270950148,
     'rx_bps': 5128996352.0,
     'rx_bps_L1': 6731806912.0,
     'rx_pps': 10017566.0,
     'rx_util': 16.82951728,
     'tx_bps': 13869916160.0,
     'tx_bps_L1': 18204263680.0,
     'tx_pps': 27089672.0,
     'tx_util': 45.5106592},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 1.8547033071517944,
            'cpu_util': 93.47799682617188,
            'cpu_util_raw': 99.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 138986724,
            'rx_bps': 5128996352.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8740920320.0,
            'rx_pps': 10017566.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13869916160.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 27089672.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 6421259776,
           'ierrors': 0,
           'ipackets': 100332184,
           'obytes': 17340806272,
           'oerrors': 0,
           'opackets': 270950148,
           'rx_bps': 5128996352.0,
           'rx_bps_L1': 6731806912.0,
           'rx_pps': 10017566.0,
           'rx_util': 16.82951728,
           'tx_bps': 13869916160.0,
           'tx_bps_L1': 18204263680.0,
           'tx_pps': 27089672.0,
           'tx_util': 45.5106592}}
10/03/2021 16:17:34                         pktgen: {'ibytes': 6421259776,
 'ierrors': 0,
 'ipackets': 100332184,
 'obytes': 17340806272,
 'oerrors': 0,
 'opackets': 270950148,
 'rx_bps': 5128996352.0,
 'rx_bps_L1': 6731806912.0,
 'rx_pps': 10017566.0,
 'rx_util': 16.82951728,
 'tx_bps': 13869916160.0,
 'tx_bps_L1': 18204263680.0,
 'tx_pps': 27089672.0,
 'tx_util': 45.5106592}
10/03/2021 16:17:34                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13869916160.000000, tx_pps: 27089672.000000 
10/03/2021 16:17:34                         pktgen: {'ibytes': 6421259776,
 'ierrors': 0,
 'ipackets': 100332184,
 'obytes': 17340806272,
 'oerrors': 0,
 'opackets': 270950148,
 'rx_bps': 5128996352.0,
 'rx_bps_L1': 6731806912.0,
 'rx_pps': 10017566.0,
 'rx_util': 16.82951728,
 'tx_bps': 13869916160.0,
 'tx_bps_L1': 18204263680.0,
 'tx_pps': 27089672.0,
 'tx_util': 45.5106592}
10/03/2021 16:17:34                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 5128996352.000000, rx_pps: 10017566.000000
10/03/2021 16:17:34                         pktgen: throughput: pps_rx 10017566.000000, bps_rx 5128996352.000000
10/03/2021 16:17:34                         pktgen: traffic completed. 
10/03/2021 16:17:34 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
10/03/2021 16:17:34                         tester: ls -d /tmp
10/03/2021 16:17:34                         tester: /tmp
10/03/2021 16:17:34                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:17:35                         pktgen: test port 0 map gen port 0
10/03/2021 16:17:35                         pktgen: test port 0 map gen port 0
10/03/2021 16:17:36                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:17:36                         pktgen: trex port <0> not support flow control
10/03/2021 16:17:36                         pktgen: check the trex port link status
10/03/2021 16:17:36                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:17:36                         pktgen: begin traffic ......
10/03/2021 16:17:36                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:17:46                         pktgen: begin get port statistic ...
10/03/2021 16:17:46                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:17:46                         pktgen: {0: {'ibytes': 11846507008,
     'ierrors': 0,
     'ipackets': 92550851,
     'obytes': 28072644480,
     'oerrors': 0,
     'opackets': 219317565,
     'rx_bps': 9446513664.0,
     'rx_bps_L1': 10922844864.0,
     'rx_pps': 9227070.0,
     'rx_util': 27.307112160000003,
     'tx_bps': 22413168640.0,
     'tx_bps_L1': 25916076799.999996,
     'tx_pps': 21893176.0,
     'tx_util': 64.79019199999999},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 2.8896372318267822,
            'cpu_util': 96.95494079589844,
            'cpu_util_raw': 99.4375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 141903246,
            'rx_bps': 9446513664.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 12966653952.0,
            'rx_pps': 9227070.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 22413168640.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21893176.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 11846507008,
           'ierrors': 0,
           'ipackets': 92550851,
           'obytes': 28072644480,
           'oerrors': 0,
           'opackets': 219317565,
           'rx_bps': 9446513664.0,
           'rx_bps_L1': 10922844864.0,
           'rx_pps': 9227070.0,
           'rx_util': 27.307112160000003,
           'tx_bps': 22413168640.0,
           'tx_bps_L1': 25916076799.999996,
           'tx_pps': 21893176.0,
           'tx_util': 64.79019199999999}}
10/03/2021 16:17:46                         pktgen: {'ibytes': 11846507008,
 'ierrors': 0,
 'ipackets': 92550851,
 'obytes': 28072644480,
 'oerrors': 0,
 'opackets': 219317565,
 'rx_bps': 9446513664.0,
 'rx_bps_L1': 10922844864.0,
 'rx_pps': 9227070.0,
 'rx_util': 27.307112160000003,
 'tx_bps': 22413168640.0,
 'tx_bps_L1': 25916076799.999996,
 'tx_pps': 21893176.0,
 'tx_util': 64.79019199999999}
10/03/2021 16:17:46                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 22413168640.000000, tx_pps: 21893176.000000 
10/03/2021 16:17:46                         pktgen: {'ibytes': 11846507008,
 'ierrors': 0,
 'ipackets': 92550851,
 'obytes': 28072644480,
 'oerrors': 0,
 'opackets': 219317565,
 'rx_bps': 9446513664.0,
 'rx_bps_L1': 10922844864.0,
 'rx_pps': 9227070.0,
 'rx_util': 27.307112160000003,
 'tx_bps': 22413168640.0,
 'tx_bps_L1': 25916076799.999996,
 'tx_pps': 21893176.0,
 'tx_util': 64.79019199999999}
10/03/2021 16:17:46                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 9446513664.000000, rx_pps: 9227070.000000
10/03/2021 16:17:46                         pktgen: throughput: pps_rx 9227070.000000, bps_rx 9446513664.000000
10/03/2021 16:17:46                         pktgen: traffic completed. 
10/03/2021 16:17:46 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
10/03/2021 16:17:46                         tester: ls -d /tmp
10/03/2021 16:17:46                         tester: /tmp
10/03/2021 16:17:46                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:17:47                         pktgen: test port 0 map gen port 0
10/03/2021 16:17:47                         pktgen: test port 0 map gen port 0
10/03/2021 16:17:47                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:17:47                         pktgen: trex port <0> not support flow control
10/03/2021 16:17:47                         pktgen: check the trex port link status
10/03/2021 16:17:47                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:17:47                         pktgen: begin traffic ......
10/03/2021 16:17:47                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:17:57                         pktgen: begin get port statistic ...
10/03/2021 16:17:57                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:17:57                         pktgen: {0: {'ibytes': 21410481152,
     'ierrors': 0,
     'ipackets': 83634692,
     'obytes': 46393676288,
     'oerrors': 0,
     'opackets': 181225321,
     'rx_bps': 17061859328.0,
     'rx_bps_L1': 18395180928.0,
     'rx_pps': 8333260.0,
     'rx_util': 45.98795232,
     'tx_bps': 36994056192.0,
     'tx_bps_L1': 39885078912.0,
     'tx_pps': 18068892.0,
     'tx_util': 99.71269728},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 52.936729431152344,
            'cpu_util': 8.735441207885742,
            'cpu_util_raw': 3.8125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 1992520,
            'rx_bps': 17061859328.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 19932194816.0,
            'rx_pps': 8333260.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 36994056192.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18068892.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 21410481152,
           'ierrors': 0,
           'ipackets': 83634692,
           'obytes': 46393676288,
           'oerrors': 0,
           'opackets': 181225321,
           'rx_bps': 17061859328.0,
           'rx_bps_L1': 18395180928.0,
           'rx_pps': 8333260.0,
           'rx_util': 45.98795232,
           'tx_bps': 36994056192.0,
           'tx_bps_L1': 39885078912.0,
           'tx_pps': 18068892.0,
           'tx_util': 99.71269728}}
10/03/2021 16:17:57                         pktgen: {'ibytes': 21410481152,
 'ierrors': 0,
 'ipackets': 83634692,
 'obytes': 46393676288,
 'oerrors': 0,
 'opackets': 181225321,
 'rx_bps': 17061859328.0,
 'rx_bps_L1': 18395180928.0,
 'rx_pps': 8333260.0,
 'rx_util': 45.98795232,
 'tx_bps': 36994056192.0,
 'tx_bps_L1': 39885078912.0,
 'tx_pps': 18068892.0,
 'tx_util': 99.71269728}
10/03/2021 16:17:57                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 36994056192.000000, tx_pps: 18068892.000000 
10/03/2021 16:17:57                         pktgen: {'ibytes': 21410481152,
 'ierrors': 0,
 'ipackets': 83634692,
 'obytes': 46393676288,
 'oerrors': 0,
 'opackets': 181225321,
 'rx_bps': 17061859328.0,
 'rx_bps_L1': 18395180928.0,
 'rx_pps': 8333260.0,
 'rx_util': 45.98795232,
 'tx_bps': 36994056192.0,
 'tx_bps_L1': 39885078912.0,
 'tx_pps': 18068892.0,
 'tx_util': 99.71269728}
10/03/2021 16:17:57                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 17061859328.000000, rx_pps: 8333260.000000
10/03/2021 16:17:57                         pktgen: throughput: pps_rx 8333260.000000, bps_rx 17061859328.000000
10/03/2021 16:17:57                         pktgen: traffic completed. 
10/03/2021 16:17:57 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
10/03/2021 16:17:57                         tester: ls -d /tmp
10/03/2021 16:17:57                         tester: /tmp
10/03/2021 16:17:57                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:17:59                         pktgen: test port 0 map gen port 0
10/03/2021 16:17:59                         pktgen: test port 0 map gen port 0
10/03/2021 16:17:59                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:17:59                         pktgen: trex port <0> not support flow control
10/03/2021 16:17:59                         pktgen: check the trex port link status
10/03/2021 16:17:59                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:17:59                         pktgen: begin traffic ......
10/03/2021 16:17:59                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:18:09                         pktgen: begin get port statistic ...
10/03/2021 16:18:09                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:18:09                         pktgen: {0: {'ibytes': 29195209728,
     'ierrors': 0,
     'ipackets': 57021905,
     'obytes': 48172843008,
     'oerrors': 0,
     'opackets': 94087591,
     'rx_bps': 23255658496.0,
     'rx_bps_L1': 24164522336.0,
     'rx_pps': 5680399.0,
     'rx_util': 60.41130584,
     'tx_bps': 38353633280.0,
     'tx_bps_L1': 39852776000.0,
     'tx_pps': 9369642.0,
     'tx_util': 99.63194},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.411726951599121,
            'cpu_util': 56.99428939819336,
            'cpu_util_raw': 60.9375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 83181180,
            'rx_bps': 23255658496.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 15097974784.0,
            'rx_pps': 5680399.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38353633280.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9369642.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 29195209728,
           'ierrors': 0,
           'ipackets': 57021905,
           'obytes': 48172843008,
           'oerrors': 0,
           'opackets': 94087591,
           'rx_bps': 23255658496.0,
           'rx_bps_L1': 24164522336.0,
           'rx_pps': 5680399.0,
           'rx_util': 60.41130584,
           'tx_bps': 38353633280.0,
           'tx_bps_L1': 39852776000.0,
           'tx_pps': 9369642.0,
           'tx_util': 99.63194}}
10/03/2021 16:18:09                         pktgen: {'ibytes': 29195209728,
 'ierrors': 0,
 'ipackets': 57021905,
 'obytes': 48172843008,
 'oerrors': 0,
 'opackets': 94087591,
 'rx_bps': 23255658496.0,
 'rx_bps_L1': 24164522336.0,
 'rx_pps': 5680399.0,
 'rx_util': 60.41130584,
 'tx_bps': 38353633280.0,
 'tx_bps_L1': 39852776000.0,
 'tx_pps': 9369642.0,
 'tx_util': 99.63194}
10/03/2021 16:18:09                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38353633280.000000, tx_pps: 9369642.000000 
10/03/2021 16:18:09                         pktgen: {'ibytes': 29195209728,
 'ierrors': 0,
 'ipackets': 57021905,
 'obytes': 48172843008,
 'oerrors': 0,
 'opackets': 94087591,
 'rx_bps': 23255658496.0,
 'rx_bps_L1': 24164522336.0,
 'rx_pps': 5680399.0,
 'rx_util': 60.41130584,
 'tx_bps': 38353633280.0,
 'tx_bps_L1': 39852776000.0,
 'tx_pps': 9369642.0,
 'tx_util': 99.63194}
10/03/2021 16:18:09                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 23255658496.000000, rx_pps: 5680399.000000
10/03/2021 16:18:09                         pktgen: throughput: pps_rx 5680399.000000, bps_rx 23255658496.000000
10/03/2021 16:18:09                         pktgen: traffic completed. 
10/03/2021 16:18:09 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
10/03/2021 16:18:09                         tester: ls -d /tmp
10/03/2021 16:18:09                         tester: /tmp
10/03/2021 16:18:09                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:18:11                         pktgen: test port 0 map gen port 0
10/03/2021 16:18:11                         pktgen: test port 0 map gen port 0
10/03/2021 16:18:11                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:18:11                         pktgen: trex port <0> not support flow control
10/03/2021 16:18:11                         pktgen: check the trex port link status
10/03/2021 16:18:11                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:18:11                         pktgen: begin traffic ......
10/03/2021 16:18:11                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:18:21                         pktgen: begin get port statistic ...
10/03/2021 16:18:21                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:18:21                         pktgen: {0: {'ibytes': 48084119552,
     'ierrors': 0,
     'ipackets': 46957154,
     'obytes': 49094610944,
     'oerrors': 0,
     'opackets': 47943962,
     'rx_bps': 38348869632.0,
     'rx_bps_L1': 39098066752.0,
     'rx_pps': 4682482.0,
     'rx_util': 97.74516688,
     'tx_bps': 39180017664.0,
     'tx_bps_L1': 39945574943.99999,
     'tx_pps': 4784733.0,
     'tx_util': 99.86393735999998},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 16.528438568115234,
            'cpu_util': 29.630760192871094,
            'cpu_util_raw': 30.125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 37529670,
            'rx_bps': 38348869632.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4682482.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39180017664.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4784733.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 48084119552,
           'ierrors': 0,
           'ipackets': 46957154,
           'obytes': 49094610944,
           'oerrors': 0,
           'opackets': 47943962,
           'rx_bps': 38348869632.0,
           'rx_bps_L1': 39098066752.0,
           'rx_pps': 4682482.0,
           'rx_util': 97.74516688,
           'tx_bps': 39180017664.0,
           'tx_bps_L1': 39945574943.99999,
           'tx_pps': 4784733.0,
           'tx_util': 99.86393735999998}}
10/03/2021 16:18:21                         pktgen: {'ibytes': 48084119552,
 'ierrors': 0,
 'ipackets': 46957154,
 'obytes': 49094610944,
 'oerrors': 0,
 'opackets': 47943962,
 'rx_bps': 38348869632.0,
 'rx_bps_L1': 39098066752.0,
 'rx_pps': 4682482.0,
 'rx_util': 97.74516688,
 'tx_bps': 39180017664.0,
 'tx_bps_L1': 39945574943.99999,
 'tx_pps': 4784733.0,
 'tx_util': 99.86393735999998}
10/03/2021 16:18:21                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39180017664.000000, tx_pps: 4784733.000000 
10/03/2021 16:18:21                         pktgen: {'ibytes': 48084119552,
 'ierrors': 0,
 'ipackets': 46957154,
 'obytes': 49094610944,
 'oerrors': 0,
 'opackets': 47943962,
 'rx_bps': 38348869632.0,
 'rx_bps_L1': 39098066752.0,
 'rx_pps': 4682482.0,
 'rx_util': 97.74516688,
 'tx_bps': 39180017664.0,
 'tx_bps_L1': 39945574943.99999,
 'tx_pps': 4784733.0,
 'tx_util': 99.86393735999998}
10/03/2021 16:18:21                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 38348869632.000000, rx_pps: 4682482.000000
10/03/2021 16:18:21                         pktgen: throughput: pps_rx 4682482.000000, bps_rx 38348869632.000000
10/03/2021 16:18:21                         pktgen: traffic completed. 
10/03/2021 16:18:21 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
10/03/2021 16:18:21                         tester: ls -d /tmp
10/03/2021 16:18:21                         tester: /tmp
10/03/2021 16:18:21                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:18:22                         pktgen: test port 0 map gen port 0
10/03/2021 16:18:22                         pktgen: test port 0 map gen port 0
10/03/2021 16:18:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:18:22                         pktgen: trex port <0> not support flow control
10/03/2021 16:18:22                         pktgen: check the trex port link status
10/03/2021 16:18:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:18:22                         pktgen: begin traffic ......
10/03/2021 16:18:22                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:18:32                         pktgen: begin get port statistic ...
10/03/2021 16:18:32                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:18:32                         pktgen: {0: {'ibytes': 49401455004,
     'ierrors': 0,
     'ipackets': 32543782,
     'obytes': 49401444378,
     'oerrors': 0,
     'opackets': 32543774,
     'rx_bps': 39419150336.0,
     'rx_bps_L1': 39938641295.99999,
     'rx_pps': 3246818.5,
     'rx_util': 99.84660323999998,
     'tx_bps': 39419691008.0,
     'tx_bps_L1': 39939191928.0,
     'tx_pps': 3246880.75,
     'tx_util': 99.84797982},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 32.657745361328125,
            'cpu_util': 15.088186264038086,
            'cpu_util_raw': 14.875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17360204,
            'rx_bps': 39419150336.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3246818.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39419691008.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3246880.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49401455004,
           'ierrors': 0,
           'ipackets': 32543782,
           'obytes': 49401444378,
           'oerrors': 0,
           'opackets': 32543774,
           'rx_bps': 39419150336.0,
           'rx_bps_L1': 39938641295.99999,
           'rx_pps': 3246818.5,
           'rx_util': 99.84660323999998,
           'tx_bps': 39419691008.0,
           'tx_bps_L1': 39939191928.0,
           'tx_pps': 3246880.75,
           'tx_util': 99.84797982}}
10/03/2021 16:18:32                         pktgen: {'ibytes': 49401455004,
 'ierrors': 0,
 'ipackets': 32543782,
 'obytes': 49401444378,
 'oerrors': 0,
 'opackets': 32543774,
 'rx_bps': 39419150336.0,
 'rx_bps_L1': 39938641295.99999,
 'rx_pps': 3246818.5,
 'rx_util': 99.84660323999998,
 'tx_bps': 39419691008.0,
 'tx_bps_L1': 39939191928.0,
 'tx_pps': 3246880.75,
 'tx_util': 99.84797982}
10/03/2021 16:18:32                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39419691008.000000, tx_pps: 3246880.750000 
10/03/2021 16:18:32                         pktgen: {'ibytes': 49401455004,
 'ierrors': 0,
 'ipackets': 32543782,
 'obytes': 49401444378,
 'oerrors': 0,
 'opackets': 32543774,
 'rx_bps': 39419150336.0,
 'rx_bps_L1': 39938641295.99999,
 'rx_pps': 3246818.5,
 'rx_util': 99.84660323999998,
 'tx_bps': 39419691008.0,
 'tx_bps_L1': 39939191928.0,
 'tx_pps': 3246880.75,
 'tx_util': 99.84797982}
10/03/2021 16:18:32                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39419150336.000000, rx_pps: 3246818.500000
10/03/2021 16:18:32                         pktgen: throughput: pps_rx 3246818.500000, bps_rx 39419150336.000000
10/03/2021 16:18:32                         pktgen: traffic completed. 
10/03/2021 16:18:34 TestPVPMultiPathVhostPerformance: result of all framesize result
10/03/2021 16:18:34 TestPVPMultiPathVhostPerformance: 
+-------+--------------+--------+------------+
| Frame | Mode/RXD-TXD |  Mpps  | % linerate |
+=======+==============+========+============+
| 64    | vector rx    | 10.018 | 16.830     |
+-------+--------------+--------+------------+
| 128   | vector rx    | 9.227  | 27.312     |
+-------+--------------+--------+------------+
| 256   | vector rx    | 8.333  | 46.000     |
+-------+--------------+--------+------------+
| 512   | vector rx    | 5.680  | 60.439     |
+-------+--------------+--------+------------+
| 1024  | vector rx    | 4.682  | 97.770     |
+-------+--------------+--------+------------+
| 1518  | vector rx    | 3.247  | 99.872     |
+-------+--------------+--------+------------+
10/03/2021 16:18:34 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps     | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+=============+============+=====================+=======================+
| 64    | 1024         | 10.018 Mpps | 16.830%    | 9.822 Mpps          | 0.196 Mpps            |
+-------+--------------+-------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.247 Mpps  | 99.872%    | 3.245 Mpps          | 0.002 Mpps            |
+-------+--------------+-------------+------------+---------------------+-----------------------+
10/03/2021 16:18:34 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.491100
10/03/2021 16:18:34 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.196000
10/03/2021 16:18:34 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162250
10/03/2021 16:18:34 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.002000
10/03/2021 16:18:34 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_vector_rx Result PASSED:
10/03/2021 16:18:34             dut.10.240.183.214: kill_all: called by dut and prefix list has value.
10/03/2021 16:18:35 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_inorder_mergeable Begin
10/03/2021 16:18:35             dut.10.240.183.214: 
10/03/2021 16:18:35                         tester: 
10/03/2021 16:18:35             dut.10.240.183.214: rm -rf ./vhost.out
10/03/2021 16:18:35             dut.10.240.183.214: 
10/03/2021 16:18:35             dut.10.240.183.214: rm -rf ./vhost-net*
10/03/2021 16:18:35             dut.10.240.183.214: 
10/03/2021 16:18:35             dut.10.240.183.214: killall -s INT dpdk-testpmd 
10/03/2021 16:18:36             dut.10.240.183.214: dpdk-testpmd: no process found
10/03/2021 16:18:36             dut.10.240.183.214: killall -s INT qemu-system-x86_64
10/03/2021 16:18:36             dut.10.240.183.214: qemu-system-x86_64: no process found
10/03/2021 16:18:46             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
10/03/2021 16:18:46             dut.10.240.183.214: 2048
10/03/2021 16:18:57 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
10/03/2021 16:18:57                         tester: ls -d /tmp
10/03/2021 16:18:57                         tester: /tmp
10/03/2021 16:18:57                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:18:59                         pktgen: test port 0 map gen port 0
10/03/2021 16:18:59                         pktgen: test port 0 map gen port 0
10/03/2021 16:18:59                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:18:59                         pktgen: trex port <0> not support flow control
10/03/2021 16:18:59                         pktgen: check the trex port link status
10/03/2021 16:18:59                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:18:59                         pktgen: begin traffic ......
10/03/2021 16:18:59                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:19:09                         pktgen: begin get port statistic ...
10/03/2021 16:19:09                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:19:09                         pktgen: {0: {'ibytes': 7179673344,
     'ierrors': 0,
     'ipackets': 112182407,
     'obytes': 17365927040,
     'oerrors': 0,
     'opackets': 271342622,
     'rx_bps': 5737271808.0,
     'rx_bps_L1': 7530170368.0,
     'rx_pps': 11205616.0,
     'rx_util': 18.82542592,
     'tx_bps': 13884383232.0,
     'tx_bps_L1': 18223251712.0,
     'tx_pps': 27117928.0,
     'tx_util': 45.558129279999996},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 1.880934476852417,
            'cpu_util': 92.27051544189453,
            'cpu_util_raw': 99.3125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 139114115,
            'rx_bps': 5737271808.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8147110912.0,
            'rx_pps': 11205616.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13884383232.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 27117928.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 7179673344,
           'ierrors': 0,
           'ipackets': 112182407,
           'obytes': 17365927040,
           'oerrors': 0,
           'opackets': 271342622,
           'rx_bps': 5737271808.0,
           'rx_bps_L1': 7530170368.0,
           'rx_pps': 11205616.0,
           'rx_util': 18.82542592,
           'tx_bps': 13884383232.0,
           'tx_bps_L1': 18223251712.0,
           'tx_pps': 27117928.0,
           'tx_util': 45.558129279999996}}
10/03/2021 16:19:09                         pktgen: {'ibytes': 7179673344,
 'ierrors': 0,
 'ipackets': 112182407,
 'obytes': 17365927040,
 'oerrors': 0,
 'opackets': 271342622,
 'rx_bps': 5737271808.0,
 'rx_bps_L1': 7530170368.0,
 'rx_pps': 11205616.0,
 'rx_util': 18.82542592,
 'tx_bps': 13884383232.0,
 'tx_bps_L1': 18223251712.0,
 'tx_pps': 27117928.0,
 'tx_util': 45.558129279999996}
10/03/2021 16:19:09                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13884383232.000000, tx_pps: 27117928.000000 
10/03/2021 16:19:09                         pktgen: {'ibytes': 7179673344,
 'ierrors': 0,
 'ipackets': 112182407,
 'obytes': 17365927040,
 'oerrors': 0,
 'opackets': 271342622,
 'rx_bps': 5737271808.0,
 'rx_bps_L1': 7530170368.0,
 'rx_pps': 11205616.0,
 'rx_util': 18.82542592,
 'tx_bps': 13884383232.0,
 'tx_bps_L1': 18223251712.0,
 'tx_pps': 27117928.0,
 'tx_util': 45.558129279999996}
10/03/2021 16:19:09                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 5737271808.000000, rx_pps: 11205616.000000
10/03/2021 16:19:09                         pktgen: throughput: pps_rx 11205616.000000, bps_rx 5737271808.000000
10/03/2021 16:19:09                         pktgen: traffic completed. 
10/03/2021 16:19:09 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
10/03/2021 16:19:09                         tester: ls -d /tmp
10/03/2021 16:19:09                         tester: /tmp
10/03/2021 16:19:09                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:19:10                         pktgen: test port 0 map gen port 0
10/03/2021 16:19:10                         pktgen: test port 0 map gen port 0
10/03/2021 16:19:11                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:19:11                         pktgen: trex port <0> not support flow control
10/03/2021 16:19:11                         pktgen: check the trex port link status
10/03/2021 16:19:11                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:19:11                         pktgen: begin traffic ......
10/03/2021 16:19:11                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:19:21                         pktgen: begin get port statistic ...
10/03/2021 16:19:21                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:19:21                         pktgen: {0: {'ibytes': 12894660352,
     'ierrors': 0,
     'ipackets': 100739544,
     'obytes': 28041841152,
     'oerrors': 0,
     'opackets': 219076896,
     'rx_bps': 10290765824.0,
     'rx_bps_L1': 11899258304.000002,
     'rx_pps': 10053078.0,
     'rx_util': 29.748145760000007,
     'tx_bps': 22411862016.0,
     'tx_bps_L1': 25915071615.999996,
     'tx_pps': 21895060.0,
     'tx_util': 64.78767903999999},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 2.8807671070098877,
            'cpu_util': 97.247802734375,
            'cpu_util_raw': 99.375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 141950466,
            'rx_bps': 10290765824.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 12121096192.0,
            'rx_pps': 10053078.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 22411862016.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21895060.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 12894660352,
           'ierrors': 0,
           'ipackets': 100739544,
           'obytes': 28041841152,
           'oerrors': 0,
           'opackets': 219076896,
           'rx_bps': 10290765824.0,
           'rx_bps_L1': 11899258304.000002,
           'rx_pps': 10053078.0,
           'rx_util': 29.748145760000007,
           'tx_bps': 22411862016.0,
           'tx_bps_L1': 25915071615.999996,
           'tx_pps': 21895060.0,
           'tx_util': 64.78767903999999}}
10/03/2021 16:19:21                         pktgen: {'ibytes': 12894660352,
 'ierrors': 0,
 'ipackets': 100739544,
 'obytes': 28041841152,
 'oerrors': 0,
 'opackets': 219076896,
 'rx_bps': 10290765824.0,
 'rx_bps_L1': 11899258304.000002,
 'rx_pps': 10053078.0,
 'rx_util': 29.748145760000007,
 'tx_bps': 22411862016.0,
 'tx_bps_L1': 25915071615.999996,
 'tx_pps': 21895060.0,
 'tx_util': 64.78767903999999}
10/03/2021 16:19:21                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 22411862016.000000, tx_pps: 21895060.000000 
10/03/2021 16:19:21                         pktgen: {'ibytes': 12894660352,
 'ierrors': 0,
 'ipackets': 100739544,
 'obytes': 28041841152,
 'oerrors': 0,
 'opackets': 219076896,
 'rx_bps': 10290765824.0,
 'rx_bps_L1': 11899258304.000002,
 'rx_pps': 10053078.0,
 'rx_util': 29.748145760000007,
 'tx_bps': 22411862016.0,
 'tx_bps_L1': 25915071615.999996,
 'tx_pps': 21895060.0,
 'tx_util': 64.78767903999999}
10/03/2021 16:19:21                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 10290765824.000000, rx_pps: 10053078.000000
10/03/2021 16:19:21                         pktgen: throughput: pps_rx 10053078.000000, bps_rx 10290765824.000000
10/03/2021 16:19:21                         pktgen: traffic completed. 
10/03/2021 16:19:21 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
10/03/2021 16:19:21                         tester: ls -d /tmp
10/03/2021 16:19:21                         tester: /tmp
10/03/2021 16:19:21                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:19:22                         pktgen: test port 0 map gen port 0
10/03/2021 16:19:22                         pktgen: test port 0 map gen port 0
10/03/2021 16:19:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:19:22                         pktgen: trex port <0> not support flow control
10/03/2021 16:19:22                         pktgen: check the trex port link status
10/03/2021 16:19:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:19:22                         pktgen: begin traffic ......
10/03/2021 16:19:22                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:19:32                         pktgen: begin get port statistic ...
10/03/2021 16:19:32                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:19:32                         pktgen: {0: {'ibytes': 23146413824,
     'ierrors': 0,
     'ipackets': 90415680,
     'obytes': 46398618368,
     'oerrors': 0,
     'opackets': 181244626,
     'rx_bps': 18461878272.0,
     'rx_bps_L1': 19904542272.0,
     'rx_pps': 9016650.0,
     'rx_util': 49.76135568,
     'tx_bps': 37036376064.0,
     'tx_bps_L1': 39930560064.0,
     'tx_pps': 18088650.0,
     'tx_util': 99.82640015999999},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 55.05503845214844,
            'cpu_util': 8.408943176269531,
            'cpu_util_raw': 4.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 1916855,
            'rx_bps': 18461878272.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 18574495744.0,
            'rx_pps': 9016650.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37036376064.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18088650.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 23146413824,
           'ierrors': 0,
           'ipackets': 90415680,
           'obytes': 46398618368,
           'oerrors': 0,
           'opackets': 181244626,
           'rx_bps': 18461878272.0,
           'rx_bps_L1': 19904542272.0,
           'rx_pps': 9016650.0,
           'rx_util': 49.76135568,
           'tx_bps': 37036376064.0,
           'tx_bps_L1': 39930560064.0,
           'tx_pps': 18088650.0,
           'tx_util': 99.82640015999999}}
10/03/2021 16:19:32                         pktgen: {'ibytes': 23146413824,
 'ierrors': 0,
 'ipackets': 90415680,
 'obytes': 46398618368,
 'oerrors': 0,
 'opackets': 181244626,
 'rx_bps': 18461878272.0,
 'rx_bps_L1': 19904542272.0,
 'rx_pps': 9016650.0,
 'rx_util': 49.76135568,
 'tx_bps': 37036376064.0,
 'tx_bps_L1': 39930560064.0,
 'tx_pps': 18088650.0,
 'tx_util': 99.82640015999999}
10/03/2021 16:19:32                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37036376064.000000, tx_pps: 18088650.000000 
10/03/2021 16:19:32                         pktgen: {'ibytes': 23146413824,
 'ierrors': 0,
 'ipackets': 90415680,
 'obytes': 46398618368,
 'oerrors': 0,
 'opackets': 181244626,
 'rx_bps': 18461878272.0,
 'rx_bps_L1': 19904542272.0,
 'rx_pps': 9016650.0,
 'rx_util': 49.76135568,
 'tx_bps': 37036376064.0,
 'tx_bps_L1': 39930560064.0,
 'tx_pps': 18088650.0,
 'tx_util': 99.82640015999999}
10/03/2021 16:19:32                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 18461878272.000000, rx_pps: 9016650.000000
10/03/2021 16:19:32                         pktgen: throughput: pps_rx 9016650.000000, bps_rx 18461878272.000000
10/03/2021 16:19:32                         pktgen: traffic completed. 
10/03/2021 16:19:32 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
10/03/2021 16:19:32                         tester: ls -d /tmp
10/03/2021 16:19:32                         tester: /tmp
10/03/2021 16:19:32                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:19:34                         pktgen: test port 0 map gen port 0
10/03/2021 16:19:34                         pktgen: test port 0 map gen port 0
10/03/2021 16:19:34                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:19:34                         pktgen: trex port <0> not support flow control
10/03/2021 16:19:34                         pktgen: check the trex port link status
10/03/2021 16:19:34                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:19:34                         pktgen: begin traffic ......
10/03/2021 16:19:34                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:19:44                         pktgen: begin get port statistic ...
10/03/2021 16:19:44                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:19:44                         pktgen: {0: {'ibytes': 35565733888,
     'ierrors': 0,
     'ipackets': 69464334,
     'obytes': 48170005504,
     'oerrors': 0,
     'opackets': 94082053,
     'rx_bps': 28436127744.0,
     'rx_bps_L1': 29547274144.0,
     'rx_pps': 6944665.0,
     'rx_util': 73.86818536,
     'tx_bps': 38525370368.0,
     'tx_bps_L1': 40030989888.0,
     'tx_pps': 9410122.0,
     'tx_util': 100.07747472},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.630928993225098,
            'cpu_util': 55.79551315307617,
            'cpu_util_raw': 61.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 83040980,
            'rx_bps': 28436127744.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10089243648.0,
            'rx_pps': 6944665.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38525370368.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9410122.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 35565733888,
           'ierrors': 0,
           'ipackets': 69464334,
           'obytes': 48170005504,
           'oerrors': 0,
           'opackets': 94082053,
           'rx_bps': 28436127744.0,
           'rx_bps_L1': 29547274144.0,
           'rx_pps': 6944665.0,
           'rx_util': 73.86818536,
           'tx_bps': 38525370368.0,
           'tx_bps_L1': 40030989888.0,
           'tx_pps': 9410122.0,
           'tx_util': 100.07747472}}
10/03/2021 16:19:44                         pktgen: {'ibytes': 35565733888,
 'ierrors': 0,
 'ipackets': 69464334,
 'obytes': 48170005504,
 'oerrors': 0,
 'opackets': 94082053,
 'rx_bps': 28436127744.0,
 'rx_bps_L1': 29547274144.0,
 'rx_pps': 6944665.0,
 'rx_util': 73.86818536,
 'tx_bps': 38525370368.0,
 'tx_bps_L1': 40030989888.0,
 'tx_pps': 9410122.0,
 'tx_util': 100.07747472}
10/03/2021 16:19:44                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38525370368.000000, tx_pps: 9410122.000000 
10/03/2021 16:19:44                         pktgen: {'ibytes': 35565733888,
 'ierrors': 0,
 'ipackets': 69464334,
 'obytes': 48170005504,
 'oerrors': 0,
 'opackets': 94082053,
 'rx_bps': 28436127744.0,
 'rx_bps_L1': 29547274144.0,
 'rx_pps': 6944665.0,
 'rx_util': 73.86818536,
 'tx_bps': 38525370368.0,
 'tx_bps_L1': 40030989888.0,
 'tx_pps': 9410122.0,
 'tx_util': 100.07747472}
10/03/2021 16:19:44                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 28436127744.000000, rx_pps: 6944665.000000
10/03/2021 16:19:44                         pktgen: throughput: pps_rx 6944665.000000, bps_rx 28436127744.000000
10/03/2021 16:19:44                         pktgen: traffic completed. 
10/03/2021 16:19:44 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
10/03/2021 16:19:44                         tester: ls -d /tmp
10/03/2021 16:19:44                         tester: /tmp
10/03/2021 16:19:44                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:19:45                         pktgen: test port 0 map gen port 0
10/03/2021 16:19:45                         pktgen: test port 0 map gen port 0
10/03/2021 16:19:45                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:19:45                         pktgen: trex port <0> not support flow control
10/03/2021 16:19:45                         pktgen: check the trex port link status
10/03/2021 16:19:45                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:19:45                         pktgen: begin traffic ......
10/03/2021 16:19:45                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:19:55                         pktgen: begin get port statistic ...
10/03/2021 16:19:55                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:19:55                         pktgen: {0: {'ibytes': 49093250048,
     'ierrors': 0,
     'ipackets': 47942633,
     'obytes': 49093237760,
     'oerrors': 0,
     'opackets': 47942619,
     'rx_bps': 39147237376.0,
     'rx_bps_L1': 39912209296.0,
     'rx_pps': 4781074.5,
     'rx_util': 99.78052324,
     'tx_bps': 39154196480.0,
     'tx_bps_L1': 39919438240.0,
     'tx_pps': 4782761.0,
     'tx_util': 99.7985956},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 15.939948081970215,
            'cpu_util': 30.704458236694336,
            'cpu_util_raw': 31.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 37064956,
            'rx_bps': 39147237376.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4781074.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39154196480.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4782761.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49093250048,
           'ierrors': 0,
           'ipackets': 47942633,
           'obytes': 49093237760,
           'oerrors': 0,
           'opackets': 47942619,
           'rx_bps': 39147237376.0,
           'rx_bps_L1': 39912209296.0,
           'rx_pps': 4781074.5,
           'rx_util': 99.78052324,
           'tx_bps': 39154196480.0,
           'tx_bps_L1': 39919438240.0,
           'tx_pps': 4782761.0,
           'tx_util': 99.7985956}}
10/03/2021 16:19:55                         pktgen: {'ibytes': 49093250048,
 'ierrors': 0,
 'ipackets': 47942633,
 'obytes': 49093237760,
 'oerrors': 0,
 'opackets': 47942619,
 'rx_bps': 39147237376.0,
 'rx_bps_L1': 39912209296.0,
 'rx_pps': 4781074.5,
 'rx_util': 99.78052324,
 'tx_bps': 39154196480.0,
 'tx_bps_L1': 39919438240.0,
 'tx_pps': 4782761.0,
 'tx_util': 99.7985956}
10/03/2021 16:19:55                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39154196480.000000, tx_pps: 4782761.000000 
10/03/2021 16:19:55                         pktgen: {'ibytes': 49093250048,
 'ierrors': 0,
 'ipackets': 47942633,
 'obytes': 49093237760,
 'oerrors': 0,
 'opackets': 47942619,
 'rx_bps': 39147237376.0,
 'rx_bps_L1': 39912209296.0,
 'rx_pps': 4781074.5,
 'rx_util': 99.78052324,
 'tx_bps': 39154196480.0,
 'tx_bps_L1': 39919438240.0,
 'tx_pps': 4782761.0,
 'tx_util': 99.7985956}
10/03/2021 16:19:55                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39147237376.000000, rx_pps: 4781074.500000
10/03/2021 16:19:55                         pktgen: throughput: pps_rx 4781074.500000, bps_rx 39147237376.000000
10/03/2021 16:19:56                         pktgen: traffic completed. 
10/03/2021 16:19:56 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
10/03/2021 16:19:56                         tester: ls -d /tmp
10/03/2021 16:19:56                         tester: /tmp
10/03/2021 16:19:56                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:19:57                         pktgen: test port 0 map gen port 0
10/03/2021 16:19:57                         pktgen: test port 0 map gen port 0
10/03/2021 16:19:57                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:19:57                         pktgen: trex port <0> not support flow control
10/03/2021 16:19:57                         pktgen: check the trex port link status
10/03/2021 16:19:57                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:19:57                         pktgen: begin traffic ......
10/03/2021 16:19:57                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:20:07                         pktgen: begin get port statistic ...
10/03/2021 16:20:07                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:20:07                         pktgen: {0: {'ibytes': 49403991582,
     'ierrors': 0,
     'ipackets': 32545452,
     'obytes': 49403950596,
     'oerrors': 0,
     'opackets': 32545426,
     'rx_bps': 39542849536.0,
     'rx_bps_L1': 40063939736.0,
     'rx_pps': 3256813.75,
     'rx_util': 100.15984934,
     'tx_bps': 39542935552.0,
     'tx_bps_L1': 40064026872.0,
     'tx_pps': 3256820.75,
     'tx_util': 100.16006717999998},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 33.77532958984375,
            'cpu_util': 14.634549140930176,
            'cpu_util_raw': 13.8125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17344282,
            'rx_bps': 39542849536.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3256813.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39542935552.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3256820.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49403991582,
           'ierrors': 0,
           'ipackets': 32545452,
           'obytes': 49403950596,
           'oerrors': 0,
           'opackets': 32545426,
           'rx_bps': 39542849536.0,
           'rx_bps_L1': 40063939736.0,
           'rx_pps': 3256813.75,
           'rx_util': 100.15984934,
           'tx_bps': 39542935552.0,
           'tx_bps_L1': 40064026872.0,
           'tx_pps': 3256820.75,
           'tx_util': 100.16006717999998}}
10/03/2021 16:20:07                         pktgen: {'ibytes': 49403991582,
 'ierrors': 0,
 'ipackets': 32545452,
 'obytes': 49403950596,
 'oerrors': 0,
 'opackets': 32545426,
 'rx_bps': 39542849536.0,
 'rx_bps_L1': 40063939736.0,
 'rx_pps': 3256813.75,
 'rx_util': 100.15984934,
 'tx_bps': 39542935552.0,
 'tx_bps_L1': 40064026872.0,
 'tx_pps': 3256820.75,
 'tx_util': 100.16006717999998}
10/03/2021 16:20:07                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39542935552.000000, tx_pps: 3256820.750000 
10/03/2021 16:20:07                         pktgen: {'ibytes': 49403991582,
 'ierrors': 0,
 'ipackets': 32545452,
 'obytes': 49403950596,
 'oerrors': 0,
 'opackets': 32545426,
 'rx_bps': 39542849536.0,
 'rx_bps_L1': 40063939736.0,
 'rx_pps': 3256813.75,
 'rx_util': 100.15984934,
 'tx_bps': 39542935552.0,
 'tx_bps_L1': 40064026872.0,
 'tx_pps': 3256820.75,
 'tx_util': 100.16006717999998}
10/03/2021 16:20:07                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39542849536.000000, rx_pps: 3256813.750000
10/03/2021 16:20:07                         pktgen: throughput: pps_rx 3256813.750000, bps_rx 39542849536.000000
10/03/2021 16:20:07                         pktgen: traffic completed. 
10/03/2021 16:20:09 TestPVPMultiPathVhostPerformance: result of all framesize result
10/03/2021 16:20:09 TestPVPMultiPathVhostPerformance: 
+-------+---------------------------------+--------+------------+
| Frame |          Mode/RXD-TXD           |  Mpps  | % linerate |
+=======+=================================+========+============+
| 64    | virtio_1.1_inorder_mergeable on | 11.206 | 18.825     |
+-------+---------------------------------+--------+------------+
| 128   | virtio_1.1_inorder_mergeable on | 10.053 | 29.757     |
+-------+---------------------------------+--------+------------+
| 256   | virtio_1.1_inorder_mergeable on | 9.017  | 49.772     |
+-------+---------------------------------+--------+------------+
| 512   | virtio_1.1_inorder_mergeable on | 6.945  | 73.891     |
+-------+---------------------------------+--------+------------+
| 1024  | virtio_1.1_inorder_mergeable on | 4.781  | 99.829     |
+-------+---------------------------------+--------+------------+
| 1518  | virtio_1.1_inorder_mergeable on | 3.257  | 100.180    |
+-------+---------------------------------+--------+------------+
10/03/2021 16:20:09 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps     | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+=============+============+=====================+=======================+
| 64    | 1024         | 11.206 Mpps | 18.825%    | 11.700 Mpps         | -0.494 Mpps           |
+-------+--------------+-------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.257 Mpps  | 100.180%   | 3.242 Mpps          | 0.015 Mpps            |
+-------+--------------+-------------+------------+---------------------+-----------------------+
10/03/2021 16:20:09 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.585000
10/03/2021 16:20:09 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.494000
10/03/2021 16:20:09 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162100
10/03/2021 16:20:09 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.015000
10/03/2021 16:20:09 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_inorder_mergeable Result PASSED:
10/03/2021 16:20:09             dut.10.240.183.214: kill_all: called by dut and prefix list has value.
10/03/2021 16:20:10 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_inorder_normal Begin
10/03/2021 16:20:10             dut.10.240.183.214: 
10/03/2021 16:20:10                         tester: 
10/03/2021 16:20:10             dut.10.240.183.214: rm -rf ./vhost.out
10/03/2021 16:20:10             dut.10.240.183.214: 
10/03/2021 16:20:10             dut.10.240.183.214: rm -rf ./vhost-net*
10/03/2021 16:20:10             dut.10.240.183.214: 
10/03/2021 16:20:10             dut.10.240.183.214: killall -s INT dpdk-testpmd 
10/03/2021 16:20:10             dut.10.240.183.214: dpdk-testpmd: no process found
10/03/2021 16:20:10             dut.10.240.183.214: killall -s INT qemu-system-x86_64
10/03/2021 16:20:11             dut.10.240.183.214: qemu-system-x86_64: no process found
10/03/2021 16:20:21             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
10/03/2021 16:20:21             dut.10.240.183.214: 2048
10/03/2021 16:20:32 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
10/03/2021 16:20:32                         tester: ls -d /tmp
10/03/2021 16:20:32                         tester: /tmp
10/03/2021 16:20:32                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:20:34                         pktgen: test port 0 map gen port 0
10/03/2021 16:20:34                         pktgen: test port 0 map gen port 0
10/03/2021 16:20:34                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:20:34                         pktgen: trex port <0> not support flow control
10/03/2021 16:20:34                         pktgen: check the trex port link status
10/03/2021 16:20:34                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:20:34                         pktgen: begin traffic ......
10/03/2021 16:20:34                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:20:44                         pktgen: begin get port statistic ...
10/03/2021 16:20:44                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:20:44                         pktgen: {0: {'ibytes': 8072770304,
     'ierrors': 0,
     'ipackets': 126137054,
     'obytes': 17599845376,
     'oerrors': 0,
     'opackets': 274997613,
     'rx_bps': 6453826560.0,
     'rx_bps_L1': 8470648000.0,
     'rx_pps': 12605134.0,
     'rx_util': 21.17662,
     'tx_bps': 14056948736.0,
     'tx_bps_L1': 18449744256.0,
     'tx_pps': 27454972.0,
     'tx_util': 46.12436064},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 1.8876253366470337,
            'cpu_util': 93.08619689941406,
            'cpu_util_raw': 99.375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 138974187,
            'rx_bps': 6453826560.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 7603121664.0,
            'rx_pps': 12605134.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 14056948736.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 27454972.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 8072770304,
           'ierrors': 0,
           'ipackets': 126137054,
           'obytes': 17599845376,
           'oerrors': 0,
           'opackets': 274997613,
           'rx_bps': 6453826560.0,
           'rx_bps_L1': 8470648000.0,
           'rx_pps': 12605134.0,
           'rx_util': 21.17662,
           'tx_bps': 14056948736.0,
           'tx_bps_L1': 18449744256.0,
           'tx_pps': 27454972.0,
           'tx_util': 46.12436064}}
10/03/2021 16:20:44                         pktgen: {'ibytes': 8072770304,
 'ierrors': 0,
 'ipackets': 126137054,
 'obytes': 17599845376,
 'oerrors': 0,
 'opackets': 274997613,
 'rx_bps': 6453826560.0,
 'rx_bps_L1': 8470648000.0,
 'rx_pps': 12605134.0,
 'rx_util': 21.17662,
 'tx_bps': 14056948736.0,
 'tx_bps_L1': 18449744256.0,
 'tx_pps': 27454972.0,
 'tx_util': 46.12436064}
10/03/2021 16:20:44                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 14056948736.000000, tx_pps: 27454972.000000 
10/03/2021 16:20:44                         pktgen: {'ibytes': 8072770304,
 'ierrors': 0,
 'ipackets': 126137054,
 'obytes': 17599845376,
 'oerrors': 0,
 'opackets': 274997613,
 'rx_bps': 6453826560.0,
 'rx_bps_L1': 8470648000.0,
 'rx_pps': 12605134.0,
 'rx_util': 21.17662,
 'tx_bps': 14056948736.0,
 'tx_bps_L1': 18449744256.0,
 'tx_pps': 27454972.0,
 'tx_util': 46.12436064}
10/03/2021 16:20:44                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 6453826560.000000, rx_pps: 12605134.000000
10/03/2021 16:20:44                         pktgen: throughput: pps_rx 12605134.000000, bps_rx 6453826560.000000
10/03/2021 16:20:44                         pktgen: traffic completed. 
10/03/2021 16:20:44 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
10/03/2021 16:20:44                         tester: ls -d /tmp
10/03/2021 16:20:44                         tester: /tmp
10/03/2021 16:20:44                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:20:45                         pktgen: test port 0 map gen port 0
10/03/2021 16:20:45                         pktgen: test port 0 map gen port 0
10/03/2021 16:20:45                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:20:45                         pktgen: trex port <0> not support flow control
10/03/2021 16:20:45                         pktgen: check the trex port link status
10/03/2021 16:20:45                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:20:45                         pktgen: begin traffic ......
10/03/2021 16:20:45                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:20:55                         pktgen: begin get port statistic ...
10/03/2021 16:20:55                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:20:55                         pktgen: {0: {'ibytes': 14454545024,
     'ierrors': 0,
     'ipackets': 112926133,
     'obytes': 28129173376,
     'oerrors': 0,
     'opackets': 219759199,
     'rx_bps': 11513175040.0,
     'rx_bps_L1': 13312573440.0,
     'rx_pps': 11246240.0,
     'rx_util': 33.2814336,
     'tx_bps': 22432401408.0,
     'tx_bps_L1': 25938474368.0,
     'tx_pps': 21912956.0,
     'tx_util': 64.84618592},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 2.908953905105591,
            'cpu_util': 96.39376068115234,
            'cpu_util_raw': 99.0625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 141185415,
            'rx_bps': 11513175040.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10919227392.0,
            'rx_pps': 11246240.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 22432401408.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21912956.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 14454545024,
           'ierrors': 0,
           'ipackets': 112926133,
           'obytes': 28129173376,
           'oerrors': 0,
           'opackets': 219759199,
           'rx_bps': 11513175040.0,
           'rx_bps_L1': 13312573440.0,
           'rx_pps': 11246240.0,
           'rx_util': 33.2814336,
           'tx_bps': 22432401408.0,
           'tx_bps_L1': 25938474368.0,
           'tx_pps': 21912956.0,
           'tx_util': 64.84618592}}
10/03/2021 16:20:55                         pktgen: {'ibytes': 14454545024,
 'ierrors': 0,
 'ipackets': 112926133,
 'obytes': 28129173376,
 'oerrors': 0,
 'opackets': 219759199,
 'rx_bps': 11513175040.0,
 'rx_bps_L1': 13312573440.0,
 'rx_pps': 11246240.0,
 'rx_util': 33.2814336,
 'tx_bps': 22432401408.0,
 'tx_bps_L1': 25938474368.0,
 'tx_pps': 21912956.0,
 'tx_util': 64.84618592}
10/03/2021 16:20:55                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 22432401408.000000, tx_pps: 21912956.000000 
10/03/2021 16:20:55                         pktgen: {'ibytes': 14454545024,
 'ierrors': 0,
 'ipackets': 112926133,
 'obytes': 28129173376,
 'oerrors': 0,
 'opackets': 219759199,
 'rx_bps': 11513175040.0,
 'rx_bps_L1': 13312573440.0,
 'rx_pps': 11246240.0,
 'rx_util': 33.2814336,
 'tx_bps': 22432401408.0,
 'tx_bps_L1': 25938474368.0,
 'tx_pps': 21912956.0,
 'tx_util': 64.84618592}
10/03/2021 16:20:55                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 11513175040.000000, rx_pps: 11246240.000000
10/03/2021 16:20:55                         pktgen: throughput: pps_rx 11246240.000000, bps_rx 11513175040.000000
10/03/2021 16:20:55                         pktgen: traffic completed. 
10/03/2021 16:20:55 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
10/03/2021 16:20:55                         tester: ls -d /tmp
10/03/2021 16:20:56                         tester: /tmp
10/03/2021 16:20:56                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:20:57                         pktgen: test port 0 map gen port 0
10/03/2021 16:20:57                         pktgen: test port 0 map gen port 0
10/03/2021 16:20:57                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:20:57                         pktgen: trex port <0> not support flow control
10/03/2021 16:20:57                         pktgen: check the trex port link status
10/03/2021 16:20:57                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:20:57                         pktgen: begin traffic ......
10/03/2021 16:20:57                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:21:07                         pktgen: begin get port statistic ...
10/03/2021 16:21:07                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:21:07                         pktgen: {0: {'ibytes': 25270033408,
     'ierrors': 0,
     'ipackets': 98711079,
     'obytes': 46394340608,
     'oerrors': 0,
     'opackets': 181227915,
     'rx_bps': 20136503296.0,
     'rx_bps_L1': 21710229856.0,
     'rx_pps': 9835791.0,
     'rx_util': 54.27557464,
     'tx_bps': 36993806336.0,
     'tx_bps_L1': 39885043456.0,
     'tx_pps': 18070232.0,
     'tx_util': 99.71260864},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 56.88728713989258,
            'cpu_util': 8.128750801086426,
            'cpu_util_raw': 3.9375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 1934917,
            'rx_bps': 20136503296.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 16857300992.0,
            'rx_pps': 9835791.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 36993806336.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18070232.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 25270033408,
           'ierrors': 0,
           'ipackets': 98711079,
           'obytes': 46394340608,
           'oerrors': 0,
           'opackets': 181227915,
           'rx_bps': 20136503296.0,
           'rx_bps_L1': 21710229856.0,
           'rx_pps': 9835791.0,
           'rx_util': 54.27557464,
           'tx_bps': 36993806336.0,
           'tx_bps_L1': 39885043456.0,
           'tx_pps': 18070232.0,
           'tx_util': 99.71260864}}
10/03/2021 16:21:07                         pktgen: {'ibytes': 25270033408,
 'ierrors': 0,
 'ipackets': 98711079,
 'obytes': 46394340608,
 'oerrors': 0,
 'opackets': 181227915,
 'rx_bps': 20136503296.0,
 'rx_bps_L1': 21710229856.0,
 'rx_pps': 9835791.0,
 'rx_util': 54.27557464,
 'tx_bps': 36993806336.0,
 'tx_bps_L1': 39885043456.0,
 'tx_pps': 18070232.0,
 'tx_util': 99.71260864}
10/03/2021 16:21:07                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 36993806336.000000, tx_pps: 18070232.000000 
10/03/2021 16:21:07                         pktgen: {'ibytes': 25270033408,
 'ierrors': 0,
 'ipackets': 98711079,
 'obytes': 46394340608,
 'oerrors': 0,
 'opackets': 181227915,
 'rx_bps': 20136503296.0,
 'rx_bps_L1': 21710229856.0,
 'rx_pps': 9835791.0,
 'rx_util': 54.27557464,
 'tx_bps': 36993806336.0,
 'tx_bps_L1': 39885043456.0,
 'tx_pps': 18070232.0,
 'tx_util': 99.71260864}
10/03/2021 16:21:07                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 20136503296.000000, rx_pps: 9835791.000000
10/03/2021 16:21:07                         pktgen: throughput: pps_rx 9835791.000000, bps_rx 20136503296.000000
10/03/2021 16:21:07                         pktgen: traffic completed. 
10/03/2021 16:21:07 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
10/03/2021 16:21:07                         tester: ls -d /tmp
10/03/2021 16:21:07                         tester: /tmp
10/03/2021 16:21:07                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:21:09                         pktgen: test port 0 map gen port 0
10/03/2021 16:21:09                         pktgen: test port 0 map gen port 0
10/03/2021 16:21:09                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:21:09                         pktgen: trex port <0> not support flow control
10/03/2021 16:21:09                         pktgen: check the trex port link status
10/03/2021 16:21:09                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:21:09                         pktgen: begin traffic ......
10/03/2021 16:21:09                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:21:19                         pktgen: begin get port statistic ...
10/03/2021 16:21:19                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:21:19                         pktgen: {0: {'ibytes': 38060802048,
     'ierrors': 0,
     'ipackets': 74337513,
     'obytes': 48170544640,
     'oerrors': 0,
     'opackets': 94083107,
     'rx_bps': 30460303360.0,
     'rx_bps_L1': 31650473120.000004,
     'rx_pps': 7438561.0,
     'rx_util': 79.12618280000001,
     'tx_bps': 38545014784.0,
     'tx_bps_L1': 40051256224.00001,
     'tx_pps': 9414009.0,
     'tx_util': 100.12814056},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.543645858764648,
            'cpu_util': 56.39427185058594,
            'cpu_util_raw': 60.875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 83124465,
            'rx_bps': 30460303360.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8084712960.0,
            'rx_pps': 7438561.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38545014784.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9414009.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 38060802048,
           'ierrors': 0,
           'ipackets': 74337513,
           'obytes': 48170544640,
           'oerrors': 0,
           'opackets': 94083107,
           'rx_bps': 30460303360.0,
           'rx_bps_L1': 31650473120.000004,
           'rx_pps': 7438561.0,
           'rx_util': 79.12618280000001,
           'tx_bps': 38545014784.0,
           'tx_bps_L1': 40051256224.00001,
           'tx_pps': 9414009.0,
           'tx_util': 100.12814056}}
10/03/2021 16:21:19                         pktgen: {'ibytes': 38060802048,
 'ierrors': 0,
 'ipackets': 74337513,
 'obytes': 48170544640,
 'oerrors': 0,
 'opackets': 94083107,
 'rx_bps': 30460303360.0,
 'rx_bps_L1': 31650473120.000004,
 'rx_pps': 7438561.0,
 'rx_util': 79.12618280000001,
 'tx_bps': 38545014784.0,
 'tx_bps_L1': 40051256224.00001,
 'tx_pps': 9414009.0,
 'tx_util': 100.12814056}
10/03/2021 16:21:19                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38545014784.000000, tx_pps: 9414009.000000 
10/03/2021 16:21:19                         pktgen: {'ibytes': 38060802048,
 'ierrors': 0,
 'ipackets': 74337513,
 'obytes': 48170544640,
 'oerrors': 0,
 'opackets': 94083107,
 'rx_bps': 30460303360.0,
 'rx_bps_L1': 31650473120.000004,
 'rx_pps': 7438561.0,
 'rx_util': 79.12618280000001,
 'tx_bps': 38545014784.0,
 'tx_bps_L1': 40051256224.00001,
 'tx_pps': 9414009.0,
 'tx_util': 100.12814056}
10/03/2021 16:21:19                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 30460303360.000000, rx_pps: 7438561.000000
10/03/2021 16:21:19                         pktgen: throughput: pps_rx 7438561.000000, bps_rx 30460303360.000000
10/03/2021 16:21:19                         pktgen: traffic completed. 
10/03/2021 16:21:19 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
10/03/2021 16:21:19                         tester: ls -d /tmp
10/03/2021 16:21:19                         tester: /tmp
10/03/2021 16:21:19                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:21:20                         pktgen: test port 0 map gen port 0
10/03/2021 16:21:20                         pktgen: test port 0 map gen port 0
10/03/2021 16:21:20                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:21:20                         pktgen: trex port <0> not support flow control
10/03/2021 16:21:20                         pktgen: check the trex port link status
10/03/2021 16:21:20                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:21:20                         pktgen: begin traffic ......
10/03/2021 16:21:20                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:21:30                         pktgen: begin get port statistic ...
10/03/2021 16:21:30                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:21:30                         pktgen: {0: {'ibytes': 49091633152,
     'ierrors': 0,
     'ipackets': 47941054,
     'obytes': 49091608576,
     'oerrors': 0,
     'opackets': 47941028,
     'rx_bps': 39276179456.0,
     'rx_bps_L1': 40043585856.0,
     'rx_pps': 4796290.0,
     'rx_util': 100.10896464000001,
     'tx_bps': 39280275456.0,
     'tx_bps_L1': 40047839616.0,
     'tx_pps': 4797276.0,
     'tx_util': 100.11959904000001},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 16.990497589111328,
            'cpu_util': 28.89870834350586,
            'cpu_util_raw': 28.125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 36996661,
            'rx_bps': 39276179456.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4796290.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39280275456.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4797276.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49091633152,
           'ierrors': 0,
           'ipackets': 47941054,
           'obytes': 49091608576,
           'oerrors': 0,
           'opackets': 47941028,
           'rx_bps': 39276179456.0,
           'rx_bps_L1': 40043585856.0,
           'rx_pps': 4796290.0,
           'rx_util': 100.10896464000001,
           'tx_bps': 39280275456.0,
           'tx_bps_L1': 40047839616.0,
           'tx_pps': 4797276.0,
           'tx_util': 100.11959904000001}}
10/03/2021 16:21:30                         pktgen: {'ibytes': 49091633152,
 'ierrors': 0,
 'ipackets': 47941054,
 'obytes': 49091608576,
 'oerrors': 0,
 'opackets': 47941028,
 'rx_bps': 39276179456.0,
 'rx_bps_L1': 40043585856.0,
 'rx_pps': 4796290.0,
 'rx_util': 100.10896464000001,
 'tx_bps': 39280275456.0,
 'tx_bps_L1': 40047839616.0,
 'tx_pps': 4797276.0,
 'tx_util': 100.11959904000001}
10/03/2021 16:21:30                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39280275456.000000, tx_pps: 4797276.000000 
10/03/2021 16:21:30                         pktgen: {'ibytes': 49091633152,
 'ierrors': 0,
 'ipackets': 47941054,
 'obytes': 49091608576,
 'oerrors': 0,
 'opackets': 47941028,
 'rx_bps': 39276179456.0,
 'rx_bps_L1': 40043585856.0,
 'rx_pps': 4796290.0,
 'rx_util': 100.10896464000001,
 'tx_bps': 39280275456.0,
 'tx_bps_L1': 40047839616.0,
 'tx_pps': 4797276.0,
 'tx_util': 100.11959904000001}
10/03/2021 16:21:30                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39276179456.000000, rx_pps: 4796290.000000
10/03/2021 16:21:30                         pktgen: throughput: pps_rx 4796290.000000, bps_rx 39276179456.000000
10/03/2021 16:21:30                         pktgen: traffic completed. 
10/03/2021 16:21:30 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
10/03/2021 16:21:30                         tester: ls -d /tmp
10/03/2021 16:21:31                         tester: /tmp
10/03/2021 16:21:31                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:21:32                         pktgen: test port 0 map gen port 0
10/03/2021 16:21:32                         pktgen: test port 0 map gen port 0
10/03/2021 16:21:32                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:21:32                         pktgen: trex port <0> not support flow control
10/03/2021 16:21:32                         pktgen: check the trex port link status
10/03/2021 16:21:32                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:21:32                         pktgen: begin traffic ......
10/03/2021 16:21:32                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:21:42                         pktgen: begin get port statistic ...
10/03/2021 16:21:42                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:21:42                         pktgen: {0: {'ibytes': 49401400356,
     'ierrors': 0,
     'ipackets': 32543746,
     'obytes': 49401341154,
     'oerrors': 0,
     'opackets': 32543706,
     'rx_bps': 39418425344.0,
     'rx_bps_L1': 39937940184.00001,
     'rx_pps': 3246967.75,
     'rx_util': 99.84485046000002,
     'tx_bps': 39418519552.0,
     'tx_bps_L1': 39938035712.0,
     'tx_pps': 3246976.0,
     'tx_util': 99.84508928},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 33.03874969482422,
            'cpu_util': 14.913745880126953,
            'cpu_util_raw': 14.5625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17314016,
            'rx_bps': 39418425344.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3246967.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39418519552.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3246976.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49401400356,
           'ierrors': 0,
           'ipackets': 32543746,
           'obytes': 49401341154,
           'oerrors': 0,
           'opackets': 32543706,
           'rx_bps': 39418425344.0,
           'rx_bps_L1': 39937940184.00001,
           'rx_pps': 3246967.75,
           'rx_util': 99.84485046000002,
           'tx_bps': 39418519552.0,
           'tx_bps_L1': 39938035712.0,
           'tx_pps': 3246976.0,
           'tx_util': 99.84508928}}
10/03/2021 16:21:42                         pktgen: {'ibytes': 49401400356,
 'ierrors': 0,
 'ipackets': 32543746,
 'obytes': 49401341154,
 'oerrors': 0,
 'opackets': 32543706,
 'rx_bps': 39418425344.0,
 'rx_bps_L1': 39937940184.00001,
 'rx_pps': 3246967.75,
 'rx_util': 99.84485046000002,
 'tx_bps': 39418519552.0,
 'tx_bps_L1': 39938035712.0,
 'tx_pps': 3246976.0,
 'tx_util': 99.84508928}
10/03/2021 16:21:42                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39418519552.000000, tx_pps: 3246976.000000 
10/03/2021 16:21:42                         pktgen: {'ibytes': 49401400356,
 'ierrors': 0,
 'ipackets': 32543746,
 'obytes': 49401341154,
 'oerrors': 0,
 'opackets': 32543706,
 'rx_bps': 39418425344.0,
 'rx_bps_L1': 39937940184.00001,
 'rx_pps': 3246967.75,
 'rx_util': 99.84485046000002,
 'tx_bps': 39418519552.0,
 'tx_bps_L1': 39938035712.0,
 'tx_pps': 3246976.0,
 'tx_util': 99.84508928}
10/03/2021 16:21:42                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39418425344.000000, rx_pps: 3246967.750000
10/03/2021 16:21:42                         pktgen: throughput: pps_rx 3246967.750000, bps_rx 39418425344.000000
10/03/2021 16:21:42                         pktgen: traffic completed. 
10/03/2021 16:21:44 TestPVPMultiPathVhostPerformance: result of all framesize result
10/03/2021 16:21:44 TestPVPMultiPathVhostPerformance: 
+-------+---------------------------+--------+------------+
| Frame |       Mode/RXD-TXD        |  Mpps  | % linerate |
+=======+===========================+========+============+
| 64    | virtio_1.1 inorder normal | 12.605 | 21.177     |
+-------+---------------------------+--------+------------+
| 128   | virtio_1.1 inorder normal | 11.246 | 33.289     |
+-------+---------------------------+--------+------------+
| 256   | virtio_1.1 inorder normal | 9.836  | 54.294     |
+-------+---------------------------+--------+------------+
| 512   | virtio_1.1 inorder normal | 7.439  | 79.146     |
+-------+---------------------------+--------+------------+
| 1024  | virtio_1.1 inorder normal | 4.796  | 100.147    |
+-------+---------------------------+--------+------------+
| 1518  | virtio_1.1 inorder normal | 3.247  | 99.877     |
+-------+---------------------------+--------+------------+
10/03/2021 16:21:44 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps     | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+=============+============+=====================+=======================+
| 64    | 1024         | 12.605 Mpps | 21.177%    | 12.706 Mpps         | -0.101 Mpps           |
+-------+--------------+-------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.247 Mpps  | 99.877%    | 3.255 Mpps          | -0.008 Mpps           |
+-------+--------------+-------------+------------+---------------------+-----------------------+
10/03/2021 16:21:44 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.635300
10/03/2021 16:21:44 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.101000
10/03/2021 16:21:44 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162750
10/03/2021 16:21:44 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.008000
10/03/2021 16:21:44 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_inorder_normal Result PASSED:
10/03/2021 16:21:44             dut.10.240.183.214: kill_all: called by dut and prefix list has value.
10/03/2021 16:21:45 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_mergeable Begin
10/03/2021 16:21:45             dut.10.240.183.214: 
10/03/2021 16:21:45                         tester: 
10/03/2021 16:21:45             dut.10.240.183.214: rm -rf ./vhost.out
10/03/2021 16:21:45             dut.10.240.183.214: 
10/03/2021 16:21:45             dut.10.240.183.214: rm -rf ./vhost-net*
10/03/2021 16:21:45             dut.10.240.183.214: 
10/03/2021 16:21:45             dut.10.240.183.214: killall -s INT dpdk-testpmd 
10/03/2021 16:21:45             dut.10.240.183.214: dpdk-testpmd: no process found
10/03/2021 16:21:45             dut.10.240.183.214: killall -s INT qemu-system-x86_64
10/03/2021 16:21:45             dut.10.240.183.214: qemu-system-x86_64: no process found
10/03/2021 16:21:56             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
10/03/2021 16:21:56             dut.10.240.183.214: 2048
10/03/2021 16:22:07 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
10/03/2021 16:22:07                         tester: ls -d /tmp
10/03/2021 16:22:07                         tester: /tmp
10/03/2021 16:22:07                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:22:09                         pktgen: test port 0 map gen port 0
10/03/2021 16:22:09                         pktgen: test port 0 map gen port 0
10/03/2021 16:22:09                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:22:09                         pktgen: trex port <0> not support flow control
10/03/2021 16:22:09                         pktgen: check the trex port link status
10/03/2021 16:22:09                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:22:09                         pktgen: begin traffic ......
10/03/2021 16:22:09                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:22:19                         pktgen: begin get port statistic ...
10/03/2021 16:22:19                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:22:19                         pktgen: {0: {'ibytes': 7723893440,
     'ierrors': 0,
     'ipackets': 120685852,
     'obytes': 17336273216,
     'oerrors': 0,
     'opackets': 270879284,
     'rx_bps': 6126192640.0,
     'rx_bps_L1': 8040627840.0,
     'rx_pps': 11965220.0,
     'rx_util': 20.101569599999998,
     'tx_bps': 13817778176.0,
     'tx_bps_L1': 18135832576.0,
     'tx_pps': 26987840.0,
     'tx_util': 45.339581439999996},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 1.8830983638763428,
            'cpu_util': 91.72235870361328,
            'cpu_util_raw': 99.3125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 139099260,
            'rx_bps': 6126192640.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 7691585536.0,
            'rx_pps': 11965220.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13817778176.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26987840.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 7723893440,
           'ierrors': 0,
           'ipackets': 120685852,
           'obytes': 17336273216,
           'oerrors': 0,
           'opackets': 270879284,
           'rx_bps': 6126192640.0,
           'rx_bps_L1': 8040627840.0,
           'rx_pps': 11965220.0,
           'rx_util': 20.101569599999998,
           'tx_bps': 13817778176.0,
           'tx_bps_L1': 18135832576.0,
           'tx_pps': 26987840.0,
           'tx_util': 45.339581439999996}}
10/03/2021 16:22:19                         pktgen: {'ibytes': 7723893440,
 'ierrors': 0,
 'ipackets': 120685852,
 'obytes': 17336273216,
 'oerrors': 0,
 'opackets': 270879284,
 'rx_bps': 6126192640.0,
 'rx_bps_L1': 8040627840.0,
 'rx_pps': 11965220.0,
 'rx_util': 20.101569599999998,
 'tx_bps': 13817778176.0,
 'tx_bps_L1': 18135832576.0,
 'tx_pps': 26987840.0,
 'tx_util': 45.339581439999996}
10/03/2021 16:22:19                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13817778176.000000, tx_pps: 26987840.000000 
10/03/2021 16:22:19                         pktgen: {'ibytes': 7723893440,
 'ierrors': 0,
 'ipackets': 120685852,
 'obytes': 17336273216,
 'oerrors': 0,
 'opackets': 270879284,
 'rx_bps': 6126192640.0,
 'rx_bps_L1': 8040627840.0,
 'rx_pps': 11965220.0,
 'rx_util': 20.101569599999998,
 'tx_bps': 13817778176.0,
 'tx_bps_L1': 18135832576.0,
 'tx_pps': 26987840.0,
 'tx_util': 45.339581439999996}
10/03/2021 16:22:19                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 6126192640.000000, rx_pps: 11965220.000000
10/03/2021 16:22:19                         pktgen: throughput: pps_rx 11965220.000000, bps_rx 6126192640.000000
10/03/2021 16:22:19                         pktgen: traffic completed. 
10/03/2021 16:22:19 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
10/03/2021 16:22:19                         tester: ls -d /tmp
10/03/2021 16:22:19                         tester: /tmp
10/03/2021 16:22:19                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:22:20                         pktgen: test port 0 map gen port 0
10/03/2021 16:22:20                         pktgen: test port 0 map gen port 0
10/03/2021 16:22:20                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:22:20                         pktgen: trex port <0> not support flow control
10/03/2021 16:22:20                         pktgen: check the trex port link status
10/03/2021 16:22:20                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:22:20                         pktgen: begin traffic ......
10/03/2021 16:22:20                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:22:30                         pktgen: begin get port statistic ...
10/03/2021 16:22:30                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:22:30                         pktgen: {0: {'ibytes': 13736496640,
     'ierrors': 0,
     'ipackets': 107316385,
     'obytes': 28085735808,
     'oerrors': 0,
     'opackets': 219419828,
     'rx_bps': 10979256320.0,
     'rx_bps_L1': 12695467040.0,
     'rx_pps': 10726317.0,
     'rx_util': 31.7386676,
     'tx_bps': 22463213568.0,
     'tx_bps_L1': 25974672768.000004,
     'tx_pps': 21946620.0,
     'tx_util': 64.93668192000001},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 2.8945043087005615,
            'cpu_util': 97.0080337524414,
            'cpu_util_raw': 99.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 141889772,
            'rx_bps': 10979256320.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11483957248.0,
            'rx_pps': 10726317.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 22463213568.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21946620.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 13736496640,
           'ierrors': 0,
           'ipackets': 107316385,
           'obytes': 28085735808,
           'oerrors': 0,
           'opackets': 219419828,
           'rx_bps': 10979256320.0,
           'rx_bps_L1': 12695467040.0,
           'rx_pps': 10726317.0,
           'rx_util': 31.7386676,
           'tx_bps': 22463213568.0,
           'tx_bps_L1': 25974672768.000004,
           'tx_pps': 21946620.0,
           'tx_util': 64.93668192000001}}
10/03/2021 16:22:30                         pktgen: {'ibytes': 13736496640,
 'ierrors': 0,
 'ipackets': 107316385,
 'obytes': 28085735808,
 'oerrors': 0,
 'opackets': 219419828,
 'rx_bps': 10979256320.0,
 'rx_bps_L1': 12695467040.0,
 'rx_pps': 10726317.0,
 'rx_util': 31.7386676,
 'tx_bps': 22463213568.0,
 'tx_bps_L1': 25974672768.000004,
 'tx_pps': 21946620.0,
 'tx_util': 64.93668192000001}
10/03/2021 16:22:30                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 22463213568.000000, tx_pps: 21946620.000000 
10/03/2021 16:22:30                         pktgen: {'ibytes': 13736496640,
 'ierrors': 0,
 'ipackets': 107316385,
 'obytes': 28085735808,
 'oerrors': 0,
 'opackets': 219419828,
 'rx_bps': 10979256320.0,
 'rx_bps_L1': 12695467040.0,
 'rx_pps': 10726317.0,
 'rx_util': 31.7386676,
 'tx_bps': 22463213568.0,
 'tx_bps_L1': 25974672768.000004,
 'tx_pps': 21946620.0,
 'tx_util': 64.93668192000001}
10/03/2021 16:22:30                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 10979256320.000000, rx_pps: 10726317.000000
10/03/2021 16:22:30                         pktgen: throughput: pps_rx 10726317.000000, bps_rx 10979256320.000000
10/03/2021 16:22:30                         pktgen: traffic completed. 
10/03/2021 16:22:30 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
10/03/2021 16:22:30                         tester: ls -d /tmp
10/03/2021 16:22:31                         tester: /tmp
10/03/2021 16:22:31                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:22:32                         pktgen: test port 0 map gen port 0
10/03/2021 16:22:32                         pktgen: test port 0 map gen port 0
10/03/2021 16:22:32                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:22:32                         pktgen: trex port <0> not support flow control
10/03/2021 16:22:32                         pktgen: check the trex port link status
10/03/2021 16:22:32                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:22:32                         pktgen: begin traffic ......
10/03/2021 16:22:32                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:22:42                         pktgen: begin get port statistic ...
10/03/2021 16:22:42                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:22:42                         pktgen: {0: {'ibytes': 24111299584,
     'ierrors': 0,
     'ipackets': 94184772,
     'obytes': 46399226624,
     'oerrors': 0,
     'opackets': 181247001,
     'rx_bps': 19214176256.0,
     'rx_bps_L1': 20715679456.0,
     'rx_pps': 9384395.0,
     'rx_util': 51.78919864,
     'tx_bps': 36989091840.0,
     'tx_bps_L1': 39879673600.0,
     'tx_pps': 18066136.0,
     'tx_util': 99.699184},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 53.4531135559082,
            'cpu_util': 8.64989185333252,
            'cpu_util_raw': 3.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 1952172,
            'rx_bps': 19214176256.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 17774917632.0,
            'rx_pps': 9384395.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 36989091840.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18066136.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 24111299584,
           'ierrors': 0,
           'ipackets': 94184772,
           'obytes': 46399226624,
           'oerrors': 0,
           'opackets': 181247001,
           'rx_bps': 19214176256.0,
           'rx_bps_L1': 20715679456.0,
           'rx_pps': 9384395.0,
           'rx_util': 51.78919864,
           'tx_bps': 36989091840.0,
           'tx_bps_L1': 39879673600.0,
           'tx_pps': 18066136.0,
           'tx_util': 99.699184}}
10/03/2021 16:22:42                         pktgen: {'ibytes': 24111299584,
 'ierrors': 0,
 'ipackets': 94184772,
 'obytes': 46399226624,
 'oerrors': 0,
 'opackets': 181247001,
 'rx_bps': 19214176256.0,
 'rx_bps_L1': 20715679456.0,
 'rx_pps': 9384395.0,
 'rx_util': 51.78919864,
 'tx_bps': 36989091840.0,
 'tx_bps_L1': 39879673600.0,
 'tx_pps': 18066136.0,
 'tx_util': 99.699184}
10/03/2021 16:22:42                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 36989091840.000000, tx_pps: 18066136.000000 
10/03/2021 16:22:42                         pktgen: {'ibytes': 24111299584,
 'ierrors': 0,
 'ipackets': 94184772,
 'obytes': 46399226624,
 'oerrors': 0,
 'opackets': 181247001,
 'rx_bps': 19214176256.0,
 'rx_bps_L1': 20715679456.0,
 'rx_pps': 9384395.0,
 'rx_util': 51.78919864,
 'tx_bps': 36989091840.0,
 'tx_bps_L1': 39879673600.0,
 'tx_pps': 18066136.0,
 'tx_util': 99.699184}
10/03/2021 16:22:42                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 19214176256.000000, rx_pps: 9384395.000000
10/03/2021 16:22:42                         pktgen: throughput: pps_rx 9384395.000000, bps_rx 19214176256.000000
10/03/2021 16:22:42                         pktgen: traffic completed. 
10/03/2021 16:22:42 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
10/03/2021 16:22:42                         tester: ls -d /tmp
10/03/2021 16:22:42                         tester: /tmp
10/03/2021 16:22:42                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:22:44                         pktgen: test port 0 map gen port 0
10/03/2021 16:22:44                         pktgen: test port 0 map gen port 0
10/03/2021 16:22:44                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:22:44                         pktgen: trex port <0> not support flow control
10/03/2021 16:22:44                         pktgen: check the trex port link status
10/03/2021 16:22:44                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:22:44                         pktgen: begin traffic ......
10/03/2021 16:22:44                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:22:54                         pktgen: begin get port statistic ...
10/03/2021 16:22:54                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:22:54                         pktgen: {0: {'ibytes': 37721554432,
     'ierrors': 0,
     'ipackets': 73674920,
     'obytes': 48171403776,
     'oerrors': 0,
     'opackets': 94084785,
     'rx_bps': 30087727104.0,
     'rx_bps_L1': 31263485664.0,
     'rx_pps': 7348491.0,
     'rx_util': 78.15871416,
     'tx_bps': 38428639232.0,
     'tx_bps_L1': 39930637472.0,
     'tx_pps': 9387489.0,
     'tx_util': 99.82659368},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.428044319152832,
            'cpu_util': 56.99518966674805,
            'cpu_util_raw': 61.125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 83274891,
            'rx_bps': 30087727104.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8340914176.0,
            'rx_pps': 7348491.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38428639232.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9387489.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 37721554432,
           'ierrors': 0,
           'ipackets': 73674920,
           'obytes': 48171403776,
           'oerrors': 0,
           'opackets': 94084785,
           'rx_bps': 30087727104.0,
           'rx_bps_L1': 31263485664.0,
           'rx_pps': 7348491.0,
           'rx_util': 78.15871416,
           'tx_bps': 38428639232.0,
           'tx_bps_L1': 39930637472.0,
           'tx_pps': 9387489.0,
           'tx_util': 99.82659368}}
10/03/2021 16:22:54                         pktgen: {'ibytes': 37721554432,
 'ierrors': 0,
 'ipackets': 73674920,
 'obytes': 48171403776,
 'oerrors': 0,
 'opackets': 94084785,
 'rx_bps': 30087727104.0,
 'rx_bps_L1': 31263485664.0,
 'rx_pps': 7348491.0,
 'rx_util': 78.15871416,
 'tx_bps': 38428639232.0,
 'tx_bps_L1': 39930637472.0,
 'tx_pps': 9387489.0,
 'tx_util': 99.82659368}
10/03/2021 16:22:54                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38428639232.000000, tx_pps: 9387489.000000 
10/03/2021 16:22:54                         pktgen: {'ibytes': 37721554432,
 'ierrors': 0,
 'ipackets': 73674920,
 'obytes': 48171403776,
 'oerrors': 0,
 'opackets': 94084785,
 'rx_bps': 30087727104.0,
 'rx_bps_L1': 31263485664.0,
 'rx_pps': 7348491.0,
 'rx_util': 78.15871416,
 'tx_bps': 38428639232.0,
 'tx_bps_L1': 39930637472.0,
 'tx_pps': 9387489.0,
 'tx_util': 99.82659368}
10/03/2021 16:22:54                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 30087727104.000000, rx_pps: 7348491.000000
10/03/2021 16:22:54                         pktgen: throughput: pps_rx 7348491.000000, bps_rx 30087727104.000000
10/03/2021 16:22:54                         pktgen: traffic completed. 
10/03/2021 16:22:54 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
10/03/2021 16:22:54                         tester: ls -d /tmp
10/03/2021 16:22:54                         tester: /tmp
10/03/2021 16:22:54                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:22:55                         pktgen: test port 0 map gen port 0
10/03/2021 16:22:55                         pktgen: test port 0 map gen port 0
10/03/2021 16:22:55                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:22:55                         pktgen: trex port <0> not support flow control
10/03/2021 16:22:55                         pktgen: check the trex port link status
10/03/2021 16:22:55                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:22:55                         pktgen: begin traffic ......
10/03/2021 16:22:55                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:23:05                         pktgen: begin get port statistic ...
10/03/2021 16:23:05                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:23:05                         pktgen: {0: {'ibytes': 49065460736,
     'ierrors': 0,
     'ipackets': 47915495,
     'obytes': 49065427968,
     'oerrors': 0,
     'opackets': 47915462,
     'rx_bps': 39114055680.0,
     'rx_bps_L1': 39878234320.0,
     'rx_pps': 4776116.5,
     'rx_util': 99.6955858,
     'tx_bps': 39117611008.0,
     'tx_bps_L1': 39881923488.0,
     'tx_pps': 4776953.0,
     'tx_util': 99.70480872},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 16.56147575378418,
            'cpu_util': 29.52454948425293,
            'cpu_util_raw': 31.625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 37126512,
            'rx_bps': 39114055680.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4776116.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39117611008.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4776953.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49065460736,
           'ierrors': 0,
           'ipackets': 47915495,
           'obytes': 49065427968,
           'oerrors': 0,
           'opackets': 47915462,
           'rx_bps': 39114055680.0,
           'rx_bps_L1': 39878234320.0,
           'rx_pps': 4776116.5,
           'rx_util': 99.6955858,
           'tx_bps': 39117611008.0,
           'tx_bps_L1': 39881923488.0,
           'tx_pps': 4776953.0,
           'tx_util': 99.70480872}}
10/03/2021 16:23:05                         pktgen: {'ibytes': 49065460736,
 'ierrors': 0,
 'ipackets': 47915495,
 'obytes': 49065427968,
 'oerrors': 0,
 'opackets': 47915462,
 'rx_bps': 39114055680.0,
 'rx_bps_L1': 39878234320.0,
 'rx_pps': 4776116.5,
 'rx_util': 99.6955858,
 'tx_bps': 39117611008.0,
 'tx_bps_L1': 39881923488.0,
 'tx_pps': 4776953.0,
 'tx_util': 99.70480872}
10/03/2021 16:23:05                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39117611008.000000, tx_pps: 4776953.000000 
10/03/2021 16:23:05                         pktgen: {'ibytes': 49065460736,
 'ierrors': 0,
 'ipackets': 47915495,
 'obytes': 49065427968,
 'oerrors': 0,
 'opackets': 47915462,
 'rx_bps': 39114055680.0,
 'rx_bps_L1': 39878234320.0,
 'rx_pps': 4776116.5,
 'rx_util': 99.6955858,
 'tx_bps': 39117611008.0,
 'tx_bps_L1': 39881923488.0,
 'tx_pps': 4776953.0,
 'tx_util': 99.70480872}
10/03/2021 16:23:05                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39114055680.000000, rx_pps: 4776116.500000
10/03/2021 16:23:05                         pktgen: throughput: pps_rx 4776116.500000, bps_rx 39114055680.000000
10/03/2021 16:23:05                         pktgen: traffic completed. 
10/03/2021 16:23:05 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
10/03/2021 16:23:05                         tester: ls -d /tmp
10/03/2021 16:23:06                         tester: /tmp
10/03/2021 16:23:06                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:23:07                         pktgen: test port 0 map gen port 0
10/03/2021 16:23:07                         pktgen: test port 0 map gen port 0
10/03/2021 16:23:07                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:23:07                         pktgen: trex port <0> not support flow control
10/03/2021 16:23:07                         pktgen: check the trex port link status
10/03/2021 16:23:07                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:23:07                         pktgen: begin traffic ......
10/03/2021 16:23:07                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:23:17                         pktgen: begin get port statistic ...
10/03/2021 16:23:17                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:23:17                         pktgen: {0: {'ibytes': 49400304360,
     'ierrors': 0,
     'ipackets': 32543024,
     'obytes': 49400290698,
     'oerrors': 0,
     'opackets': 32543015,
     'rx_bps': 39404154880.0,
     'rx_bps_L1': 39923436480.0,
     'rx_pps': 3245510.0,
     'rx_util': 99.8085912,
     'tx_bps': 39404228608.0,
     'tx_bps_L1': 39923511247.99999,
     'tx_pps': 3245516.5,
     'tx_util': 99.80877811999999},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 34.27095413208008,
            'cpu_util': 14.372312545776367,
            'cpu_util_raw': 14.875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17325708,
            'rx_bps': 39404154880.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3245510.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39404228608.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3245516.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49400304360,
           'ierrors': 0,
           'ipackets': 32543024,
           'obytes': 49400290698,
           'oerrors': 0,
           'opackets': 32543015,
           'rx_bps': 39404154880.0,
           'rx_bps_L1': 39923436480.0,
           'rx_pps': 3245510.0,
           'rx_util': 99.8085912,
           'tx_bps': 39404228608.0,
           'tx_bps_L1': 39923511247.99999,
           'tx_pps': 3245516.5,
           'tx_util': 99.80877811999999}}
10/03/2021 16:23:17                         pktgen: {'ibytes': 49400304360,
 'ierrors': 0,
 'ipackets': 32543024,
 'obytes': 49400290698,
 'oerrors': 0,
 'opackets': 32543015,
 'rx_bps': 39404154880.0,
 'rx_bps_L1': 39923436480.0,
 'rx_pps': 3245510.0,
 'rx_util': 99.8085912,
 'tx_bps': 39404228608.0,
 'tx_bps_L1': 39923511247.99999,
 'tx_pps': 3245516.5,
 'tx_util': 99.80877811999999}
10/03/2021 16:23:17                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39404228608.000000, tx_pps: 3245516.500000 
10/03/2021 16:23:17                         pktgen: {'ibytes': 49400304360,
 'ierrors': 0,
 'ipackets': 32543024,
 'obytes': 49400290698,
 'oerrors': 0,
 'opackets': 32543015,
 'rx_bps': 39404154880.0,
 'rx_bps_L1': 39923436480.0,
 'rx_pps': 3245510.0,
 'rx_util': 99.8085912,
 'tx_bps': 39404228608.0,
 'tx_bps_L1': 39923511247.99999,
 'tx_pps': 3245516.5,
 'tx_util': 99.80877811999999}
10/03/2021 16:23:17                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39404154880.000000, rx_pps: 3245510.000000
10/03/2021 16:23:17                         pktgen: throughput: pps_rx 3245510.000000, bps_rx 39404154880.000000
10/03/2021 16:23:17                         pktgen: traffic completed. 
10/03/2021 16:23:19 TestPVPMultiPathVhostPerformance: result of all framesize result
10/03/2021 16:23:19 TestPVPMultiPathVhostPerformance: 
+-------+-------------------------+--------+------------+
| Frame |      Mode/RXD-TXD       |  Mpps  | % linerate |
+=======+=========================+========+============+
| 64    | virtio_1.1_mergeable on | 11.965 | 20.102     |
+-------+-------------------------+--------+------------+
| 128   | virtio_1.1_mergeable on | 10.726 | 31.750     |
+-------+-------------------------+--------+------------+
| 256   | virtio_1.1_mergeable on | 9.384  | 51.802     |
+-------+-------------------------+--------+------------+
| 512   | virtio_1.1_mergeable on | 7.348  | 78.188     |
+-------+-------------------------+--------+------------+
| 1024  | virtio_1.1_mergeable on | 4.776  | 99.725     |
+-------+-------------------------+--------+------------+
| 1518  | virtio_1.1_mergeable on | 3.246  | 99.832     |
+-------+-------------------------+--------+------------+
10/03/2021 16:23:19 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps     | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+=============+============+=====================+=======================+
| 64    | 1024         | 11.965 Mpps | 20.102%    | 12.132 Mpps         | -0.167 Mpps           |
+-------+--------------+-------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.246 Mpps  | 99.832%    | 3.241 Mpps          | 0.005 Mpps            |
+-------+--------------+-------------+------------+---------------------+-----------------------+
10/03/2021 16:23:19 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.606600
10/03/2021 16:23:19 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.167000
10/03/2021 16:23:19 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162050
10/03/2021 16:23:19 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.005000
10/03/2021 16:23:19 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_mergeable Result PASSED:
10/03/2021 16:23:19             dut.10.240.183.214: kill_all: called by dut and prefix list has value.
10/03/2021 16:23:20 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_normal Begin
10/03/2021 16:23:20             dut.10.240.183.214: 
10/03/2021 16:23:20                         tester: 
10/03/2021 16:23:20             dut.10.240.183.214: rm -rf ./vhost.out
10/03/2021 16:23:20             dut.10.240.183.214: 
10/03/2021 16:23:20             dut.10.240.183.214: rm -rf ./vhost-net*
10/03/2021 16:23:20             dut.10.240.183.214: 
10/03/2021 16:23:20             dut.10.240.183.214: killall -s INT dpdk-testpmd 
10/03/2021 16:23:20             dut.10.240.183.214: dpdk-testpmd: no process found
10/03/2021 16:23:20             dut.10.240.183.214: killall -s INT qemu-system-x86_64
10/03/2021 16:23:20             dut.10.240.183.214: qemu-system-x86_64: no process found
10/03/2021 16:23:31             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
10/03/2021 16:23:31             dut.10.240.183.214: 2048
10/03/2021 16:23:42 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
10/03/2021 16:23:42                         tester: ls -d /tmp
10/03/2021 16:23:42                         tester: /tmp
10/03/2021 16:23:42                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:23:44                         pktgen: test port 0 map gen port 0
10/03/2021 16:23:44                         pktgen: test port 0 map gen port 0
10/03/2021 16:23:44                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:23:44                         pktgen: trex port <0> not support flow control
10/03/2021 16:23:44                         pktgen: check the trex port link status
10/03/2021 16:23:44                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:23:44                         pktgen: begin traffic ......
10/03/2021 16:23:44                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:23:54                         pktgen: begin get port statistic ...
10/03/2021 16:23:54                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:23:54                         pktgen: {0: {'ibytes': 6722392832,
     'ierrors': 0,
     'ipackets': 105037400,
     'obytes': 17457569472,
     'oerrors': 0,
     'opackets': 272774568,
     'rx_bps': 5363570176.0,
     'rx_bps_L1': 7039686016.0,
     'rx_pps': 10475724.0,
     'rx_util': 17.59921504,
     'tx_bps': 13949385728.0,
     'tx_bps_L1': 18308569728.0,
     'tx_pps': 27244900.0,
     'tx_util': 45.77142432},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 1.8830039501190186,
            'cpu_util': 92.60061645507812,
            'cpu_util_raw': 99.375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 139088114,
            'rx_bps': 5363570176.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8585815552.0,
            'rx_pps': 10475724.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13949385728.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 27244900.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 6722392832,
           'ierrors': 0,
           'ipackets': 105037400,
           'obytes': 17457569472,
           'oerrors': 0,
           'opackets': 272774568,
           'rx_bps': 5363570176.0,
           'rx_bps_L1': 7039686016.0,
           'rx_pps': 10475724.0,
           'rx_util': 17.59921504,
           'tx_bps': 13949385728.0,
           'tx_bps_L1': 18308569728.0,
           'tx_pps': 27244900.0,
           'tx_util': 45.77142432}}
10/03/2021 16:23:54                         pktgen: {'ibytes': 6722392832,
 'ierrors': 0,
 'ipackets': 105037400,
 'obytes': 17457569472,
 'oerrors': 0,
 'opackets': 272774568,
 'rx_bps': 5363570176.0,
 'rx_bps_L1': 7039686016.0,
 'rx_pps': 10475724.0,
 'rx_util': 17.59921504,
 'tx_bps': 13949385728.0,
 'tx_bps_L1': 18308569728.0,
 'tx_pps': 27244900.0,
 'tx_util': 45.77142432}
10/03/2021 16:23:54                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13949385728.000000, tx_pps: 27244900.000000 
10/03/2021 16:23:54                         pktgen: {'ibytes': 6722392832,
 'ierrors': 0,
 'ipackets': 105037400,
 'obytes': 17457569472,
 'oerrors': 0,
 'opackets': 272774568,
 'rx_bps': 5363570176.0,
 'rx_bps_L1': 7039686016.0,
 'rx_pps': 10475724.0,
 'rx_util': 17.59921504,
 'tx_bps': 13949385728.0,
 'tx_bps_L1': 18308569728.0,
 'tx_pps': 27244900.0,
 'tx_util': 45.77142432}
10/03/2021 16:23:54                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 5363570176.000000, rx_pps: 10475724.000000
10/03/2021 16:23:54                         pktgen: throughput: pps_rx 10475724.000000, bps_rx 5363570176.000000
10/03/2021 16:23:54                         pktgen: traffic completed. 
10/03/2021 16:23:54 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
10/03/2021 16:23:54                         tester: ls -d /tmp
10/03/2021 16:23:54                         tester: /tmp
10/03/2021 16:23:54                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:23:55                         pktgen: test port 0 map gen port 0
10/03/2021 16:23:55                         pktgen: test port 0 map gen port 0
10/03/2021 16:23:55                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:23:55                         pktgen: trex port <0> not support flow control
10/03/2021 16:23:55                         pktgen: check the trex port link status
10/03/2021 16:23:55                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:23:55                         pktgen: begin traffic ......
10/03/2021 16:23:55                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:24:05                         pktgen: begin get port statistic ...
10/03/2021 16:24:05                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:24:05                         pktgen: {0: {'ibytes': 12258410112,
     'ierrors': 0,
     'ipackets': 95768851,
     'obytes': 28026237696,
     'oerrors': 0,
     'opackets': 218955011,
     'rx_bps': 9784775680.0,
     'rx_bps_L1': 11314105760.0,
     'rx_pps': 9558313.0,
     'rx_util': 28.2852644,
     'tx_bps': 22398517248.0,
     'tx_bps_L1': 25899482688.0,
     'tx_pps': 21881034.0,
     'tx_util': 64.74870672},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 2.8961217403411865,
            'cpu_util': 96.67462158203125,
            'cpu_util_raw': 99.5625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 141854493,
            'rx_bps': 9784775680.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 12613742592.0,
            'rx_pps': 9558313.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 22398517248.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21881034.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 12258410112,
           'ierrors': 0,
           'ipackets': 95768851,
           'obytes': 28026237696,
           'oerrors': 0,
           'opackets': 218955011,
           'rx_bps': 9784775680.0,
           'rx_bps_L1': 11314105760.0,
           'rx_pps': 9558313.0,
           'rx_util': 28.2852644,
           'tx_bps': 22398517248.0,
           'tx_bps_L1': 25899482688.0,
           'tx_pps': 21881034.0,
           'tx_util': 64.74870672}}
10/03/2021 16:24:05                         pktgen: {'ibytes': 12258410112,
 'ierrors': 0,
 'ipackets': 95768851,
 'obytes': 28026237696,
 'oerrors': 0,
 'opackets': 218955011,
 'rx_bps': 9784775680.0,
 'rx_bps_L1': 11314105760.0,
 'rx_pps': 9558313.0,
 'rx_util': 28.2852644,
 'tx_bps': 22398517248.0,
 'tx_bps_L1': 25899482688.0,
 'tx_pps': 21881034.0,
 'tx_util': 64.74870672}
10/03/2021 16:24:05                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 22398517248.000000, tx_pps: 21881034.000000 
10/03/2021 16:24:05                         pktgen: {'ibytes': 12258410112,
 'ierrors': 0,
 'ipackets': 95768851,
 'obytes': 28026237696,
 'oerrors': 0,
 'opackets': 218955011,
 'rx_bps': 9784775680.0,
 'rx_bps_L1': 11314105760.0,
 'rx_pps': 9558313.0,
 'rx_util': 28.2852644,
 'tx_bps': 22398517248.0,
 'tx_bps_L1': 25899482688.0,
 'tx_pps': 21881034.0,
 'tx_util': 64.74870672}
10/03/2021 16:24:05                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 9784775680.000000, rx_pps: 9558313.000000
10/03/2021 16:24:05                         pktgen: throughput: pps_rx 9558313.000000, bps_rx 9784775680.000000
10/03/2021 16:24:05                         pktgen: traffic completed. 
10/03/2021 16:24:05 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
10/03/2021 16:24:05                         tester: ls -d /tmp
10/03/2021 16:24:05                         tester: /tmp
10/03/2021 16:24:05                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:24:07                         pktgen: test port 0 map gen port 0
10/03/2021 16:24:07                         pktgen: test port 0 map gen port 0
10/03/2021 16:24:07                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:24:07                         pktgen: trex port <0> not support flow control
10/03/2021 16:24:07                         pktgen: check the trex port link status
10/03/2021 16:24:07                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:24:07                         pktgen: begin traffic ......
10/03/2021 16:24:07                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:24:17                         pktgen: begin get port statistic ...
10/03/2021 16:24:17                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:24:17                         pktgen: {0: {'ibytes': 22067500032,
     'ierrors': 0,
     'ipackets': 86201181,
     'obytes': 46391660032,
     'oerrors': 0,
     'opackets': 181217444,
     'rx_bps': 17575528448.0,
     'rx_bps_L1': 18949170048.0,
     'rx_pps': 8585260.0,
     'rx_util': 47.37292512,
     'tx_bps': 36983287808.0,
     'tx_bps_L1': 39873871488.0,
     'tx_pps': 18066148.0,
     'tx_util': 99.68467872},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 56.22187805175781,
            'cpu_util': 8.22261905670166,
            'cpu_util_raw': 3.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 2026911,
            'rx_bps': 17575528448.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 19407759360.0,
            'rx_pps': 8585260.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 36983287808.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18066148.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 22067500032,
           'ierrors': 0,
           'ipackets': 86201181,
           'obytes': 46391660032,
           'oerrors': 0,
           'opackets': 181217444,
           'rx_bps': 17575528448.0,
           'rx_bps_L1': 18949170048.0,
           'rx_pps': 8585260.0,
           'rx_util': 47.37292512,
           'tx_bps': 36983287808.0,
           'tx_bps_L1': 39873871488.0,
           'tx_pps': 18066148.0,
           'tx_util': 99.68467872}}
10/03/2021 16:24:17                         pktgen: {'ibytes': 22067500032,
 'ierrors': 0,
 'ipackets': 86201181,
 'obytes': 46391660032,
 'oerrors': 0,
 'opackets': 181217444,
 'rx_bps': 17575528448.0,
 'rx_bps_L1': 18949170048.0,
 'rx_pps': 8585260.0,
 'rx_util': 47.37292512,
 'tx_bps': 36983287808.0,
 'tx_bps_L1': 39873871488.0,
 'tx_pps': 18066148.0,
 'tx_util': 99.68467872}
10/03/2021 16:24:17                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 36983287808.000000, tx_pps: 18066148.000000 
10/03/2021 16:24:17                         pktgen: {'ibytes': 22067500032,
 'ierrors': 0,
 'ipackets': 86201181,
 'obytes': 46391660032,
 'oerrors': 0,
 'opackets': 181217444,
 'rx_bps': 17575528448.0,
 'rx_bps_L1': 18949170048.0,
 'rx_pps': 8585260.0,
 'rx_util': 47.37292512,
 'tx_bps': 36983287808.0,
 'tx_bps_L1': 39873871488.0,
 'tx_pps': 18066148.0,
 'tx_util': 99.68467872}
10/03/2021 16:24:17                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 17575528448.000000, rx_pps: 8585260.000000
10/03/2021 16:24:17                         pktgen: throughput: pps_rx 8585260.000000, bps_rx 17575528448.000000
10/03/2021 16:24:17                         pktgen: traffic completed. 
10/03/2021 16:24:17 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
10/03/2021 16:24:17                         tester: ls -d /tmp
10/03/2021 16:24:17                         tester: /tmp
10/03/2021 16:24:17                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:24:19                         pktgen: test port 0 map gen port 0
10/03/2021 16:24:19                         pktgen: test port 0 map gen port 0
10/03/2021 16:24:19                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:24:19                         pktgen: trex port <0> not support flow control
10/03/2021 16:24:19                         pktgen: check the trex port link status
10/03/2021 16:24:19                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:24:19                         pktgen: begin traffic ......
10/03/2021 16:24:19                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:24:29                         pktgen: begin get port statistic ...
10/03/2021 16:24:29                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:24:29                         pktgen: {0: {'ibytes': 33609370112,
     'ierrors': 0,
     'ipackets': 65643309,
     'obytes': 48169509376,
     'oerrors': 0,
     'opackets': 94081085,
     'rx_bps': 26779498496.0,
     'rx_bps_L1': 27825880416.0,
     'rx_pps': 6539887.0,
     'rx_util': 69.56470104,
     'tx_bps': 38391713792.0,
     'tx_bps_L1': 39892037952.00001,
     'tx_pps': 9377026.0,
     'tx_util': 99.73009488000002},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.567229270935059,
            'cpu_util': 56.015357971191406,
            'cpu_util_raw': 60.6875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 82957054,
            'rx_bps': 26779498496.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11612216320.0,
            'rx_pps': 6539887.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38391713792.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9377026.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 33609370112,
           'ierrors': 0,
           'ipackets': 65643309,
           'obytes': 48169509376,
           'oerrors': 0,
           'opackets': 94081085,
           'rx_bps': 26779498496.0,
           'rx_bps_L1': 27825880416.0,
           'rx_pps': 6539887.0,
           'rx_util': 69.56470104,
           'tx_bps': 38391713792.0,
           'tx_bps_L1': 39892037952.00001,
           'tx_pps': 9377026.0,
           'tx_util': 99.73009488000002}}
10/03/2021 16:24:29                         pktgen: {'ibytes': 33609370112,
 'ierrors': 0,
 'ipackets': 65643309,
 'obytes': 48169509376,
 'oerrors': 0,
 'opackets': 94081085,
 'rx_bps': 26779498496.0,
 'rx_bps_L1': 27825880416.0,
 'rx_pps': 6539887.0,
 'rx_util': 69.56470104,
 'tx_bps': 38391713792.0,
 'tx_bps_L1': 39892037952.00001,
 'tx_pps': 9377026.0,
 'tx_util': 99.73009488000002}
10/03/2021 16:24:29                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38391713792.000000, tx_pps: 9377026.000000 
10/03/2021 16:24:29                         pktgen: {'ibytes': 33609370112,
 'ierrors': 0,
 'ipackets': 65643309,
 'obytes': 48169509376,
 'oerrors': 0,
 'opackets': 94081085,
 'rx_bps': 26779498496.0,
 'rx_bps_L1': 27825880416.0,
 'rx_pps': 6539887.0,
 'rx_util': 69.56470104,
 'tx_bps': 38391713792.0,
 'tx_bps_L1': 39892037952.00001,
 'tx_pps': 9377026.0,
 'tx_util': 99.73009488000002}
10/03/2021 16:24:29                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 26779498496.000000, rx_pps: 6539887.000000
10/03/2021 16:24:29                         pktgen: throughput: pps_rx 6539887.000000, bps_rx 26779498496.000000
10/03/2021 16:24:29                         pktgen: traffic completed. 
10/03/2021 16:24:29 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
10/03/2021 16:24:29                         tester: ls -d /tmp
10/03/2021 16:24:29                         tester: /tmp
10/03/2021 16:24:29                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:24:30                         pktgen: test port 0 map gen port 0
10/03/2021 16:24:30                         pktgen: test port 0 map gen port 0
10/03/2021 16:24:30                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:24:30                         pktgen: trex port <0> not support flow control
10/03/2021 16:24:30                         pktgen: check the trex port link status
10/03/2021 16:24:30                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:24:30                         pktgen: begin traffic ......
10/03/2021 16:24:30                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:24:40                         pktgen: begin get port statistic ...
10/03/2021 16:24:40                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:24:40                         pktgen: {0: {'ibytes': 49093269504,
     'ierrors': 0,
     'ipackets': 47942652,
     'obytes': 49093216256,
     'oerrors': 0,
     'opackets': 47942600,
     'rx_bps': 39197515776.0,
     'rx_bps_L1': 39963395616.0,
     'rx_pps': 4786749.0,
     'rx_util': 99.90848904,
     'tx_bps': 39204442112.0,
     'tx_bps_L1': 39970588992.0,
     'tx_pps': 4788418.0,
     'tx_util': 99.92647248},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 15.183187484741211,
            'cpu_util': 32.27619552612305,
            'cpu_util_raw': 31.8125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 37080153,
            'rx_bps': 39197515776.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4786749.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39204442112.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4788418.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49093269504,
           'ierrors': 0,
           'ipackets': 47942652,
           'obytes': 49093216256,
           'oerrors': 0,
           'opackets': 47942600,
           'rx_bps': 39197515776.0,
           'rx_bps_L1': 39963395616.0,
           'rx_pps': 4786749.0,
           'rx_util': 99.90848904,
           'tx_bps': 39204442112.0,
           'tx_bps_L1': 39970588992.0,
           'tx_pps': 4788418.0,
           'tx_util': 99.92647248}}
10/03/2021 16:24:40                         pktgen: {'ibytes': 49093269504,
 'ierrors': 0,
 'ipackets': 47942652,
 'obytes': 49093216256,
 'oerrors': 0,
 'opackets': 47942600,
 'rx_bps': 39197515776.0,
 'rx_bps_L1': 39963395616.0,
 'rx_pps': 4786749.0,
 'rx_util': 99.90848904,
 'tx_bps': 39204442112.0,
 'tx_bps_L1': 39970588992.0,
 'tx_pps': 4788418.0,
 'tx_util': 99.92647248}
10/03/2021 16:24:40                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39204442112.000000, tx_pps: 4788418.000000 
10/03/2021 16:24:40                         pktgen: {'ibytes': 49093269504,
 'ierrors': 0,
 'ipackets': 47942652,
 'obytes': 49093216256,
 'oerrors': 0,
 'opackets': 47942600,
 'rx_bps': 39197515776.0,
 'rx_bps_L1': 39963395616.0,
 'rx_pps': 4786749.0,
 'rx_util': 99.90848904,
 'tx_bps': 39204442112.0,
 'tx_bps_L1': 39970588992.0,
 'tx_pps': 4788418.0,
 'tx_util': 99.92647248}
10/03/2021 16:24:40                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39197515776.000000, rx_pps: 4786749.000000
10/03/2021 16:24:40                         pktgen: throughput: pps_rx 4786749.000000, bps_rx 39197515776.000000
10/03/2021 16:24:40                         pktgen: traffic completed. 
10/03/2021 16:24:40 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
10/03/2021 16:24:40                         tester: ls -d /tmp
10/03/2021 16:24:40                         tester: /tmp
10/03/2021 16:24:40                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:24:42                         pktgen: test port 0 map gen port 0
10/03/2021 16:24:42                         pktgen: test port 0 map gen port 0
10/03/2021 16:24:42                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:24:42                         pktgen: trex port <0> not support flow control
10/03/2021 16:24:42                         pktgen: check the trex port link status
10/03/2021 16:24:42                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:24:42                         pktgen: begin traffic ......
10/03/2021 16:24:42                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:24:52                         pktgen: begin get port statistic ...
10/03/2021 16:24:52                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:24:52                         pktgen: {0: {'ibytes': 49400272482,
     'ierrors': 0,
     'ipackets': 32543003,
     'obytes': 49400245158,
     'oerrors': 0,
     'opackets': 32542984,
     'rx_bps': 39377162240.0,
     'rx_bps_L1': 39896153200.0,
     'rx_pps': 3243693.5,
     'rx_util': 99.740383,
     'tx_bps': 39377268736.0,
     'tx_bps_L1': 39896261256.0,
     'tx_pps': 3243703.25,
     'tx_util': 99.74065314},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 33.49525451660156,
            'cpu_util': 14.695093154907227,
            'cpu_util_raw': 14.6875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17286202,
            'rx_bps': 39377162240.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243693.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39377268736.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243703.25},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49400272482,
           'ierrors': 0,
           'ipackets': 32543003,
           'obytes': 49400245158,
           'oerrors': 0,
           'opackets': 32542984,
           'rx_bps': 39377162240.0,
           'rx_bps_L1': 39896153200.0,
           'rx_pps': 3243693.5,
           'rx_util': 99.740383,
           'tx_bps': 39377268736.0,
           'tx_bps_L1': 39896261256.0,
           'tx_pps': 3243703.25,
           'tx_util': 99.74065314}}
10/03/2021 16:24:52                         pktgen: {'ibytes': 49400272482,
 'ierrors': 0,
 'ipackets': 32543003,
 'obytes': 49400245158,
 'oerrors': 0,
 'opackets': 32542984,
 'rx_bps': 39377162240.0,
 'rx_bps_L1': 39896153200.0,
 'rx_pps': 3243693.5,
 'rx_util': 99.740383,
 'tx_bps': 39377268736.0,
 'tx_bps_L1': 39896261256.0,
 'tx_pps': 3243703.25,
 'tx_util': 99.74065314}
10/03/2021 16:24:52                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39377268736.000000, tx_pps: 3243703.250000 
10/03/2021 16:24:52                         pktgen: {'ibytes': 49400272482,
 'ierrors': 0,
 'ipackets': 32543003,
 'obytes': 49400245158,
 'oerrors': 0,
 'opackets': 32542984,
 'rx_bps': 39377162240.0,
 'rx_bps_L1': 39896153200.0,
 'rx_pps': 3243693.5,
 'rx_util': 99.740383,
 'tx_bps': 39377268736.0,
 'tx_bps_L1': 39896261256.0,
 'tx_pps': 3243703.25,
 'tx_util': 99.74065314}
10/03/2021 16:24:52                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39377162240.000000, rx_pps: 3243693.500000
10/03/2021 16:24:52                         pktgen: throughput: pps_rx 3243693.500000, bps_rx 39377162240.000000
10/03/2021 16:24:52                         pktgen: traffic completed. 
10/03/2021 16:24:54 TestPVPMultiPathVhostPerformance: result of all framesize result
10/03/2021 16:24:54 TestPVPMultiPathVhostPerformance: 
+-------+-------------------+--------+------------+
| Frame |   Mode/RXD-TXD    |  Mpps  | % linerate |
+=======+===================+========+============+
| 64    | virtio_1.1 normal | 10.476 | 17.599     |
+-------+-------------------+--------+------------+
| 128   | virtio_1.1 normal | 9.558  | 28.293     |
+-------+-------------------+--------+------------+
| 256   | virtio_1.1 normal | 8.585  | 47.391     |
+-------+-------------------+--------+------------+
| 512   | virtio_1.1 normal | 6.540  | 69.584     |
+-------+-------------------+--------+------------+
| 1024  | virtio_1.1 normal | 4.787  | 99.947     |
+-------+-------------------+--------+------------+
| 1518  | virtio_1.1 normal | 3.244  | 99.776     |
+-------+-------------------+--------+------------+
10/03/2021 16:24:54 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps     | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+=============+============+=====================+=======================+
| 64    | 1024         | 10.476 Mpps | 17.599%    | 10.541 Mpps         | -0.065 Mpps           |
+-------+--------------+-------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.244 Mpps  | 99.776%    | 3.248 Mpps          | -0.004 Mpps           |
+-------+--------------+-------------+------------+---------------------+-----------------------+
10/03/2021 16:24:54 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.527050
10/03/2021 16:24:54 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.065000
10/03/2021 16:24:54 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162400
10/03/2021 16:24:54 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.004000
10/03/2021 16:24:54 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_normal Result PASSED:
10/03/2021 16:24:54             dut.10.240.183.214: kill_all: called by dut and prefix list has value.
10/03/2021 16:24:55 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_vectorized Begin
10/03/2021 16:24:55             dut.10.240.183.214: 
10/03/2021 16:24:55                         tester: 
10/03/2021 16:24:55             dut.10.240.183.214: rm -rf ./vhost.out
10/03/2021 16:24:55             dut.10.240.183.214: 
10/03/2021 16:24:55             dut.10.240.183.214: rm -rf ./vhost-net*
10/03/2021 16:24:55             dut.10.240.183.214: 
10/03/2021 16:24:55             dut.10.240.183.214: killall -s INT dpdk-testpmd 
10/03/2021 16:24:55             dut.10.240.183.214: dpdk-testpmd: no process found
10/03/2021 16:24:55             dut.10.240.183.214: killall -s INT qemu-system-x86_64
10/03/2021 16:24:55             dut.10.240.183.214: qemu-system-x86_64: no process found
10/03/2021 16:25:06             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
10/03/2021 16:25:06             dut.10.240.183.214: 2048
10/03/2021 16:25:17 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
10/03/2021 16:25:17                         tester: ls -d /tmp
10/03/2021 16:25:17                         tester: /tmp
10/03/2021 16:25:17                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:25:19                         pktgen: test port 0 map gen port 0
10/03/2021 16:25:19                         pktgen: test port 0 map gen port 0
10/03/2021 16:25:19                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:25:19                         pktgen: trex port <0> not support flow control
10/03/2021 16:25:19                         pktgen: check the trex port link status
10/03/2021 16:25:19                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:25:19                         pktgen: begin traffic ......
10/03/2021 16:25:19                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:25:29                         pktgen: begin get port statistic ...
10/03/2021 16:25:29                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:25:29                         pktgen: {0: {'ibytes': 7976170944,
     'ierrors': 0,
     'ipackets': 124627685,
     'obytes': 17197529280,
     'oerrors': 0,
     'opackets': 268711432,
     'rx_bps': 6358828544.0,
     'rx_bps_L1': 8345962624.0,
     'rx_pps': 12419588.0,
     'rx_util': 20.864906559999998,
     'tx_bps': 13743772672.0,
     'tx_bps_L1': 18038701632.0,
     'tx_pps': 26843306.0,
     'tx_util': 45.096754080000004},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 1.8397513628005981,
            'cpu_util': 93.3806381225586,
            'cpu_util_raw': 99.375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 139132711,
            'rx_bps': 6358828544.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 7384943616.0,
            'rx_pps': 12419588.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13743772672.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26843306.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 7976170944,
           'ierrors': 0,
           'ipackets': 124627685,
           'obytes': 17197529280,
           'oerrors': 0,
           'opackets': 268711432,
           'rx_bps': 6358828544.0,
           'rx_bps_L1': 8345962624.0,
           'rx_pps': 12419588.0,
           'rx_util': 20.864906559999998,
           'tx_bps': 13743772672.0,
           'tx_bps_L1': 18038701632.0,
           'tx_pps': 26843306.0,
           'tx_util': 45.096754080000004}}
10/03/2021 16:25:29                         pktgen: {'ibytes': 7976170944,
 'ierrors': 0,
 'ipackets': 124627685,
 'obytes': 17197529280,
 'oerrors': 0,
 'opackets': 268711432,
 'rx_bps': 6358828544.0,
 'rx_bps_L1': 8345962624.0,
 'rx_pps': 12419588.0,
 'rx_util': 20.864906559999998,
 'tx_bps': 13743772672.0,
 'tx_bps_L1': 18038701632.0,
 'tx_pps': 26843306.0,
 'tx_util': 45.096754080000004}
10/03/2021 16:25:29                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13743772672.000000, tx_pps: 26843306.000000 
10/03/2021 16:25:29                         pktgen: {'ibytes': 7976170944,
 'ierrors': 0,
 'ipackets': 124627685,
 'obytes': 17197529280,
 'oerrors': 0,
 'opackets': 268711432,
 'rx_bps': 6358828544.0,
 'rx_bps_L1': 8345962624.0,
 'rx_pps': 12419588.0,
 'rx_util': 20.864906559999998,
 'tx_bps': 13743772672.0,
 'tx_bps_L1': 18038701632.0,
 'tx_pps': 26843306.0,
 'tx_util': 45.096754080000004}
10/03/2021 16:25:29                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 6358828544.000000, rx_pps: 12419588.000000
10/03/2021 16:25:29                         pktgen: throughput: pps_rx 12419588.000000, bps_rx 6358828544.000000
10/03/2021 16:25:29                         pktgen: traffic completed. 
10/03/2021 16:25:29 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
10/03/2021 16:25:29                         tester: ls -d /tmp
10/03/2021 16:25:29                         tester: /tmp
10/03/2021 16:25:29                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:25:30                         pktgen: test port 0 map gen port 0
10/03/2021 16:25:30                         pktgen: test port 0 map gen port 0
10/03/2021 16:25:30                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:25:30                         pktgen: trex port <0> not support flow control
10/03/2021 16:25:30                         pktgen: check the trex port link status
10/03/2021 16:25:30                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:25:30                         pktgen: begin traffic ......
10/03/2021 16:25:30                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:25:40                         pktgen: begin get port statistic ...
10/03/2021 16:25:40                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:25:40                         pktgen: {0: {'ibytes': 14421977728,
     'ierrors': 0,
     'ipackets': 112671709,
     'obytes': 28079048192,
     'oerrors': 0,
     'opackets': 219367587,
     'rx_bps': 11487004672.0,
     'rx_bps_L1': 13282258112.0,
     'rx_pps': 11220334.0,
     'rx_util': 33.20564528,
     'tx_bps': 22394226688.0,
     'tx_bps_L1': 25894208768.0,
     'tx_pps': 21874888.0,
     'tx_util': 64.73552192000001},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 2.887571334838867,
            'cpu_util': 96.94230651855469,
            'cpu_util_raw': 99.4375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 141840234,
            'rx_bps': 11487004672.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10907222016.0,
            'rx_pps': 11220334.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 22394226688.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21874888.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 14421977728,
           'ierrors': 0,
           'ipackets': 112671709,
           'obytes': 28079048192,
           'oerrors': 0,
           'opackets': 219367587,
           'rx_bps': 11487004672.0,
           'rx_bps_L1': 13282258112.0,
           'rx_pps': 11220334.0,
           'rx_util': 33.20564528,
           'tx_bps': 22394226688.0,
           'tx_bps_L1': 25894208768.0,
           'tx_pps': 21874888.0,
           'tx_util': 64.73552192000001}}
10/03/2021 16:25:40                         pktgen: {'ibytes': 14421977728,
 'ierrors': 0,
 'ipackets': 112671709,
 'obytes': 28079048192,
 'oerrors': 0,
 'opackets': 219367587,
 'rx_bps': 11487004672.0,
 'rx_bps_L1': 13282258112.0,
 'rx_pps': 11220334.0,
 'rx_util': 33.20564528,
 'tx_bps': 22394226688.0,
 'tx_bps_L1': 25894208768.0,
 'tx_pps': 21874888.0,
 'tx_util': 64.73552192000001}
10/03/2021 16:25:40                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 22394226688.000000, tx_pps: 21874888.000000 
10/03/2021 16:25:40                         pktgen: {'ibytes': 14421977728,
 'ierrors': 0,
 'ipackets': 112671709,
 'obytes': 28079048192,
 'oerrors': 0,
 'opackets': 219367587,
 'rx_bps': 11487004672.0,
 'rx_bps_L1': 13282258112.0,
 'rx_pps': 11220334.0,
 'rx_util': 33.20564528,
 'tx_bps': 22394226688.0,
 'tx_bps_L1': 25894208768.0,
 'tx_pps': 21874888.0,
 'tx_util': 64.73552192000001}
10/03/2021 16:25:40                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 11487004672.000000, rx_pps: 11220334.000000
10/03/2021 16:25:40                         pktgen: throughput: pps_rx 11220334.000000, bps_rx 11487004672.000000
10/03/2021 16:25:40                         pktgen: traffic completed. 
10/03/2021 16:25:40 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
10/03/2021 16:25:40                         tester: ls -d /tmp
10/03/2021 16:25:40                         tester: /tmp
10/03/2021 16:25:40                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:25:42                         pktgen: test port 0 map gen port 0
10/03/2021 16:25:42                         pktgen: test port 0 map gen port 0
10/03/2021 16:25:42                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:25:42                         pktgen: trex port <0> not support flow control
10/03/2021 16:25:42                         pktgen: check the trex port link status
10/03/2021 16:25:42                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:25:42                         pktgen: begin traffic ......
10/03/2021 16:25:42                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:25:52                         pktgen: begin get port statistic ...
10/03/2021 16:25:52                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:25:52                         pktgen: {0: {'ibytes': 23284486912,
     'ierrors': 0,
     'ipackets': 90955039,
     'obytes': 46400048384,
     'oerrors': 0,
     'opackets': 181250211,
     'rx_bps': 18560231424.0,
     'rx_bps_L1': 20010722624.0,
     'rx_pps': 9065570.0,
     'rx_util': 50.026806560000004,
     'tx_bps': 37008429056.0,
     'tx_bps_L1': 39900635456.0,
     'tx_pps': 18076290.0,
     'tx_util': 99.75158864},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 52.76976013183594,
            'cpu_util': 8.766486167907715,
            'cpu_util_raw': 3.5625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 1909912,
            'rx_bps': 18560231424.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 18448197632.0,
            'rx_pps': 9065570.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37008429056.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18076290.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 23284486912,
           'ierrors': 0,
           'ipackets': 90955039,
           'obytes': 46400048384,
           'oerrors': 0,
           'opackets': 181250211,
           'rx_bps': 18560231424.0,
           'rx_bps_L1': 20010722624.0,
           'rx_pps': 9065570.0,
           'rx_util': 50.026806560000004,
           'tx_bps': 37008429056.0,
           'tx_bps_L1': 39900635456.0,
           'tx_pps': 18076290.0,
           'tx_util': 99.75158864}}
10/03/2021 16:25:52                         pktgen: {'ibytes': 23284486912,
 'ierrors': 0,
 'ipackets': 90955039,
 'obytes': 46400048384,
 'oerrors': 0,
 'opackets': 181250211,
 'rx_bps': 18560231424.0,
 'rx_bps_L1': 20010722624.0,
 'rx_pps': 9065570.0,
 'rx_util': 50.026806560000004,
 'tx_bps': 37008429056.0,
 'tx_bps_L1': 39900635456.0,
 'tx_pps': 18076290.0,
 'tx_util': 99.75158864}
10/03/2021 16:25:52                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37008429056.000000, tx_pps: 18076290.000000 
10/03/2021 16:25:52                         pktgen: {'ibytes': 23284486912,
 'ierrors': 0,
 'ipackets': 90955039,
 'obytes': 46400048384,
 'oerrors': 0,
 'opackets': 181250211,
 'rx_bps': 18560231424.0,
 'rx_bps_L1': 20010722624.0,
 'rx_pps': 9065570.0,
 'rx_util': 50.026806560000004,
 'tx_bps': 37008429056.0,
 'tx_bps_L1': 39900635456.0,
 'tx_pps': 18076290.0,
 'tx_util': 99.75158864}
10/03/2021 16:25:52                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 18560231424.000000, rx_pps: 9065570.000000
10/03/2021 16:25:52                         pktgen: throughput: pps_rx 9065570.000000, bps_rx 18560231424.000000
10/03/2021 16:25:52                         pktgen: traffic completed. 
10/03/2021 16:25:52 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
10/03/2021 16:25:52                         tester: ls -d /tmp
10/03/2021 16:25:52                         tester: /tmp
10/03/2021 16:25:52                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:25:54                         pktgen: test port 0 map gen port 0
10/03/2021 16:25:54                         pktgen: test port 0 map gen port 0
10/03/2021 16:25:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:25:54                         pktgen: trex port <0> not support flow control
10/03/2021 16:25:54                         pktgen: check the trex port link status
10/03/2021 16:25:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:25:54                         pktgen: begin traffic ......
10/03/2021 16:25:54                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:26:04                         pktgen: begin get port statistic ...
10/03/2021 16:26:04                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:26:04                         pktgen: {0: {'ibytes': 36826703360,
     'ierrors': 0,
     'ipackets': 71927165,
     'obytes': 48169224704,
     'oerrors': 0,
     'opackets': 94080529,
     'rx_bps': 29431185408.0,
     'rx_bps_L1': 30581346927.999996,
     'rx_pps': 7188509.5,
     'rx_util': 76.45336731999998,
     'tx_bps': 38512783360.0,
     'tx_bps_L1': 40018196960.0,
     'tx_pps': 9408835.0,
     'tx_util': 100.0454924},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.435274124145508,
            'cpu_util': 57.0710334777832,
            'cpu_util_raw': 61.0625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 83539462,
            'rx_bps': 29431185408.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9081600000.0,
            'rx_pps': 7188509.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38512783360.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9408835.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 36826703360,
           'ierrors': 0,
           'ipackets': 71927165,
           'obytes': 48169224704,
           'oerrors': 0,
           'opackets': 94080529,
           'rx_bps': 29431185408.0,
           'rx_bps_L1': 30581346927.999996,
           'rx_pps': 7188509.5,
           'rx_util': 76.45336731999998,
           'tx_bps': 38512783360.0,
           'tx_bps_L1': 40018196960.0,
           'tx_pps': 9408835.0,
           'tx_util': 100.0454924}}
10/03/2021 16:26:04                         pktgen: {'ibytes': 36826703360,
 'ierrors': 0,
 'ipackets': 71927165,
 'obytes': 48169224704,
 'oerrors': 0,
 'opackets': 94080529,
 'rx_bps': 29431185408.0,
 'rx_bps_L1': 30581346927.999996,
 'rx_pps': 7188509.5,
 'rx_util': 76.45336731999998,
 'tx_bps': 38512783360.0,
 'tx_bps_L1': 40018196960.0,
 'tx_pps': 9408835.0,
 'tx_util': 100.0454924}
10/03/2021 16:26:04                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38512783360.000000, tx_pps: 9408835.000000 
10/03/2021 16:26:04                         pktgen: {'ibytes': 36826703360,
 'ierrors': 0,
 'ipackets': 71927165,
 'obytes': 48169224704,
 'oerrors': 0,
 'opackets': 94080529,
 'rx_bps': 29431185408.0,
 'rx_bps_L1': 30581346927.999996,
 'rx_pps': 7188509.5,
 'rx_util': 76.45336731999998,
 'tx_bps': 38512783360.0,
 'tx_bps_L1': 40018196960.0,
 'tx_pps': 9408835.0,
 'tx_util': 100.0454924}
10/03/2021 16:26:04                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 29431185408.000000, rx_pps: 7188509.500000
10/03/2021 16:26:04                         pktgen: throughput: pps_rx 7188509.500000, bps_rx 29431185408.000000
10/03/2021 16:26:04                         pktgen: traffic completed. 
10/03/2021 16:26:04 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
10/03/2021 16:26:04                         tester: ls -d /tmp
10/03/2021 16:26:04                         tester: /tmp
10/03/2021 16:26:04                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:26:05                         pktgen: test port 0 map gen port 0
10/03/2021 16:26:05                         pktgen: test port 0 map gen port 0
10/03/2021 16:26:05                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:26:05                         pktgen: trex port <0> not support flow control
10/03/2021 16:26:05                         pktgen: check the trex port link status
10/03/2021 16:26:05                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:26:05                         pktgen: begin traffic ......
10/03/2021 16:26:05                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:26:15                         pktgen: begin get port statistic ...
10/03/2021 16:26:15                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:26:15                         pktgen: {0: {'ibytes': 49095933952,
     'ierrors': 0,
     'ipackets': 47945253,
     'obytes': 49095870464,
     'oerrors': 0,
     'opackets': 47945192,
     'rx_bps': 39187857408.0,
     'rx_bps_L1': 39953497728.0,
     'rx_pps': 4785252.0,
     'rx_util': 99.88374432,
     'tx_bps': 39191912448.0,
     'tx_bps_L1': 39957709888.0,
     'tx_pps': 4786234.0,
     'tx_util': 99.89427472},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 16.467004776000977,
            'cpu_util': 29.750335693359375,
            'cpu_util_raw': 30.8125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 37251364,
            'rx_bps': 39187857408.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4785252.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39191912448.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4786234.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49095933952,
           'ierrors': 0,
           'ipackets': 47945253,
           'obytes': 49095870464,
           'oerrors': 0,
           'opackets': 47945192,
           'rx_bps': 39187857408.0,
           'rx_bps_L1': 39953497728.0,
           'rx_pps': 4785252.0,
           'rx_util': 99.88374432,
           'tx_bps': 39191912448.0,
           'tx_bps_L1': 39957709888.0,
           'tx_pps': 4786234.0,
           'tx_util': 99.89427472}}
10/03/2021 16:26:15                         pktgen: {'ibytes': 49095933952,
 'ierrors': 0,
 'ipackets': 47945253,
 'obytes': 49095870464,
 'oerrors': 0,
 'opackets': 47945192,
 'rx_bps': 39187857408.0,
 'rx_bps_L1': 39953497728.0,
 'rx_pps': 4785252.0,
 'rx_util': 99.88374432,
 'tx_bps': 39191912448.0,
 'tx_bps_L1': 39957709888.0,
 'tx_pps': 4786234.0,
 'tx_util': 99.89427472}
10/03/2021 16:26:15                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39191912448.000000, tx_pps: 4786234.000000 
10/03/2021 16:26:15                         pktgen: {'ibytes': 49095933952,
 'ierrors': 0,
 'ipackets': 47945253,
 'obytes': 49095870464,
 'oerrors': 0,
 'opackets': 47945192,
 'rx_bps': 39187857408.0,
 'rx_bps_L1': 39953497728.0,
 'rx_pps': 4785252.0,
 'rx_util': 99.88374432,
 'tx_bps': 39191912448.0,
 'tx_bps_L1': 39957709888.0,
 'tx_pps': 4786234.0,
 'tx_util': 99.89427472}
10/03/2021 16:26:15                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39187857408.000000, rx_pps: 4785252.000000
10/03/2021 16:26:15                         pktgen: throughput: pps_rx 4785252.000000, bps_rx 39187857408.000000
10/03/2021 16:26:15                         pktgen: traffic completed. 
10/03/2021 16:26:15 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
10/03/2021 16:26:15                         tester: ls -d /tmp
10/03/2021 16:26:15                         tester: /tmp
10/03/2021 16:26:15                         tester: scp -v /home/lingwei/dts_0310/output/tmp/pcap/multi_path.pcap root@10.240.183.213:/tmp/multi_path.pcap
10/03/2021 16:26:17                         pktgen: test port 0 map gen port 0
10/03/2021 16:26:17                         pktgen: test port 0 map gen port 0
10/03/2021 16:26:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:26:17                         pktgen: trex port <0> not support flow control
10/03/2021 16:26:17                         pktgen: check the trex port link status
10/03/2021 16:26:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
10/03/2021 16:26:17                         pktgen: begin traffic ......
10/03/2021 16:26:17                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
10/03/2021 16:26:27                         pktgen: begin get port statistic ...
10/03/2021 16:26:27                         pktgen: {'options': {'pcap': '/tmp/multi_path.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/multi_path.pcap',
 'rx_port': 0,
 'tx_port': 0}
10/03/2021 16:26:27                         pktgen: {0: {'ibytes': 49405442790,
     'ierrors': 0,
     'ipackets': 32546409,
     'obytes': 49405395732,
     'oerrors': 0,
     'opackets': 32546377,
     'rx_bps': 39381401600.0,
     'rx_bps_L1': 39900402840.0,
     'rx_pps': 3243757.75,
     'rx_util': 99.7510071,
     'tx_bps': 39381458944.0,
     'tx_bps_L1': 39900461064.0,
     'tx_pps': 3243763.25,
     'tx_util': 99.75115266},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 32.511356353759766,
            'cpu_util': 15.141424179077148,
            'cpu_util_raw': 15.5625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17534718,
            'rx_bps': 39381401600.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243757.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39381458944.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243763.25},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49405442790,
           'ierrors': 0,
           'ipackets': 32546409,
           'obytes': 49405395732,
           'oerrors': 0,
           'opackets': 32546377,
           'rx_bps': 39381401600.0,
           'rx_bps_L1': 39900402840.0,
           'rx_pps': 3243757.75,
           'rx_util': 99.7510071,
           'tx_bps': 39381458944.0,
           'tx_bps_L1': 39900461064.0,
           'tx_pps': 3243763.25,
           'tx_util': 99.75115266}}
10/03/2021 16:26:27                         pktgen: {'ibytes': 49405442790,
 'ierrors': 0,
 'ipackets': 32546409,
 'obytes': 49405395732,
 'oerrors': 0,
 'opackets': 32546377,
 'rx_bps': 39381401600.0,
 'rx_bps_L1': 39900402840.0,
 'rx_pps': 3243757.75,
 'rx_util': 99.7510071,
 'tx_bps': 39381458944.0,
 'tx_bps_L1': 39900461064.0,
 'tx_pps': 3243763.25,
 'tx_util': 99.75115266}
10/03/2021 16:26:27                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39381458944.000000, tx_pps: 3243763.250000 
10/03/2021 16:26:27                         pktgen: {'ibytes': 49405442790,
 'ierrors': 0,
 'ipackets': 32546409,
 'obytes': 49405395732,
 'oerrors': 0,
 'opackets': 32546377,
 'rx_bps': 39381401600.0,
 'rx_bps_L1': 39900402840.0,
 'rx_pps': 3243757.75,
 'rx_util': 99.7510071,
 'tx_bps': 39381458944.0,
 'tx_bps_L1': 39900461064.0,
 'tx_pps': 3243763.25,
 'tx_util': 99.75115266}
10/03/2021 16:26:27                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39381401600.000000, rx_pps: 3243757.750000
10/03/2021 16:26:27                         pktgen: throughput: pps_rx 3243757.750000, bps_rx 39381401600.000000
10/03/2021 16:26:27                         pktgen: traffic completed. 
10/03/2021 16:26:29 TestPVPMultiPathVhostPerformance: result of all framesize result
10/03/2021 16:26:29 TestPVPMultiPathVhostPerformance: 
+-------+---------------------------+--------+------------+
| Frame |       Mode/RXD-TXD        |  Mpps  | % linerate |
+=======+===========================+========+============+
| 64    | virtio_1.1 inorder normal | 12.420 | 20.865     |
+-------+---------------------------+--------+------------+
| 128   | virtio_1.1 inorder normal | 11.220 | 33.212     |
+-------+---------------------------+--------+------------+
| 256   | virtio_1.1 inorder normal | 9.066  | 50.042     |
+-------+---------------------------+--------+------------+
| 512   | virtio_1.1 inorder normal | 7.189  | 76.486     |
+-------+---------------------------+--------+------------+
| 1024  | virtio_1.1 inorder normal | 4.785  | 99.916     |
+-------+---------------------------+--------+------------+
| 1518  | virtio_1.1 inorder normal | 3.244  | 99.778     |
+-------+---------------------------+--------+------------+
10/03/2021 16:26:29 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps     | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+=============+============+=====================+=======================+
| 64    | 1024         | 12.420 Mpps | 20.865%    | 12.000 Mpps         | 0.420 Mpps            |
+-------+--------------+-------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.244 Mpps  | 99.778%    | 3.242 Mpps          | 0.002 Mpps            |
+-------+--------------+-------------+------------+---------------------+-----------------------+
10/03/2021 16:26:29 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.600000
10/03/2021 16:26:29 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.420000
10/03/2021 16:26:29 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162100
10/03/2021 16:26:29 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.002000
10/03/2021 16:26:29 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_vectorized Result PASSED:
10/03/2021 16:26:29             dut.10.240.183.214: kill_all: called by dut and prefix list has value.
10/03/2021 16:26:30                            dts: 
TEST SUITE ENDED: TestPVPMultiPathVhostPerformance

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V2] tests/pvp_multi_paths_vhost_single_core_performance:remove vectorized=0 by default in test case 9 and optimize code
  2021-03-10  9:35 [dts] [PATCH V2] tests/pvp_multi_paths_vhost_single_core_performance:remove vectorized=0 by default in test case 9 and optimize code Ling Wei
  2021-03-10  9:37 ` Ling, WeiX
@ 2021-03-15  7:02 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2021-03-15  7:02 UTC (permalink / raw)
  To: Ling, WeiX, dts; +Cc: Ling, WeiX

> Remove vectorized=0 by default in test case 9 and use pmd.start_testpmd() to
> replace session.send_expect() to start and quit testpmd.
> 
> Signed-off-by: Ling Wei <weix.ling@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-15  7:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-10  9:35 [dts] [PATCH V2] tests/pvp_multi_paths_vhost_single_core_performance:remove vectorized=0 by default in test case 9 and optimize code Ling Wei
2021-03-10  9:37 ` Ling, WeiX
2021-03-15  7:02 ` Tu, Lijuan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).