test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1] tests/pvp_multi_paths_vhost_single_core_performance:Remove vectorized=0 by default in test case 9 and optimize code
@ 2021-03-03  9:45 Ling Wei
  2021-03-03  9:47 ` Ling, WeiX
  0 siblings, 1 reply; 2+ messages in thread
From: Ling Wei @ 2021-03-03  9:45 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..5624e29a 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.execute_cmd("quit", "# ")
+        self.virtio_user0_pmd.execute_cmd("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] 2+ messages in thread

* Re: [dts] [PATCH V1] tests/pvp_multi_paths_vhost_single_core_performance:Remove vectorized=0 by default in test case 9 and optimize code
  2021-03-03  9:45 [dts] [PATCH V1] tests/pvp_multi_paths_vhost_single_core_performance:Remove vectorized=0 by default in test case 9 and optimize code Ling Wei
@ 2021-03-03  9:47 ` Ling, WeiX
  0 siblings, 0 replies; 2+ messages in thread
From: Ling, WeiX @ 2021-03-03  9:47 UTC (permalink / raw)
  To: dts

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

> -----Original Message-----
> From: Ling, WeiX <weix.ling@intel.com>
> Sent: Wednesday, March 3, 2021 05:45 PM
> To: dts@dpdk.org
> Cc: Ling, WeiX <weix.ling@intel.com>
> Subject: [dts][PATCH V1]
> 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: 431654 bytes --]

03/03/2021 17:25:06                            dts: 
TEST SUITE : TestPVPMultiPathVhostPerformance
03/03/2021 17:25:06                            dts: NIC :        fortville_spirit
03/03/2021 17:25:06             dut.10.240.183.220: 
03/03/2021 17:25:06                         tester: 
03/03/2021 17:25:06                         tester: ls -d /tmp
03/03/2021 17:25:06                         tester: /tmp
03/03/2021 17:25:09             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
03/03/2021 17:25:09             dut.10.240.183.220: 1048576
03/03/2021 17:25:09 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_inorder_mergeable Begin
03/03/2021 17:25:09             dut.10.240.183.220: 
03/03/2021 17:25:10                         tester: 
03/03/2021 17:25:10             dut.10.240.183.220: rm -rf ./vhost.out
03/03/2021 17:25:10             dut.10.240.183.220: 
03/03/2021 17:25:10             dut.10.240.183.220: rm -rf ./vhost-net*
03/03/2021 17:25:10             dut.10.240.183.220: 
03/03/2021 17:25:10             dut.10.240.183.220: killall -s INT dpdk-testpmd 
03/03/2021 17:25:10             dut.10.240.183.220: dpdk-testpmd: no process found
03/03/2021 17:25:10             dut.10.240.183.220: killall -s INT qemu-system-x86_64
03/03/2021 17:25:10             dut.10.240.183.220: qemu-system-x86_64: no process found
03/03/2021 17:25:21             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
03/03/2021 17:25:21             dut.10.240.183.220: 1048576
03/03/2021 17:25:32 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
03/03/2021 17:25:32                         tester: ls -d /tmp
03/03/2021 17:25:32                         tester: /tmp
03/03/2021 17:25:32                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:25:34                         pktgen: test port 0 map gen port 0
03/03/2021 17:25:34                         pktgen: test port 0 map gen port 0
03/03/2021 17:25: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:25:34                         pktgen: trex port <0> not support flow control
03/03/2021 17:25:34                         pktgen: check the trex port link status
03/03/2021 17:25: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:25:34                         pktgen: begin traffic ......
03/03/2021 17:25:34                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:25:44                         pktgen: begin get port statistic ...
03/03/2021 17:25: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}
03/03/2021 17:25:44                         pktgen: {0: {'ibytes': 6103675904,
     'ierrors': 0,
     'ipackets': 95369940,
     'obytes': 17032057856,
     'oerrors': 0,
     'opackets': 266125921,
     'rx_bps': 4865286144.0,
     'rx_bps_L1': 6385687104.0,
     'rx_pps': 9502506.0,
     'rx_util': 15.964217759999999,
     'tx_bps': 13609906176.0,
     'tx_bps_L1': 17863001536.0,
     'tx_pps': 26581846.0,
     'tx_util': 44.657503840000004},
 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.8295682668685913,
            'cpu_util': 92.98577880859375,
            'cpu_util_raw': 99.3125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 137839732,
            'rx_bps': 4865286144.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8744620032.0,
            'rx_pps': 9502506.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13609906176.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26581846.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 6103675904,
           'ierrors': 0,
           'ipackets': 95369940,
           'obytes': 17032057856,
           'oerrors': 0,
           'opackets': 266125921,
           'rx_bps': 4865286144.0,
           'rx_bps_L1': 6385687104.0,
           'rx_pps': 9502506.0,
           'rx_util': 15.964217759999999,
           'tx_bps': 13609906176.0,
           'tx_bps_L1': 17863001536.0,
           'tx_pps': 26581846.0,
           'tx_util': 44.657503840000004}}
03/03/2021 17:25:44                         pktgen: {'ibytes': 6103675904,
 'ierrors': 0,
 'ipackets': 95369940,
 'obytes': 17032057856,
 'oerrors': 0,
 'opackets': 266125921,
 'rx_bps': 4865286144.0,
 'rx_bps_L1': 6385687104.0,
 'rx_pps': 9502506.0,
 'rx_util': 15.964217759999999,
 'tx_bps': 13609906176.0,
 'tx_bps_L1': 17863001536.0,
 'tx_pps': 26581846.0,
 'tx_util': 44.657503840000004}
03/03/2021 17:25:44                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13609906176.000000, tx_pps: 26581846.000000 
03/03/2021 17:25:44                         pktgen: {'ibytes': 6103675904,
 'ierrors': 0,
 'ipackets': 95369940,
 'obytes': 17032057856,
 'oerrors': 0,
 'opackets': 266125921,
 'rx_bps': 4865286144.0,
 'rx_bps_L1': 6385687104.0,
 'rx_pps': 9502506.0,
 'rx_util': 15.964217759999999,
 'tx_bps': 13609906176.0,
 'tx_bps_L1': 17863001536.0,
 'tx_pps': 26581846.0,
 'tx_util': 44.657503840000004}
03/03/2021 17:25:44                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4865286144.000000, rx_pps: 9502506.000000
03/03/2021 17:25:44                         pktgen: throughput: pps_rx 9502506.000000, bps_rx 4865286144.000000
03/03/2021 17:25:44                         pktgen: traffic completed. 
03/03/2021 17:25:44 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
03/03/2021 17:25:44                         tester: ls -d /tmp
03/03/2021 17:25:44                         tester: /tmp
03/03/2021 17:25:44                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:25:46                         pktgen: test port 0 map gen port 0
03/03/2021 17:25:46                         pktgen: test port 0 map gen port 0
03/03/2021 17:25:46                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:25:46                         pktgen: trex port <0> not support flow control
03/03/2021 17:25:46                         pktgen: check the trex port link status
03/03/2021 17:25:46                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:25:46                         pktgen: begin traffic ......
03/03/2021 17:25:46                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:25:56                         pktgen: begin get port statistic ...
03/03/2021 17:25:56                         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}
03/03/2021 17:25:56                         pktgen: {0: {'ibytes': 10957695360,
     'ierrors': 0,
     'ipackets': 85606995,
     'obytes': 27565357312,
     'oerrors': 0,
     'opackets': 215354374,
     'rx_bps': 8741202944.0,
     'rx_bps_L1': 10107377664.0,
     'rx_pps': 8538592.0,
     'rx_util': 25.268444159999998,
     'tx_bps': 21887250432.0,
     'tx_bps_L1': 25308147072.0,
     'tx_pps': 21380604.0,
     'tx_util': 63.27036767999999},
 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.8384127616882324,
            'cpu_util': 96.38859558105469,
            'cpu_util_raw': 99.4375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 140405852,
            'rx_bps': 8741202944.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 13146046464.0,
            'rx_pps': 8538592.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 21887250432.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21380604.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 10957695360,
           'ierrors': 0,
           'ipackets': 85606995,
           'obytes': 27565357312,
           'oerrors': 0,
           'opackets': 215354374,
           'rx_bps': 8741202944.0,
           'rx_bps_L1': 10107377664.0,
           'rx_pps': 8538592.0,
           'rx_util': 25.268444159999998,
           'tx_bps': 21887250432.0,
           'tx_bps_L1': 25308147072.0,
           'tx_pps': 21380604.0,
           'tx_util': 63.27036767999999}}
03/03/2021 17:25:56                         pktgen: {'ibytes': 10957695360,
 'ierrors': 0,
 'ipackets': 85606995,
 'obytes': 27565357312,
 'oerrors': 0,
 'opackets': 215354374,
 'rx_bps': 8741202944.0,
 'rx_bps_L1': 10107377664.0,
 'rx_pps': 8538592.0,
 'rx_util': 25.268444159999998,
 'tx_bps': 21887250432.0,
 'tx_bps_L1': 25308147072.0,
 'tx_pps': 21380604.0,
 'tx_util': 63.27036767999999}
03/03/2021 17:25:56                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 21887250432.000000, tx_pps: 21380604.000000 
03/03/2021 17:25:56                         pktgen: {'ibytes': 10957695360,
 'ierrors': 0,
 'ipackets': 85606995,
 'obytes': 27565357312,
 'oerrors': 0,
 'opackets': 215354374,
 'rx_bps': 8741202944.0,
 'rx_bps_L1': 10107377664.0,
 'rx_pps': 8538592.0,
 'rx_util': 25.268444159999998,
 'tx_bps': 21887250432.0,
 'tx_bps_L1': 25308147072.0,
 'tx_pps': 21380604.0,
 'tx_util': 63.27036767999999}
03/03/2021 17:25:56                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 8741202944.000000, rx_pps: 8538592.000000
03/03/2021 17:25:56                         pktgen: throughput: pps_rx 8538592.000000, bps_rx 8741202944.000000
03/03/2021 17:25:56                         pktgen: traffic completed. 
03/03/2021 17:25:56 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
03/03/2021 17:25:56                         tester: ls -d /tmp
03/03/2021 17:25:57                         tester: /tmp
03/03/2021 17:25:57                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:25:59                         pktgen: test port 0 map gen port 0
03/03/2021 17:25:59                         pktgen: test port 0 map gen port 0
03/03/2021 17:25: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:25:59                         pktgen: trex port <0> not support flow control
03/03/2021 17:25:59                         pktgen: check the trex port link status
03/03/2021 17:25: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:25:59                         pktgen: begin traffic ......
03/03/2021 17:25:59                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:26:09                         pktgen: begin get port statistic ...
03/03/2021 17:26: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}
03/03/2021 17:26:09                         pktgen: {0: {'ibytes': 20078185984,
     'ierrors': 0,
     'ipackets': 78430414,
     'obytes': 46373490176,
     'oerrors': 0,
     'opackets': 181146454,
     'rx_bps': 16071171072.0,
     'rx_bps_L1': 17327050752.0,
     'rx_pps': 7849248.0,
     'rx_util': 43.31762688,
     'tx_bps': 37116293120.0,
     'tx_bps_L1': 40016804480.0,
     'tx_pps': 18128196.0,
     'tx_util': 100.0420112},
 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.82984161376953,
            'cpu_util': 8.782037734985352,
            'cpu_util_raw': 5.3125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 2066914,
            'rx_bps': 16071171072.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 21045121024.0,
            'rx_pps': 7849248.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37116293120.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18128196.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 20078185984,
           'ierrors': 0,
           'ipackets': 78430414,
           'obytes': 46373490176,
           'oerrors': 0,
           'opackets': 181146454,
           'rx_bps': 16071171072.0,
           'rx_bps_L1': 17327050752.0,
           'rx_pps': 7849248.0,
           'rx_util': 43.31762688,
           'tx_bps': 37116293120.0,
           'tx_bps_L1': 40016804480.0,
           'tx_pps': 18128196.0,
           'tx_util': 100.0420112}}
03/03/2021 17:26:09                         pktgen: {'ibytes': 20078185984,
 'ierrors': 0,
 'ipackets': 78430414,
 'obytes': 46373490176,
 'oerrors': 0,
 'opackets': 181146454,
 'rx_bps': 16071171072.0,
 'rx_bps_L1': 17327050752.0,
 'rx_pps': 7849248.0,
 'rx_util': 43.31762688,
 'tx_bps': 37116293120.0,
 'tx_bps_L1': 40016804480.0,
 'tx_pps': 18128196.0,
 'tx_util': 100.0420112}
03/03/2021 17:26:09                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37116293120.000000, tx_pps: 18128196.000000 
03/03/2021 17:26:09                         pktgen: {'ibytes': 20078185984,
 'ierrors': 0,
 'ipackets': 78430414,
 'obytes': 46373490176,
 'oerrors': 0,
 'opackets': 181146454,
 'rx_bps': 16071171072.0,
 'rx_bps_L1': 17327050752.0,
 'rx_pps': 7849248.0,
 'rx_util': 43.31762688,
 'tx_bps': 37116293120.0,
 'tx_bps_L1': 40016804480.0,
 'tx_pps': 18128196.0,
 'tx_util': 100.0420112}
03/03/2021 17:26:09                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 16071171072.000000, rx_pps: 7849248.000000
03/03/2021 17:26:09                         pktgen: throughput: pps_rx 7849248.000000, bps_rx 16071171072.000000
03/03/2021 17:26:09                         pktgen: traffic completed. 
03/03/2021 17:26:09 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
03/03/2021 17:26:09                         tester: ls -d /tmp
03/03/2021 17:26:09                         tester: /tmp
03/03/2021 17:26:09                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:26:11                         pktgen: test port 0 map gen port 0
03/03/2021 17:26:11                         pktgen: test port 0 map gen port 0
03/03/2021 17:26: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:26:11                         pktgen: trex port <0> not support flow control
03/03/2021 17:26:11                         pktgen: check the trex port link status
03/03/2021 17:26: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:26:11                         pktgen: begin traffic ......
03/03/2021 17:26:11                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:26:21                         pktgen: begin get port statistic ...
03/03/2021 17:26: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}
03/03/2021 17:26:21                         pktgen: {0: {'ibytes': 29167947264,
     'ierrors': 0,
     'ipackets': 56968647,
     'obytes': 48171838976,
     'oerrors': 0,
     'opackets': 94085630,
     'rx_bps': 23216721920.0,
     'rx_bps_L1': 24123910400.0,
     'rx_pps': 5669928.0,
     'rx_util': 60.30977600000001,
     'tx_bps': 38369243136.0,
     'tx_bps_L1': 39868699615.99999,
     'tx_pps': 9371603.0,
     'tx_util': 99.67174903999998},
 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.457286834716797,
            'cpu_util': 56.710330963134766,
            'cpu_util_raw': 60.4375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 82010795,
            'rx_bps': 23216721920.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 15152519168.0,
            'rx_pps': 5669928.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38369243136.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9371603.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 29167947264,
           'ierrors': 0,
           'ipackets': 56968647,
           'obytes': 48171838976,
           'oerrors': 0,
           'opackets': 94085630,
           'rx_bps': 23216721920.0,
           'rx_bps_L1': 24123910400.0,
           'rx_pps': 5669928.0,
           'rx_util': 60.30977600000001,
           'tx_bps': 38369243136.0,
           'tx_bps_L1': 39868699615.99999,
           'tx_pps': 9371603.0,
           'tx_util': 99.67174903999998}}
03/03/2021 17:26:21                         pktgen: {'ibytes': 29167947264,
 'ierrors': 0,
 'ipackets': 56968647,
 'obytes': 48171838976,
 'oerrors': 0,
 'opackets': 94085630,
 'rx_bps': 23216721920.0,
 'rx_bps_L1': 24123910400.0,
 'rx_pps': 5669928.0,
 'rx_util': 60.30977600000001,
 'tx_bps': 38369243136.0,
 'tx_bps_L1': 39868699615.99999,
 'tx_pps': 9371603.0,
 'tx_util': 99.67174903999998}
03/03/2021 17:26:21                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38369243136.000000, tx_pps: 9371603.000000 
03/03/2021 17:26:21                         pktgen: {'ibytes': 29167947264,
 'ierrors': 0,
 'ipackets': 56968647,
 'obytes': 48171838976,
 'oerrors': 0,
 'opackets': 94085630,
 'rx_bps': 23216721920.0,
 'rx_bps_L1': 24123910400.0,
 'rx_pps': 5669928.0,
 'rx_util': 60.30977600000001,
 'tx_bps': 38369243136.0,
 'tx_bps_L1': 39868699615.99999,
 'tx_pps': 9371603.0,
 'tx_util': 99.67174903999998}
03/03/2021 17:26:21                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 23216721920.000000, rx_pps: 5669928.000000
03/03/2021 17:26:21                         pktgen: throughput: pps_rx 5669928.000000, bps_rx 23216721920.000000
03/03/2021 17:26:21                         pktgen: traffic completed. 
03/03/2021 17:26:21 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
03/03/2021 17:26:21                         tester: ls -d /tmp
03/03/2021 17:26:21                         tester: /tmp
03/03/2021 17:26:21                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:26:23                         pktgen: test port 0 map gen port 0
03/03/2021 17:26:23                         pktgen: test port 0 map gen port 0
03/03/2021 17:26:23                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:26:23                         pktgen: trex port <0> not support flow control
03/03/2021 17:26:23                         pktgen: check the trex port link status
03/03/2021 17:26:23                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:26:23                         pktgen: begin traffic ......
03/03/2021 17:26:23                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:26:33                         pktgen: begin get port statistic ...
03/03/2021 17:26:33                         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}
03/03/2021 17:26:33                         pktgen: {0: {'ibytes': 46954227712,
     'ierrors': 0,
     'ipackets': 45853742,
     'obytes': 49076563968,
     'oerrors': 0,
     'opackets': 47926336,
     'rx_bps': 37372452864.0,
     'rx_bps_L1': 38102585663.99999,
     'rx_pps': 4563330.0,
     'rx_util': 95.25646415999998,
     'tx_bps': 39104700416.0,
     'tx_bps_L1': 39868797696.0,
     'tx_pps': 4775608.0,
     'tx_util': 99.67199423999999},
 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': 17.235013961791992,
            'cpu_util': 28.361379623413086,
            'cpu_util_raw': 28.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 36164279,
            'rx_bps': 37372452864.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4563330.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39104700416.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4775608.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 46954227712,
           'ierrors': 0,
           'ipackets': 45853742,
           'obytes': 49076563968,
           'oerrors': 0,
           'opackets': 47926336,
           'rx_bps': 37372452864.0,
           'rx_bps_L1': 38102585663.99999,
           'rx_pps': 4563330.0,
           'rx_util': 95.25646415999998,
           'tx_bps': 39104700416.0,
           'tx_bps_L1': 39868797696.0,
           'tx_pps': 4775608.0,
           'tx_util': 99.67199423999999}}
03/03/2021 17:26:33                         pktgen: {'ibytes': 46954227712,
 'ierrors': 0,
 'ipackets': 45853742,
 'obytes': 49076563968,
 'oerrors': 0,
 'opackets': 47926336,
 'rx_bps': 37372452864.0,
 'rx_bps_L1': 38102585663.99999,
 'rx_pps': 4563330.0,
 'rx_util': 95.25646415999998,
 'tx_bps': 39104700416.0,
 'tx_bps_L1': 39868797696.0,
 'tx_pps': 4775608.0,
 'tx_util': 99.67199423999999}
03/03/2021 17:26:33                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39104700416.000000, tx_pps: 4775608.000000 
03/03/2021 17:26:33                         pktgen: {'ibytes': 46954227712,
 'ierrors': 0,
 'ipackets': 45853742,
 'obytes': 49076563968,
 'oerrors': 0,
 'opackets': 47926336,
 'rx_bps': 37372452864.0,
 'rx_bps_L1': 38102585663.99999,
 'rx_pps': 4563330.0,
 'rx_util': 95.25646415999998,
 'tx_bps': 39104700416.0,
 'tx_bps_L1': 39868797696.0,
 'tx_pps': 4775608.0,
 'tx_util': 99.67199423999999}
03/03/2021 17:26:33                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 37372452864.000000, rx_pps: 4563330.000000
03/03/2021 17:26:33                         pktgen: throughput: pps_rx 4563330.000000, bps_rx 37372452864.000000
03/03/2021 17:26:33                         pktgen: traffic completed. 
03/03/2021 17:26:33 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
03/03/2021 17:26:33                         tester: ls -d /tmp
03/03/2021 17:26:33                         tester: /tmp
03/03/2021 17:26:33                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:26:35                         pktgen: test port 0 map gen port 0
03/03/2021 17:26:35                         pktgen: test port 0 map gen port 0
03/03/2021 17:26:35                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:26:35                         pktgen: trex port <0> not support flow control
03/03/2021 17:26:35                         pktgen: check the trex port link status
03/03/2021 17:26:35                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:26:35                         pktgen: begin traffic ......
03/03/2021 17:26:35                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:26:45                         pktgen: begin get port statistic ...
03/03/2021 17:26:45                         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}
03/03/2021 17:26:45                         pktgen: {0: {'ibytes': 49402884960,
     'ierrors': 0,
     'ipackets': 32544723,
     'obytes': 49402777182,
     'oerrors': 0,
     'opackets': 32544653,
     'rx_bps': 39530143744.0,
     'rx_bps_L1': 40051066384.0,
     'rx_pps': 3255766.5,
     'rx_util': 100.12766596,
     'tx_bps': 39530938368.0,
     'tx_bps_L1': 40051876288.0,
     'tx_pps': 3255862.0,
     'tx_util': 100.12969072},
 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.791282653808594,
            'cpu_util': 14.202888488769531,
            'cpu_util_raw': 15.0625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17179948,
            'rx_bps': 39530143744.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3255766.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39530938368.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3255862.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49402884960,
           'ierrors': 0,
           'ipackets': 32544723,
           'obytes': 49402777182,
           'oerrors': 0,
           'opackets': 32544653,
           'rx_bps': 39530143744.0,
           'rx_bps_L1': 40051066384.0,
           'rx_pps': 3255766.5,
           'rx_util': 100.12766596,
           'tx_bps': 39530938368.0,
           'tx_bps_L1': 40051876288.0,
           'tx_pps': 3255862.0,
           'tx_util': 100.12969072}}
03/03/2021 17:26:45                         pktgen: {'ibytes': 49402884960,
 'ierrors': 0,
 'ipackets': 32544723,
 'obytes': 49402777182,
 'oerrors': 0,
 'opackets': 32544653,
 'rx_bps': 39530143744.0,
 'rx_bps_L1': 40051066384.0,
 'rx_pps': 3255766.5,
 'rx_util': 100.12766596,
 'tx_bps': 39530938368.0,
 'tx_bps_L1': 40051876288.0,
 'tx_pps': 3255862.0,
 'tx_util': 100.12969072}
03/03/2021 17:26:45                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39530938368.000000, tx_pps: 3255862.000000 
03/03/2021 17:26:45                         pktgen: {'ibytes': 49402884960,
 'ierrors': 0,
 'ipackets': 32544723,
 'obytes': 49402777182,
 'oerrors': 0,
 'opackets': 32544653,
 'rx_bps': 39530143744.0,
 'rx_bps_L1': 40051066384.0,
 'rx_pps': 3255766.5,
 'rx_util': 100.12766596,
 'tx_bps': 39530938368.0,
 'tx_bps_L1': 40051876288.0,
 'tx_pps': 3255862.0,
 'tx_util': 100.12969072}
03/03/2021 17:26:45                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39530143744.000000, rx_pps: 3255766.500000
03/03/2021 17:26:45                         pktgen: throughput: pps_rx 3255766.500000, bps_rx 39530143744.000000
03/03/2021 17:26:45                         pktgen: traffic completed. 
03/03/2021 17:26:47 TestPVPMultiPathVhostPerformance: result of all framesize result
03/03/2021 17:26:47 TestPVPMultiPathVhostPerformance: 
+-------+---------------------+-------+------------+
| Frame |    Mode/RXD-TXD     | Mpps  | % linerate |
+=======+=====================+=======+============+
| 64    | inoder mergeable on | 9.503 | 15.964     |
+-------+---------------------+-------+------------+
| 128   | inoder mergeable on | 8.539 | 25.274     |
+-------+---------------------+-------+------------+
| 256   | inoder mergeable on | 7.849 | 43.328     |
+-------+---------------------+-------+------------+
| 512   | inoder mergeable on | 5.670 | 60.328     |
+-------+---------------------+-------+------------+
| 1024  | inoder mergeable on | 4.563 | 95.282     |
+-------+---------------------+-------+------------+
| 1518  | inoder mergeable on | 3.256 | 100.147    |
+-------+---------------------+-------+------------+
03/03/2021 17:26:47 TestPVPMultiPathVhostPerformance: 
+-------+--------------+------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps    | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+============+============+=====================+=======================+
| 64    | 1024         | 9.503 Mpps | 15.964%    | 10.097 Mpps         | -0.594 Mpps           |
+-------+--------------+------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.256 Mpps | 100.147%   | 3.240 Mpps          | 0.016 Mpps            |
+-------+--------------+------------+------------+---------------------+-----------------------+
03/03/2021 17:26:47 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.504850
03/03/2021 17:26:47 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.594000
03/03/2021 17:26:47 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162000
03/03/2021 17:26:47 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.016000
03/03/2021 17:26:47 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_inorder_mergeable Result FAILED: 'Exceeded Gap'
03/03/2021 17:26:47             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
03/03/2021 17:26:48 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_inorder_normal Begin
03/03/2021 17:26:48             dut.10.240.183.220: 
03/03/2021 17:26:48                         tester: 
03/03/2021 17:26:48             dut.10.240.183.220: rm -rf ./vhost.out
03/03/2021 17:26:49             dut.10.240.183.220: 
03/03/2021 17:26:49             dut.10.240.183.220: rm -rf ./vhost-net*
03/03/2021 17:26:49             dut.10.240.183.220: 
03/03/2021 17:26:49             dut.10.240.183.220: killall -s INT dpdk-testpmd 
03/03/2021 17:26:49             dut.10.240.183.220: dpdk-testpmd: no process found
03/03/2021 17:26:49             dut.10.240.183.220: killall -s INT qemu-system-x86_64
03/03/2021 17:26:49             dut.10.240.183.220: qemu-system-x86_64: no process found
03/03/2021 17:26:59             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
03/03/2021 17:27:00             dut.10.240.183.220: 1048576
03/03/2021 17:27:11 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
03/03/2021 17:27:11                         tester: ls -d /tmp
03/03/2021 17:27:11                         tester: /tmp
03/03/2021 17:27:11                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:27:13                         pktgen: test port 0 map gen port 0
03/03/2021 17:27:13                         pktgen: test port 0 map gen port 0
03/03/2021 17:27:13                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:27:13                         pktgen: trex port <0> not support flow control
03/03/2021 17:27:13                         pktgen: check the trex port link status
03/03/2021 17:27:13                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:27:13                         pktgen: begin traffic ......
03/03/2021 17:27:13                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:27:23                         pktgen: begin get port statistic ...
03/03/2021 17:27:23                         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}
03/03/2021 17:27:23                         pktgen: {0: {'ibytes': 6397571328,
     'ierrors': 0,
     'ipackets': 99962066,
     'obytes': 16148559168,
     'oerrors': 0,
     'opackets': 252321277,
     'rx_bps': 5098677760.0,
     'rx_bps_L1': 6692014080.0,
     'rx_pps': 9958352.0,
     'rx_util': 16.7300352,
     'tx_bps': 12669717504.0,
     'tx_bps_L1': 16629003583.999998,
     'tx_pps': 24745538.0,
     'tx_util': 41.57250895999999},
 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.7071012258529663,
            'cpu_util': 92.77216339111328,
            'cpu_util_raw': 99.4375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 138761652,
            'rx_bps': 5098677760.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 7571040256.0,
            'rx_pps': 9958352.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 12669717504.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 24745538.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 6397571328,
           'ierrors': 0,
           'ipackets': 99962066,
           'obytes': 16148559168,
           'oerrors': 0,
           'opackets': 252321277,
           'rx_bps': 5098677760.0,
           'rx_bps_L1': 6692014080.0,
           'rx_pps': 9958352.0,
           'rx_util': 16.7300352,
           'tx_bps': 12669717504.0,
           'tx_bps_L1': 16629003583.999998,
           'tx_pps': 24745538.0,
           'tx_util': 41.57250895999999}}
03/03/2021 17:27:23                         pktgen: {'ibytes': 6397571328,
 'ierrors': 0,
 'ipackets': 99962066,
 'obytes': 16148559168,
 'oerrors': 0,
 'opackets': 252321277,
 'rx_bps': 5098677760.0,
 'rx_bps_L1': 6692014080.0,
 'rx_pps': 9958352.0,
 'rx_util': 16.7300352,
 'tx_bps': 12669717504.0,
 'tx_bps_L1': 16629003583.999998,
 'tx_pps': 24745538.0,
 'tx_util': 41.57250895999999}
03/03/2021 17:27:23                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 12669717504.000000, tx_pps: 24745538.000000 
03/03/2021 17:27:23                         pktgen: {'ibytes': 6397571328,
 'ierrors': 0,
 'ipackets': 99962066,
 'obytes': 16148559168,
 'oerrors': 0,
 'opackets': 252321277,
 'rx_bps': 5098677760.0,
 'rx_bps_L1': 6692014080.0,
 'rx_pps': 9958352.0,
 'rx_util': 16.7300352,
 'tx_bps': 12669717504.0,
 'tx_bps_L1': 16629003583.999998,
 'tx_pps': 24745538.0,
 'tx_util': 41.57250895999999}
03/03/2021 17:27:23                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 5098677760.000000, rx_pps: 9958352.000000
03/03/2021 17:27:23                         pktgen: throughput: pps_rx 9958352.000000, bps_rx 5098677760.000000
03/03/2021 17:27:23                         pktgen: traffic completed. 
03/03/2021 17:27:23 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
03/03/2021 17:27:23                         tester: ls -d /tmp
03/03/2021 17:27:23                         tester: /tmp
03/03/2021 17:27:23                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:27:25                         pktgen: test port 0 map gen port 0
03/03/2021 17:27:25                         pktgen: test port 0 map gen port 0
03/03/2021 17:27:25                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:27:25                         pktgen: trex port <0> not support flow control
03/03/2021 17:27:25                         pktgen: check the trex port link status
03/03/2021 17:27:25                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:27:25                         pktgen: begin traffic ......
03/03/2021 17:27:25                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:27:35                         pktgen: begin get port statistic ...
03/03/2021 17:27:35                         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}
03/03/2021 17:27:35                         pktgen: {0: {'ibytes': 11478015744,
     'ierrors': 0,
     'ipackets': 89671998,
     'obytes': 26003430400,
     'oerrors': 0,
     'opackets': 203151825,
     'rx_bps': 9160126464.0,
     'rx_bps_L1': 10591615424.0,
     'rx_pps': 8946806.0,
     'rx_util': 26.47903856,
     'tx_bps': 20095051776.0,
     'tx_bps_L1': 23235445056.0,
     'tx_pps': 19627458.0,
     'tx_util': 58.08861264},
 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.615950107574463,
            'cpu_util': 96.02176666259766,
            'cpu_util_raw': 99.3125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 140567382,
            'rx_bps': 9160126464.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10934925312.0,
            'rx_pps': 8946806.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 20095051776.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 19627458.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 11478015744,
           'ierrors': 0,
           'ipackets': 89671998,
           'obytes': 26003430400,
           'oerrors': 0,
           'opackets': 203151825,
           'rx_bps': 9160126464.0,
           'rx_bps_L1': 10591615424.0,
           'rx_pps': 8946806.0,
           'rx_util': 26.47903856,
           'tx_bps': 20095051776.0,
           'tx_bps_L1': 23235445056.0,
           'tx_pps': 19627458.0,
           'tx_util': 58.08861264}}
03/03/2021 17:27:35                         pktgen: {'ibytes': 11478015744,
 'ierrors': 0,
 'ipackets': 89671998,
 'obytes': 26003430400,
 'oerrors': 0,
 'opackets': 203151825,
 'rx_bps': 9160126464.0,
 'rx_bps_L1': 10591615424.0,
 'rx_pps': 8946806.0,
 'rx_util': 26.47903856,
 'tx_bps': 20095051776.0,
 'tx_bps_L1': 23235445056.0,
 'tx_pps': 19627458.0,
 'tx_util': 58.08861264}
03/03/2021 17:27:35                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 20095051776.000000, tx_pps: 19627458.000000 
03/03/2021 17:27:35                         pktgen: {'ibytes': 11478015744,
 'ierrors': 0,
 'ipackets': 89671998,
 'obytes': 26003430400,
 'oerrors': 0,
 'opackets': 203151825,
 'rx_bps': 9160126464.0,
 'rx_bps_L1': 10591615424.0,
 'rx_pps': 8946806.0,
 'rx_util': 26.47903856,
 'tx_bps': 20095051776.0,
 'tx_bps_L1': 23235445056.0,
 'tx_pps': 19627458.0,
 'tx_util': 58.08861264}
03/03/2021 17:27:35                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 9160126464.000000, rx_pps: 8946806.000000
03/03/2021 17:27:35                         pktgen: throughput: pps_rx 8946806.000000, bps_rx 9160126464.000000
03/03/2021 17:27:35                         pktgen: traffic completed. 
03/03/2021 17:27:35 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
03/03/2021 17:27:35                         tester: ls -d /tmp
03/03/2021 17:27:36                         tester: /tmp
03/03/2021 17:27:36                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:27:38                         pktgen: test port 0 map gen port 0
03/03/2021 17:27:38                         pktgen: test port 0 map gen port 0
03/03/2021 17:27:38                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:27:38                         pktgen: trex port <0> not support flow control
03/03/2021 17:27:38                         pktgen: check the trex port link status
03/03/2021 17:27:38                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:27:38                         pktgen: begin traffic ......
03/03/2021 17:27:38                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:27:48                         pktgen: begin get port statistic ...
03/03/2021 17:27: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}
03/03/2021 17:27:48                         pktgen: {0: {'ibytes': 21050188800,
     'ierrors': 0,
     'ipackets': 82227300,
     'obytes': 45438511872,
     'oerrors': 0,
     'opackets': 177494205,
     'rx_bps': 16781052928.0,
     'rx_bps_L1': 18092259488.0,
     'rx_pps': 8195041.0,
     'rx_util': 45.23064872,
     'tx_bps': 35075735552.0,
     'tx_bps_L1': 37816437952.0,
     'tx_pps': 17129390.0,
     'tx_util': 94.54109488},
 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': 24.924909591674805,
            'cpu_util': 17.5907039642334,
            'cpu_util_raw': 20.1875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 11518244,
            'rx_bps': 16781052928.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 18294681600.0,
            'rx_pps': 8195041.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 35075735552.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 17129390.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 21050188800,
           'ierrors': 0,
           'ipackets': 82227300,
           'obytes': 45438511872,
           'oerrors': 0,
           'opackets': 177494205,
           'rx_bps': 16781052928.0,
           'rx_bps_L1': 18092259488.0,
           'rx_pps': 8195041.0,
           'rx_util': 45.23064872,
           'tx_bps': 35075735552.0,
           'tx_bps_L1': 37816437952.0,
           'tx_pps': 17129390.0,
           'tx_util': 94.54109488}}
03/03/2021 17:27:48                         pktgen: {'ibytes': 21050188800,
 'ierrors': 0,
 'ipackets': 82227300,
 'obytes': 45438511872,
 'oerrors': 0,
 'opackets': 177494205,
 'rx_bps': 16781052928.0,
 'rx_bps_L1': 18092259488.0,
 'rx_pps': 8195041.0,
 'rx_util': 45.23064872,
 'tx_bps': 35075735552.0,
 'tx_bps_L1': 37816437952.0,
 'tx_pps': 17129390.0,
 'tx_util': 94.54109488}
03/03/2021 17:27:48                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 35075735552.000000, tx_pps: 17129390.000000 
03/03/2021 17:27:48                         pktgen: {'ibytes': 21050188800,
 'ierrors': 0,
 'ipackets': 82227300,
 'obytes': 45438511872,
 'oerrors': 0,
 'opackets': 177494205,
 'rx_bps': 16781052928.0,
 'rx_bps_L1': 18092259488.0,
 'rx_pps': 8195041.0,
 'rx_util': 45.23064872,
 'tx_bps': 35075735552.0,
 'tx_bps_L1': 37816437952.0,
 'tx_pps': 17129390.0,
 'tx_util': 94.54109488}
03/03/2021 17:27:48                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 16781052928.000000, rx_pps: 8195041.000000
03/03/2021 17:27:48                         pktgen: throughput: pps_rx 8195041.000000, bps_rx 16781052928.000000
03/03/2021 17:27:48                         pktgen: traffic completed. 
03/03/2021 17:27:48 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
03/03/2021 17:27:48                         tester: ls -d /tmp
03/03/2021 17:27:48                         tester: /tmp
03/03/2021 17:27:48                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:27:50                         pktgen: test port 0 map gen port 0
03/03/2021 17:27:50                         pktgen: test port 0 map gen port 0
03/03/2021 17:27:50                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:27:50                         pktgen: trex port <0> not support flow control
03/03/2021 17:27:50                         pktgen: check the trex port link status
03/03/2021 17:27:50                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:27:50                         pktgen: begin traffic ......
03/03/2021 17:27:50                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:28:00                         pktgen: begin get port statistic ...
03/03/2021 17:28:00                         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}
03/03/2021 17:28:00                         pktgen: {0: {'ibytes': 29043294720,
     'ierrors': 0,
     'ipackets': 56725194,
     'obytes': 48173583360,
     'oerrors': 0,
     'opackets': 94089038,
     'rx_bps': 23142189056.0,
     'rx_bps_L1': 24046506336.0,
     'rx_pps': 5651983.0,
     'rx_util': 60.116265840000004,
     'tx_bps': 38428815360.0,
     'tx_bps_L1': 39930620320.0,
     'tx_pps': 9386281.0,
     'tx_util': 99.8265508},
 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.836026191711426,
            'cpu_util': 54.363826751708984,
            'cpu_util_raw': 54.5625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 80753960,
            'rx_bps': 23142189056.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 15286627328.0,
            'rx_pps': 5651983.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38428815360.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9386281.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 29043294720,
           'ierrors': 0,
           'ipackets': 56725194,
           'obytes': 48173583360,
           'oerrors': 0,
           'opackets': 94089038,
           'rx_bps': 23142189056.0,
           'rx_bps_L1': 24046506336.0,
           'rx_pps': 5651983.0,
           'rx_util': 60.116265840000004,
           'tx_bps': 38428815360.0,
           'tx_bps_L1': 39930620320.0,
           'tx_pps': 9386281.0,
           'tx_util': 99.8265508}}
03/03/2021 17:28:00                         pktgen: {'ibytes': 29043294720,
 'ierrors': 0,
 'ipackets': 56725194,
 'obytes': 48173583360,
 'oerrors': 0,
 'opackets': 94089038,
 'rx_bps': 23142189056.0,
 'rx_bps_L1': 24046506336.0,
 'rx_pps': 5651983.0,
 'rx_util': 60.116265840000004,
 'tx_bps': 38428815360.0,
 'tx_bps_L1': 39930620320.0,
 'tx_pps': 9386281.0,
 'tx_util': 99.8265508}
03/03/2021 17:28:00                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38428815360.000000, tx_pps: 9386281.000000 
03/03/2021 17:28:00                         pktgen: {'ibytes': 29043294720,
 'ierrors': 0,
 'ipackets': 56725194,
 'obytes': 48173583360,
 'oerrors': 0,
 'opackets': 94089038,
 'rx_bps': 23142189056.0,
 'rx_bps_L1': 24046506336.0,
 'rx_pps': 5651983.0,
 'rx_util': 60.116265840000004,
 'tx_bps': 38428815360.0,
 'tx_bps_L1': 39930620320.0,
 'tx_pps': 9386281.0,
 'tx_util': 99.8265508}
03/03/2021 17:28:00                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 23142189056.000000, rx_pps: 5651983.000000
03/03/2021 17:28:00                         pktgen: throughput: pps_rx 5651983.000000, bps_rx 23142189056.000000
03/03/2021 17:28:00                         pktgen: traffic completed. 
03/03/2021 17:28:00 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
03/03/2021 17:28:00                         tester: ls -d /tmp
03/03/2021 17:28:00                         tester: /tmp
03/03/2021 17:28:00                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:28:02                         pktgen: test port 0 map gen port 0
03/03/2021 17:28:02                         pktgen: test port 0 map gen port 0
03/03/2021 17:28: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:28:02                         pktgen: trex port <0> not support flow control
03/03/2021 17:28:02                         pktgen: check the trex port link status
03/03/2021 17:28: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:28:02                         pktgen: begin traffic ......
03/03/2021 17:28:02                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:28:12                         pktgen: begin get port statistic ...
03/03/2021 17:28:12                         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}
03/03/2021 17:28:12                         pktgen: {0: {'ibytes': 47306402816,
     'ierrors': 0,
     'ipackets': 46197664,
     'obytes': 49093274624,
     'oerrors': 0,
     'opackets': 47942655,
     'rx_bps': 37660975104.0,
     'rx_bps_L1': 38396759744.0,
     'rx_pps': 4598654.0,
     'rx_util': 95.99189936,
     'tx_bps': 39121702912.0,
     'tx_bps_L1': 39886161712.0,
     'tx_pps': 4777867.5,
     'tx_util': 99.71540428},
 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': 17.453824996948242,
            'cpu_util': 28.01799964904785,
            'cpu_util_raw': 28.9375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 35886461,
            'rx_bps': 37660975104.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4598654.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39121702912.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4777867.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 47306402816,
           'ierrors': 0,
           'ipackets': 46197664,
           'obytes': 49093274624,
           'oerrors': 0,
           'opackets': 47942655,
           'rx_bps': 37660975104.0,
           'rx_bps_L1': 38396759744.0,
           'rx_pps': 4598654.0,
           'rx_util': 95.99189936,
           'tx_bps': 39121702912.0,
           'tx_bps_L1': 39886161712.0,
           'tx_pps': 4777867.5,
           'tx_util': 99.71540428}}
03/03/2021 17:28:12                         pktgen: {'ibytes': 47306402816,
 'ierrors': 0,
 'ipackets': 46197664,
 'obytes': 49093274624,
 'oerrors': 0,
 'opackets': 47942655,
 'rx_bps': 37660975104.0,
 'rx_bps_L1': 38396759744.0,
 'rx_pps': 4598654.0,
 'rx_util': 95.99189936,
 'tx_bps': 39121702912.0,
 'tx_bps_L1': 39886161712.0,
 'tx_pps': 4777867.5,
 'tx_util': 99.71540428}
03/03/2021 17:28:12                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39121702912.000000, tx_pps: 4777867.500000 
03/03/2021 17:28:12                         pktgen: {'ibytes': 47306402816,
 'ierrors': 0,
 'ipackets': 46197664,
 'obytes': 49093274624,
 'oerrors': 0,
 'opackets': 47942655,
 'rx_bps': 37660975104.0,
 'rx_bps_L1': 38396759744.0,
 'rx_pps': 4598654.0,
 'rx_util': 95.99189936,
 'tx_bps': 39121702912.0,
 'tx_bps_L1': 39886161712.0,
 'tx_pps': 4777867.5,
 'tx_util': 99.71540428}
03/03/2021 17:28:12                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 37660975104.000000, rx_pps: 4598654.000000
03/03/2021 17:28:12                         pktgen: throughput: pps_rx 4598654.000000, bps_rx 37660975104.000000
03/03/2021 17:28:12                         pktgen: traffic completed. 
03/03/2021 17:28:12 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
03/03/2021 17:28:12                         tester: ls -d /tmp
03/03/2021 17:28:12                         tester: /tmp
03/03/2021 17:28:12                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:28:14                         pktgen: test port 0 map gen port 0
03/03/2021 17:28:14                         pktgen: test port 0 map gen port 0
03/03/2021 17:28: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:28:14                         pktgen: trex port <0> not support flow control
03/03/2021 17:28:14                         pktgen: check the trex port link status
03/03/2021 17:28: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:28:14                         pktgen: begin traffic ......
03/03/2021 17:28:14                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:28:24                         pktgen: begin get port statistic ...
03/03/2021 17:28: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}
03/03/2021 17:28:24                         pktgen: {0: {'ibytes': 49404783978,
     'ierrors': 0,
     'ipackets': 32545974,
     'obytes': 49404686826,
     'oerrors': 0,
     'opackets': 32545910,
     'rx_bps': 39536365568.0,
     'rx_bps_L1': 40057380408.0,
     'rx_pps': 3256342.75,
     'rx_util': 100.14345102,
     'tx_bps': 39537160192.0,
     'tx_bps_L1': 40058190112.0,
     'tx_pps': 3256437.0,
     'tx_util': 100.14547528},
 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.81413650512695,
            'cpu_util': 14.615617752075195,
            'cpu_util_raw': 14.875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17110224,
            'rx_bps': 39536365568.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3256342.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39537160192.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3256437.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49404783978,
           'ierrors': 0,
           'ipackets': 32545974,
           'obytes': 49404686826,
           'oerrors': 0,
           'opackets': 32545910,
           'rx_bps': 39536365568.0,
           'rx_bps_L1': 40057380408.0,
           'rx_pps': 3256342.75,
           'rx_util': 100.14345102,
           'tx_bps': 39537160192.0,
           'tx_bps_L1': 40058190112.0,
           'tx_pps': 3256437.0,
           'tx_util': 100.14547528}}
03/03/2021 17:28:24                         pktgen: {'ibytes': 49404783978,
 'ierrors': 0,
 'ipackets': 32545974,
 'obytes': 49404686826,
 'oerrors': 0,
 'opackets': 32545910,
 'rx_bps': 39536365568.0,
 'rx_bps_L1': 40057380408.0,
 'rx_pps': 3256342.75,
 'rx_util': 100.14345102,
 'tx_bps': 39537160192.0,
 'tx_bps_L1': 40058190112.0,
 'tx_pps': 3256437.0,
 'tx_util': 100.14547528}
03/03/2021 17:28:24                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39537160192.000000, tx_pps: 3256437.000000 
03/03/2021 17:28:24                         pktgen: {'ibytes': 49404783978,
 'ierrors': 0,
 'ipackets': 32545974,
 'obytes': 49404686826,
 'oerrors': 0,
 'opackets': 32545910,
 'rx_bps': 39536365568.0,
 'rx_bps_L1': 40057380408.0,
 'rx_pps': 3256342.75,
 'rx_util': 100.14345102,
 'tx_bps': 39537160192.0,
 'tx_bps_L1': 40058190112.0,
 'tx_pps': 3256437.0,
 'tx_util': 100.14547528}
03/03/2021 17:28:24                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39536365568.000000, rx_pps: 3256342.750000
03/03/2021 17:28:24                         pktgen: throughput: pps_rx 3256342.750000, bps_rx 39536365568.000000
03/03/2021 17:28:24                         pktgen: traffic completed. 
03/03/2021 17:28:26 TestPVPMultiPathVhostPerformance: result of all framesize result
03/03/2021 17:28:26 TestPVPMultiPathVhostPerformance: 
+-------+----------------------+-------+------------+
| Frame |     Mode/RXD-TXD     | Mpps  | % linerate |
+=======+======================+=======+============+
| 64    | inoder mergeable off | 9.958 | 16.730     |
+-------+----------------------+-------+------------+
| 128   | inoder mergeable off | 8.947 | 26.483     |
+-------+----------------------+-------+------------+
| 256   | inoder mergeable off | 8.195 | 45.237     |
+-------+----------------------+-------+------------+
| 512   | inoder mergeable off | 5.652 | 60.137     |
+-------+----------------------+-------+------------+
| 1024  | inoder mergeable off | 4.599 | 96.020     |
+-------+----------------------+-------+------------+
| 1518  | inoder mergeable off | 3.256 | 100.165    |
+-------+----------------------+-------+------------+
03/03/2021 17:28:26 TestPVPMultiPathVhostPerformance: 
+-------+--------------+------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps    | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+============+============+=====================+=======================+
| 64    | 1024         | 9.958 Mpps | 16.730%    | 10.127 Mpps         | -0.169 Mpps           |
+-------+--------------+------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.256 Mpps | 100.165%   | 3.243 Mpps          | 0.013 Mpps            |
+-------+--------------+------------+------------+---------------------+-----------------------+
03/03/2021 17:28:26 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.506350
03/03/2021 17:28:26 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.169000
03/03/2021 17:28:26 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162150
03/03/2021 17:28:26 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.013000
03/03/2021 17:28:26 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_inorder_normal Result PASSED:
03/03/2021 17:28:26             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
03/03/2021 17:28:27 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_mergeable Begin
03/03/2021 17:28:27             dut.10.240.183.220: 
03/03/2021 17:28:27                         tester: 
03/03/2021 17:28:27             dut.10.240.183.220: rm -rf ./vhost.out
03/03/2021 17:28:28             dut.10.240.183.220: 
03/03/2021 17:28:28             dut.10.240.183.220: rm -rf ./vhost-net*
03/03/2021 17:28:28             dut.10.240.183.220: 
03/03/2021 17:28:28             dut.10.240.183.220: killall -s INT dpdk-testpmd 
03/03/2021 17:28:28             dut.10.240.183.220: dpdk-testpmd: no process found
03/03/2021 17:28:28             dut.10.240.183.220: killall -s INT qemu-system-x86_64
03/03/2021 17:28:28             dut.10.240.183.220: qemu-system-x86_64: no process found
03/03/2021 17:28:38             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
03/03/2021 17:28:39             dut.10.240.183.220: 1048576
03/03/2021 17:28:50 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
03/03/2021 17:28:50                         tester: ls -d /tmp
03/03/2021 17:28:50                         tester: /tmp
03/03/2021 17:28:50                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:28:52                         pktgen: test port 0 map gen port 0
03/03/2021 17:28:52                         pktgen: test port 0 map gen port 0
03/03/2021 17:28:52                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:28:52                         pktgen: trex port <0> not support flow control
03/03/2021 17:28:52                         pktgen: check the trex port link status
03/03/2021 17:28:52                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:28:52                         pktgen: begin traffic ......
03/03/2021 17:28:52                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:29:02                         pktgen: begin get port statistic ...
03/03/2021 17:29:02                         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}
03/03/2021 17:29:02                         pktgen: {0: {'ibytes': 5799250176,
     'ierrors': 0,
     'ipackets': 90613296,
     'obytes': 17140086336,
     'oerrors': 0,
     'opackets': 267813874,
     'rx_bps': 4630112768.0,
     'rx_bps_L1': 6077024128.0,
     'rx_pps': 9043196.0,
     'rx_util': 15.19256032,
     'tx_bps': 13716249600.0,
     'tx_bps_L1': 18002577280.0,
     'tx_pps': 26789548.0,
     'tx_util': 45.0064432},
 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.8541797399520874,
            'cpu_util': 92.46844482421875,
            'cpu_util_raw': 99.3125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 137837150,
            'rx_bps': 4630112768.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9086136320.0,
            'rx_pps': 9043196.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13716249600.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26789548.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 5799250176,
           'ierrors': 0,
           'ipackets': 90613296,
           'obytes': 17140086336,
           'oerrors': 0,
           'opackets': 267813874,
           'rx_bps': 4630112768.0,
           'rx_bps_L1': 6077024128.0,
           'rx_pps': 9043196.0,
           'rx_util': 15.19256032,
           'tx_bps': 13716249600.0,
           'tx_bps_L1': 18002577280.0,
           'tx_pps': 26789548.0,
           'tx_util': 45.0064432}}
03/03/2021 17:29:02                         pktgen: {'ibytes': 5799250176,
 'ierrors': 0,
 'ipackets': 90613296,
 'obytes': 17140086336,
 'oerrors': 0,
 'opackets': 267813874,
 'rx_bps': 4630112768.0,
 'rx_bps_L1': 6077024128.0,
 'rx_pps': 9043196.0,
 'rx_util': 15.19256032,
 'tx_bps': 13716249600.0,
 'tx_bps_L1': 18002577280.0,
 'tx_pps': 26789548.0,
 'tx_util': 45.0064432}
03/03/2021 17:29:02                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13716249600.000000, tx_pps: 26789548.000000 
03/03/2021 17:29:02                         pktgen: {'ibytes': 5799250176,
 'ierrors': 0,
 'ipackets': 90613296,
 'obytes': 17140086336,
 'oerrors': 0,
 'opackets': 267813874,
 'rx_bps': 4630112768.0,
 'rx_bps_L1': 6077024128.0,
 'rx_pps': 9043196.0,
 'rx_util': 15.19256032,
 'tx_bps': 13716249600.0,
 'tx_bps_L1': 18002577280.0,
 'tx_pps': 26789548.0,
 'tx_util': 45.0064432}
03/03/2021 17:29:02                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4630112768.000000, rx_pps: 9043196.000000
03/03/2021 17:29:02                         pktgen: throughput: pps_rx 9043196.000000, bps_rx 4630112768.000000
03/03/2021 17:29:02                         pktgen: traffic completed. 
03/03/2021 17:29:02 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
03/03/2021 17:29:02                         tester: ls -d /tmp
03/03/2021 17:29:02                         tester: /tmp
03/03/2021 17:29:02                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:29:04                         pktgen: test port 0 map gen port 0
03/03/2021 17:29:04                         pktgen: test port 0 map gen port 0
03/03/2021 17:29: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:29:04                         pktgen: trex port <0> not support flow control
03/03/2021 17:29:04                         pktgen: check the trex port link status
03/03/2021 17:29: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:29:04                         pktgen: begin traffic ......
03/03/2021 17:29:04                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:29:14                         pktgen: begin get port statistic ...
03/03/2021 17:29: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}
03/03/2021 17:29:14                         pktgen: {0: {'ibytes': 10560603008,
     'ierrors': 0,
     'ipackets': 82504740,
     'obytes': 26914814464,
     'oerrors': 0,
     'opackets': 210272019,
     'rx_bps': 8449454080.0,
     'rx_bps_L1': 9769897440.0,
     'rx_pps': 8252771.0,
     'rx_util': 24.424743600000003,
     'tx_bps': 21041823744.0,
     'tx_bps_L1': 24330249344.0,
     'tx_pps': 20552660.0,
     'tx_util': 60.82562336},
 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.7443721294403076,
            'cpu_util': 95.84078979492188,
            'cpu_util_raw': 99.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 140347387,
            'rx_bps': 8449454080.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 12592369664.0,
            'rx_pps': 8252771.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 21041823744.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 20552660.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 10560603008,
           'ierrors': 0,
           'ipackets': 82504740,
           'obytes': 26914814464,
           'oerrors': 0,
           'opackets': 210272019,
           'rx_bps': 8449454080.0,
           'rx_bps_L1': 9769897440.0,
           'rx_pps': 8252771.0,
           'rx_util': 24.424743600000003,
           'tx_bps': 21041823744.0,
           'tx_bps_L1': 24330249344.0,
           'tx_pps': 20552660.0,
           'tx_util': 60.82562336}}
03/03/2021 17:29:14                         pktgen: {'ibytes': 10560603008,
 'ierrors': 0,
 'ipackets': 82504740,
 'obytes': 26914814464,
 'oerrors': 0,
 'opackets': 210272019,
 'rx_bps': 8449454080.0,
 'rx_bps_L1': 9769897440.0,
 'rx_pps': 8252771.0,
 'rx_util': 24.424743600000003,
 'tx_bps': 21041823744.0,
 'tx_bps_L1': 24330249344.0,
 'tx_pps': 20552660.0,
 'tx_util': 60.82562336}
03/03/2021 17:29:14                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 21041823744.000000, tx_pps: 20552660.000000 
03/03/2021 17:29:14                         pktgen: {'ibytes': 10560603008,
 'ierrors': 0,
 'ipackets': 82504740,
 'obytes': 26914814464,
 'oerrors': 0,
 'opackets': 210272019,
 'rx_bps': 8449454080.0,
 'rx_bps_L1': 9769897440.0,
 'rx_pps': 8252771.0,
 'rx_util': 24.424743600000003,
 'tx_bps': 21041823744.0,
 'tx_bps_L1': 24330249344.0,
 'tx_pps': 20552660.0,
 'tx_util': 60.82562336}
03/03/2021 17:29:14                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 8449454080.000000, rx_pps: 8252771.000000
03/03/2021 17:29:14                         pktgen: throughput: pps_rx 8252771.000000, bps_rx 8449454080.000000
03/03/2021 17:29:14                         pktgen: traffic completed. 
03/03/2021 17:29:14 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
03/03/2021 17:29:14                         tester: ls -d /tmp
03/03/2021 17:29:15                         tester: /tmp
03/03/2021 17:29:15                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:29:17                         pktgen: test port 0 map gen port 0
03/03/2021 17:29:17                         pktgen: test port 0 map gen port 0
03/03/2021 17:29: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:29:17                         pktgen: trex port <0> not support flow control
03/03/2021 17:29:17                         pktgen: check the trex port link status
03/03/2021 17:29: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:29:17                         pktgen: begin traffic ......
03/03/2021 17:29:17                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:29:27                         pktgen: begin get port statistic ...
03/03/2021 17:29: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}
03/03/2021 17:29:27                         pktgen: {0: {'ibytes': 19431819008,
     'ierrors': 0,
     'ipackets': 75905559,
     'obytes': 40442530816,
     'oerrors': 0,
     'opackets': 157978651,
     'rx_bps': 15487234048.0,
     'rx_bps_L1': 16697364608.0,
     'rx_pps': 7563316.0,
     'rx_util': 41.74341152,
     'tx_bps': 31613118464.0,
     'tx_bps_L1': 34083365504.0,
     'tx_pps': 15439044.0,
     'tx_util': 85.20841376},
 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': 9.282766342163086,
            'cpu_util': 42.56963348388672,
            'cpu_util_raw': 37.6875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 63120214,
            'rx_bps': 15487234048.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 16125884416.0,
            'rx_pps': 7563316.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 31613118464.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 15439044.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 19431819008,
           'ierrors': 0,
           'ipackets': 75905559,
           'obytes': 40442530816,
           'oerrors': 0,
           'opackets': 157978651,
           'rx_bps': 15487234048.0,
           'rx_bps_L1': 16697364608.0,
           'rx_pps': 7563316.0,
           'rx_util': 41.74341152,
           'tx_bps': 31613118464.0,
           'tx_bps_L1': 34083365504.0,
           'tx_pps': 15439044.0,
           'tx_util': 85.20841376}}
03/03/2021 17:29:27                         pktgen: {'ibytes': 19431819008,
 'ierrors': 0,
 'ipackets': 75905559,
 'obytes': 40442530816,
 'oerrors': 0,
 'opackets': 157978651,
 'rx_bps': 15487234048.0,
 'rx_bps_L1': 16697364608.0,
 'rx_pps': 7563316.0,
 'rx_util': 41.74341152,
 'tx_bps': 31613118464.0,
 'tx_bps_L1': 34083365504.0,
 'tx_pps': 15439044.0,
 'tx_util': 85.20841376}
03/03/2021 17:29:27                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 31613118464.000000, tx_pps: 15439044.000000 
03/03/2021 17:29:27                         pktgen: {'ibytes': 19431819008,
 'ierrors': 0,
 'ipackets': 75905559,
 'obytes': 40442530816,
 'oerrors': 0,
 'opackets': 157978651,
 'rx_bps': 15487234048.0,
 'rx_bps_L1': 16697364608.0,
 'rx_pps': 7563316.0,
 'rx_util': 41.74341152,
 'tx_bps': 31613118464.0,
 'tx_bps_L1': 34083365504.0,
 'tx_pps': 15439044.0,
 'tx_util': 85.20841376}
03/03/2021 17:29:27                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 15487234048.000000, rx_pps: 7563316.000000
03/03/2021 17:29:27                         pktgen: throughput: pps_rx 7563316.000000, bps_rx 15487234048.000000
03/03/2021 17:29:27                         pktgen: traffic completed. 
03/03/2021 17:29:27 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
03/03/2021 17:29:27                         tester: ls -d /tmp
03/03/2021 17:29:27                         tester: /tmp
03/03/2021 17:29:27                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:29:29                         pktgen: test port 0 map gen port 0
03/03/2021 17:29:29                         pktgen: test port 0 map gen port 0
03/03/2021 17:29:29                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:29:29                         pktgen: trex port <0> not support flow control
03/03/2021 17:29:29                         pktgen: check the trex port link status
03/03/2021 17:29:29                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:29:29                         pktgen: begin traffic ......
03/03/2021 17:29:29                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:29:39                         pktgen: begin get port statistic ...
03/03/2021 17:29:39                         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}
03/03/2021 17:29:39                         pktgen: {0: {'ibytes': 28605624320,
     'ierrors': 0,
     'ipackets': 55870362,
     'obytes': 48170220032,
     'oerrors': 0,
     'opackets': 94082473,
     'rx_bps': 22857531392.0,
     'rx_bps_L1': 23750571792.0,
     'rx_pps': 5581502.5,
     'rx_util': 59.376429480000006,
     'tx_bps': 38459592704.0,
     'tx_bps_L1': 39962261504.00001,
     'tx_pps': 9391680.0,
     'tx_util': 99.90565376000002},
 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.30920124053955,
            'cpu_util': 57.85693359375,
            'cpu_util_raw': 61.0625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 82074288,
            'rx_bps': 22857531392.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 15602062336.0,
            'rx_pps': 5581502.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38459592704.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9391680.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 28605624320,
           'ierrors': 0,
           'ipackets': 55870362,
           'obytes': 48170220032,
           'oerrors': 0,
           'opackets': 94082473,
           'rx_bps': 22857531392.0,
           'rx_bps_L1': 23750571792.0,
           'rx_pps': 5581502.5,
           'rx_util': 59.376429480000006,
           'tx_bps': 38459592704.0,
           'tx_bps_L1': 39962261504.00001,
           'tx_pps': 9391680.0,
           'tx_util': 99.90565376000002}}
03/03/2021 17:29:39                         pktgen: {'ibytes': 28605624320,
 'ierrors': 0,
 'ipackets': 55870362,
 'obytes': 48170220032,
 'oerrors': 0,
 'opackets': 94082473,
 'rx_bps': 22857531392.0,
 'rx_bps_L1': 23750571792.0,
 'rx_pps': 5581502.5,
 'rx_util': 59.376429480000006,
 'tx_bps': 38459592704.0,
 'tx_bps_L1': 39962261504.00001,
 'tx_pps': 9391680.0,
 'tx_util': 99.90565376000002}
03/03/2021 17:29:39                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38459592704.000000, tx_pps: 9391680.000000 
03/03/2021 17:29:39                         pktgen: {'ibytes': 28605624320,
 'ierrors': 0,
 'ipackets': 55870362,
 'obytes': 48170220032,
 'oerrors': 0,
 'opackets': 94082473,
 'rx_bps': 22857531392.0,
 'rx_bps_L1': 23750571792.0,
 'rx_pps': 5581502.5,
 'rx_util': 59.376429480000006,
 'tx_bps': 38459592704.0,
 'tx_bps_L1': 39962261504.00001,
 'tx_pps': 9391680.0,
 'tx_util': 99.90565376000002}
03/03/2021 17:29:39                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 22857531392.000000, rx_pps: 5581502.500000
03/03/2021 17:29:39                         pktgen: throughput: pps_rx 5581502.500000, bps_rx 22857531392.000000
03/03/2021 17:29:39                         pktgen: traffic completed. 
03/03/2021 17:29:39 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
03/03/2021 17:29:39                         tester: ls -d /tmp
03/03/2021 17:29:39                         tester: /tmp
03/03/2021 17:29:39                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:29:41                         pktgen: test port 0 map gen port 0
03/03/2021 17:29:41                         pktgen: test port 0 map gen port 0
03/03/2021 17:29:41                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:29:41                         pktgen: trex port <0> not support flow control
03/03/2021 17:29:41                         pktgen: check the trex port link status
03/03/2021 17:29:41                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:29:41                         pktgen: begin traffic ......
03/03/2021 17:29:41                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:29:51                         pktgen: begin get port statistic ...
03/03/2021 17:29:51                         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}
03/03/2021 17:29:51                         pktgen: {0: {'ibytes': 46603200512,
     'ierrors': 0,
     'ipackets': 45510943,
     'obytes': 49094484992,
     'oerrors': 0,
     'opackets': 47943837,
     'rx_bps': 37299654656.0,
     'rx_bps_L1': 38028281296.0,
     'rx_pps': 4553916.5,
     'rx_util': 95.07070324,
     'tx_bps': 39319334912.0,
     'tx_bps_L1': 40087488512.0,
     'tx_pps': 4800960.0,
     'tx_util': 100.21872128},
 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': 17.47247886657715,
            'cpu_util': 28.12947654724121,
            'cpu_util_raw': 28.125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 35817471,
            'rx_bps': 37299654656.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4553916.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39319334912.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4800960.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 46603200512,
           'ierrors': 0,
           'ipackets': 45510943,
           'obytes': 49094484992,
           'oerrors': 0,
           'opackets': 47943837,
           'rx_bps': 37299654656.0,
           'rx_bps_L1': 38028281296.0,
           'rx_pps': 4553916.5,
           'rx_util': 95.07070324,
           'tx_bps': 39319334912.0,
           'tx_bps_L1': 40087488512.0,
           'tx_pps': 4800960.0,
           'tx_util': 100.21872128}}
03/03/2021 17:29:51                         pktgen: {'ibytes': 46603200512,
 'ierrors': 0,
 'ipackets': 45510943,
 'obytes': 49094484992,
 'oerrors': 0,
 'opackets': 47943837,
 'rx_bps': 37299654656.0,
 'rx_bps_L1': 38028281296.0,
 'rx_pps': 4553916.5,
 'rx_util': 95.07070324,
 'tx_bps': 39319334912.0,
 'tx_bps_L1': 40087488512.0,
 'tx_pps': 4800960.0,
 'tx_util': 100.21872128}
03/03/2021 17:29:51                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39319334912.000000, tx_pps: 4800960.000000 
03/03/2021 17:29:51                         pktgen: {'ibytes': 46603200512,
 'ierrors': 0,
 'ipackets': 45510943,
 'obytes': 49094484992,
 'oerrors': 0,
 'opackets': 47943837,
 'rx_bps': 37299654656.0,
 'rx_bps_L1': 38028281296.0,
 'rx_pps': 4553916.5,
 'rx_util': 95.07070324,
 'tx_bps': 39319334912.0,
 'tx_bps_L1': 40087488512.0,
 'tx_pps': 4800960.0,
 'tx_util': 100.21872128}
03/03/2021 17:29:51                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 37299654656.000000, rx_pps: 4553916.500000
03/03/2021 17:29:51                         pktgen: throughput: pps_rx 4553916.500000, bps_rx 37299654656.000000
03/03/2021 17:29:51                         pktgen: traffic completed. 
03/03/2021 17:29:51 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
03/03/2021 17:29:51                         tester: ls -d /tmp
03/03/2021 17:29:51                         tester: /tmp
03/03/2021 17:29:51                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:29:53                         pktgen: test port 0 map gen port 0
03/03/2021 17:29:53                         pktgen: test port 0 map gen port 0
03/03/2021 17:29:53                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:29:53                         pktgen: trex port <0> not support flow control
03/03/2021 17:29:53                         pktgen: check the trex port link status
03/03/2021 17:29:53                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:29:53                         pktgen: begin traffic ......
03/03/2021 17:29:53                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:30:03                         pktgen: begin get port statistic ...
03/03/2021 17:30:03                         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}
03/03/2021 17:30:03                         pktgen: {0: {'ibytes': 49401687258,
     'ierrors': 0,
     'ipackets': 32543934,
     'obytes': 49401574926,
     'oerrors': 0,
     'opackets': 32543860,
     'rx_bps': 39462551552.0,
     'rx_bps_L1': 39982540671.99999,
     'rx_pps': 3249932.0,
     'rx_util': 99.95635167999998,
     'tx_bps': 39463063552.0,
     'tx_bps_L1': 39983062552.0,
     'tx_pps': 3249993.75,
     'tx_util': 99.95765638},
 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.57571792602539,
            'cpu_util': 14.691817283630371,
            'cpu_util_raw': 15.0625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17152568,
            'rx_bps': 39462551552.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3249932.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39463063552.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3249993.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49401687258,
           'ierrors': 0,
           'ipackets': 32543934,
           'obytes': 49401574926,
           'oerrors': 0,
           'opackets': 32543860,
           'rx_bps': 39462551552.0,
           'rx_bps_L1': 39982540671.99999,
           'rx_pps': 3249932.0,
           'rx_util': 99.95635167999998,
           'tx_bps': 39463063552.0,
           'tx_bps_L1': 39983062552.0,
           'tx_pps': 3249993.75,
           'tx_util': 99.95765638}}
03/03/2021 17:30:03                         pktgen: {'ibytes': 49401687258,
 'ierrors': 0,
 'ipackets': 32543934,
 'obytes': 49401574926,
 'oerrors': 0,
 'opackets': 32543860,
 'rx_bps': 39462551552.0,
 'rx_bps_L1': 39982540671.99999,
 'rx_pps': 3249932.0,
 'rx_util': 99.95635167999998,
 'tx_bps': 39463063552.0,
 'tx_bps_L1': 39983062552.0,
 'tx_pps': 3249993.75,
 'tx_util': 99.95765638}
03/03/2021 17:30:03                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39463063552.000000, tx_pps: 3249993.750000 
03/03/2021 17:30:03                         pktgen: {'ibytes': 49401687258,
 'ierrors': 0,
 'ipackets': 32543934,
 'obytes': 49401574926,
 'oerrors': 0,
 'opackets': 32543860,
 'rx_bps': 39462551552.0,
 'rx_bps_L1': 39982540671.99999,
 'rx_pps': 3249932.0,
 'rx_util': 99.95635167999998,
 'tx_bps': 39463063552.0,
 'tx_bps_L1': 39983062552.0,
 'tx_pps': 3249993.75,
 'tx_util': 99.95765638}
03/03/2021 17:30:03                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39462551552.000000, rx_pps: 3249932.000000
03/03/2021 17:30:03                         pktgen: throughput: pps_rx 3249932.000000, bps_rx 39462551552.000000
03/03/2021 17:30:03                         pktgen: traffic completed. 
03/03/2021 17:30:05 TestPVPMultiPathVhostPerformance: result of all framesize result
03/03/2021 17:30:05 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------+------------+
| Frame | Mode/RXD-TXD | Mpps  | % linerate |
+=======+==============+=======+============+
| 64    | mergeable on | 9.043 | 15.193     |
+-------+--------------+-------+------------+
| 128   | mergeable on | 8.253 | 24.428     |
+-------+--------------+-------+------------+
| 256   | mergeable on | 7.563 | 41.750     |
+-------+--------------+-------+------------+
| 512   | mergeable on | 5.582 | 59.387     |
+-------+--------------+-------+------------+
| 1024  | mergeable on | 4.554 | 95.086     |
+-------+--------------+-------+------------+
| 1518  | mergeable on | 3.250 | 99.968     |
+-------+--------------+-------+------------+
03/03/2021 17:30:05 TestPVPMultiPathVhostPerformance: 
+-------+--------------+------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps    | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+============+============+=====================+=======================+
| 64    | 1024         | 9.043 Mpps | 15.193%    | 9.866 Mpps          | -0.823 Mpps           |
+-------+--------------+------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.250 Mpps | 99.968%    | 3.241 Mpps          | 0.009 Mpps            |
+-------+--------------+------------+------------+---------------------+-----------------------+
03/03/2021 17:30:05 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.493300
03/03/2021 17:30:05 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.823000
03/03/2021 17:30:05 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162050
03/03/2021 17:30:05 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.009000
03/03/2021 17:30:05 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_mergeable Result FAILED: 'Exceeded Gap'
03/03/2021 17:30:05             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
03/03/2021 17:30:06 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_normal Begin
03/03/2021 17:30:06             dut.10.240.183.220: 
03/03/2021 17:30:06                         tester: 
03/03/2021 17:30:06             dut.10.240.183.220: rm -rf ./vhost.out
03/03/2021 17:30:06             dut.10.240.183.220: 
03/03/2021 17:30:06             dut.10.240.183.220: rm -rf ./vhost-net*
03/03/2021 17:30:07             dut.10.240.183.220: 
03/03/2021 17:30:07             dut.10.240.183.220: killall -s INT dpdk-testpmd 
03/03/2021 17:30:07             dut.10.240.183.220: dpdk-testpmd: no process found
03/03/2021 17:30:07             dut.10.240.183.220: killall -s INT qemu-system-x86_64
03/03/2021 17:30:07             dut.10.240.183.220: qemu-system-x86_64: no process found
03/03/2021 17:30:17             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
03/03/2021 17:30:17             dut.10.240.183.220: 1048576
03/03/2021 17:30:29 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
03/03/2021 17:30:29                         tester: ls -d /tmp
03/03/2021 17:30:29                         tester: /tmp
03/03/2021 17:30:29                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:30:31                         pktgen: test port 0 map gen port 0
03/03/2021 17:30:31                         pktgen: test port 0 map gen port 0
03/03/2021 17:30:31                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:30:31                         pktgen: trex port <0> not support flow control
03/03/2021 17:30:31                         pktgen: check the trex port link status
03/03/2021 17:30:31                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:30:31                         pktgen: begin traffic ......
03/03/2021 17:30:31                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:30:41                         pktgen: begin get port statistic ...
03/03/2021 17:30:41                         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}
03/03/2021 17:30:41                         pktgen: {0: {'ibytes': 6261621504,
     'ierrors': 0,
     'ipackets': 97837864,
     'obytes': 17095468352,
     'oerrors': 0,
     'opackets': 267116718,
     'rx_bps': 4995072512.0,
     'rx_bps_L1': 6556032352.0,
     'rx_pps': 9755999.0,
     'rx_util': 16.39008088,
     'tx_bps': 13647752192.0,
     'tx_bps_L1': 17912675072.0,
     'tx_pps': 26655768.0,
     'tx_util': 44.78168768},
 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.8480781316757202,
            'cpu_util': 92.31044006347656,
            'cpu_util_raw': 99.3125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 138044718,
            'rx_bps': 4995072512.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8652680192.0,
            'rx_pps': 9755999.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13647752192.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26655768.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 6261621504,
           'ierrors': 0,
           'ipackets': 97837864,
           'obytes': 17095468352,
           'oerrors': 0,
           'opackets': 267116718,
           'rx_bps': 4995072512.0,
           'rx_bps_L1': 6556032352.0,
           'rx_pps': 9755999.0,
           'rx_util': 16.39008088,
           'tx_bps': 13647752192.0,
           'tx_bps_L1': 17912675072.0,
           'tx_pps': 26655768.0,
           'tx_util': 44.78168768}}
03/03/2021 17:30:41                         pktgen: {'ibytes': 6261621504,
 'ierrors': 0,
 'ipackets': 97837864,
 'obytes': 17095468352,
 'oerrors': 0,
 'opackets': 267116718,
 'rx_bps': 4995072512.0,
 'rx_bps_L1': 6556032352.0,
 'rx_pps': 9755999.0,
 'rx_util': 16.39008088,
 'tx_bps': 13647752192.0,
 'tx_bps_L1': 17912675072.0,
 'tx_pps': 26655768.0,
 'tx_util': 44.78168768}
03/03/2021 17:30:41                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13647752192.000000, tx_pps: 26655768.000000 
03/03/2021 17:30:41                         pktgen: {'ibytes': 6261621504,
 'ierrors': 0,
 'ipackets': 97837864,
 'obytes': 17095468352,
 'oerrors': 0,
 'opackets': 267116718,
 'rx_bps': 4995072512.0,
 'rx_bps_L1': 6556032352.0,
 'rx_pps': 9755999.0,
 'rx_util': 16.39008088,
 'tx_bps': 13647752192.0,
 'tx_bps_L1': 17912675072.0,
 'tx_pps': 26655768.0,
 'tx_util': 44.78168768}
03/03/2021 17:30:41                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4995072512.000000, rx_pps: 9755999.000000
03/03/2021 17:30:41                         pktgen: throughput: pps_rx 9755999.000000, bps_rx 4995072512.000000
03/03/2021 17:30:41                         pktgen: traffic completed. 
03/03/2021 17:30:41 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
03/03/2021 17:30:41                         tester: ls -d /tmp
03/03/2021 17:30:41                         tester: /tmp
03/03/2021 17:30:41                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:30:43                         pktgen: test port 0 map gen port 0
03/03/2021 17:30:43                         pktgen: test port 0 map gen port 0
03/03/2021 17:30:43                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:30:43                         pktgen: trex port <0> not support flow control
03/03/2021 17:30:43                         pktgen: check the trex port link status
03/03/2021 17:30:43                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:30:43                         pktgen: begin traffic ......
03/03/2021 17:30:43                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:30:53                         pktgen: begin get port statistic ...
03/03/2021 17:30:53                         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}
03/03/2021 17:30:53                         pktgen: {0: {'ibytes': 11415541504,
     'ierrors': 0,
     'ipackets': 89183918,
     'obytes': 28214267904,
     'oerrors': 0,
     'opackets': 220423994,
     'rx_bps': 9096865792.0,
     'rx_bps_L1': 10518504512.0,
     'rx_pps': 8885242.0,
     'rx_util': 26.29626128,
     'tx_bps': 22486355968.0,
     'tx_bps_L1': 26000537728.0,
     'tx_pps': 21963636.0,
     'tx_util': 65.00134432},
 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.922941207885742,
            'cpu_util': 96.16322326660156,
            'cpu_util_raw': 99.4375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 140206805,
            'rx_bps': 9096865792.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 13389489152.0,
            'rx_pps': 8885242.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 22486355968.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21963636.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 11415541504,
           'ierrors': 0,
           'ipackets': 89183918,
           'obytes': 28214267904,
           'oerrors': 0,
           'opackets': 220423994,
           'rx_bps': 9096865792.0,
           'rx_bps_L1': 10518504512.0,
           'rx_pps': 8885242.0,
           'rx_util': 26.29626128,
           'tx_bps': 22486355968.0,
           'tx_bps_L1': 26000537728.0,
           'tx_pps': 21963636.0,
           'tx_util': 65.00134432}}
03/03/2021 17:30:53                         pktgen: {'ibytes': 11415541504,
 'ierrors': 0,
 'ipackets': 89183918,
 'obytes': 28214267904,
 'oerrors': 0,
 'opackets': 220423994,
 'rx_bps': 9096865792.0,
 'rx_bps_L1': 10518504512.0,
 'rx_pps': 8885242.0,
 'rx_util': 26.29626128,
 'tx_bps': 22486355968.0,
 'tx_bps_L1': 26000537728.0,
 'tx_pps': 21963636.0,
 'tx_util': 65.00134432}
03/03/2021 17:30:53                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 22486355968.000000, tx_pps: 21963636.000000 
03/03/2021 17:30:53                         pktgen: {'ibytes': 11415541504,
 'ierrors': 0,
 'ipackets': 89183918,
 'obytes': 28214267904,
 'oerrors': 0,
 'opackets': 220423994,
 'rx_bps': 9096865792.0,
 'rx_bps_L1': 10518504512.0,
 'rx_pps': 8885242.0,
 'rx_util': 26.29626128,
 'tx_bps': 22486355968.0,
 'tx_bps_L1': 26000537728.0,
 'tx_pps': 21963636.0,
 'tx_util': 65.00134432}
03/03/2021 17:30:53                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 9096865792.000000, rx_pps: 8885242.000000
03/03/2021 17:30:53                         pktgen: throughput: pps_rx 8885242.000000, bps_rx 9096865792.000000
03/03/2021 17:30:53                         pktgen: traffic completed. 
03/03/2021 17:30:53 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
03/03/2021 17:30:53                         tester: ls -d /tmp
03/03/2021 17:30:53                         tester: /tmp
03/03/2021 17:30:53                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:30:55                         pktgen: test port 0 map gen port 0
03/03/2021 17:30:55                         pktgen: test port 0 map gen port 0
03/03/2021 17:30: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:30:55                         pktgen: trex port <0> not support flow control
03/03/2021 17:30:55                         pktgen: check the trex port link status
03/03/2021 17:30: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:30:55                         pktgen: begin traffic ......
03/03/2021 17:30:55                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:31:06                         pktgen: begin get port statistic ...
03/03/2021 17:31:06                         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}
03/03/2021 17:31:06                         pktgen: {0: {'ibytes': 20911852032,
     'ierrors': 0,
     'ipackets': 81686941,
     'obytes': 46423407616,
     'oerrors': 0,
     'opackets': 181341451,
     'rx_bps': 16677656576.0,
     'rx_bps_L1': 17980822816.0,
     'rx_pps': 8144789.0,
     'rx_util': 44.95205704,
     'tx_bps': 37022797824.0,
     'tx_bps_L1': 39915755904.0,
     'tx_pps': 18080988.0,
     'tx_util': 99.78938976},
 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.301822662353516,
            'cpu_util': 8.848352432250977,
            'cpu_util_raw': 5.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 1691051,
            'rx_bps': 16677656576.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 20345141248.0,
            'rx_pps': 8144789.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37022797824.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18080988.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 20911852032,
           'ierrors': 0,
           'ipackets': 81686941,
           'obytes': 46423407616,
           'oerrors': 0,
           'opackets': 181341451,
           'rx_bps': 16677656576.0,
           'rx_bps_L1': 17980822816.0,
           'rx_pps': 8144789.0,
           'rx_util': 44.95205704,
           'tx_bps': 37022797824.0,
           'tx_bps_L1': 39915755904.0,
           'tx_pps': 18080988.0,
           'tx_util': 99.78938976}}
03/03/2021 17:31:06                         pktgen: {'ibytes': 20911852032,
 'ierrors': 0,
 'ipackets': 81686941,
 'obytes': 46423407616,
 'oerrors': 0,
 'opackets': 181341451,
 'rx_bps': 16677656576.0,
 'rx_bps_L1': 17980822816.0,
 'rx_pps': 8144789.0,
 'rx_util': 44.95205704,
 'tx_bps': 37022797824.0,
 'tx_bps_L1': 39915755904.0,
 'tx_pps': 18080988.0,
 'tx_util': 99.78938976}
03/03/2021 17:31:06                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37022797824.000000, tx_pps: 18080988.000000 
03/03/2021 17:31:06                         pktgen: {'ibytes': 20911852032,
 'ierrors': 0,
 'ipackets': 81686941,
 'obytes': 46423407616,
 'oerrors': 0,
 'opackets': 181341451,
 'rx_bps': 16677656576.0,
 'rx_bps_L1': 17980822816.0,
 'rx_pps': 8144789.0,
 'rx_util': 44.95205704,
 'tx_bps': 37022797824.0,
 'tx_bps_L1': 39915755904.0,
 'tx_pps': 18080988.0,
 'tx_util': 99.78938976}
03/03/2021 17:31:06                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 16677656576.000000, rx_pps: 8144789.000000
03/03/2021 17:31:06                         pktgen: throughput: pps_rx 8144789.000000, bps_rx 16677656576.000000
03/03/2021 17:31:06                         pktgen: traffic completed. 
03/03/2021 17:31:06 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
03/03/2021 17:31:06                         tester: ls -d /tmp
03/03/2021 17:31:06                         tester: /tmp
03/03/2021 17:31:06                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:31:08                         pktgen: test port 0 map gen port 0
03/03/2021 17:31:08                         pktgen: test port 0 map gen port 0
03/03/2021 17:31:08                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:31:08                         pktgen: trex port <0> not support flow control
03/03/2021 17:31:08                         pktgen: check the trex port link status
03/03/2021 17:31:08                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:31:08                         pktgen: begin traffic ......
03/03/2021 17:31:08                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:31:18                         pktgen: begin get port statistic ...
03/03/2021 17:31:18                         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}
03/03/2021 17:31:18                         pktgen: {0: {'ibytes': 29140080640,
     'ierrors': 0,
     'ipackets': 56914220,
     'obytes': 48169736704,
     'oerrors': 0,
     'opackets': 94081525,
     'rx_bps': 23342092288.0,
     'rx_bps_L1': 24254087648.0,
     'rx_pps': 5699971.0,
     'rx_util': 60.635219119999995,
     'tx_bps': 38573428736.0,
     'tx_bps_L1': 40080636416.0,
     'tx_pps': 9420048.0,
     'tx_util': 100.20159104},
 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.816244125366211,
            'cpu_util': 54.69084548950195,
            'cpu_util_raw': 55.875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 80955695,
            'rx_bps': 23342092288.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 15231337472.0,
            'rx_pps': 5699971.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38573428736.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9420048.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 29140080640,
           'ierrors': 0,
           'ipackets': 56914220,
           'obytes': 48169736704,
           'oerrors': 0,
           'opackets': 94081525,
           'rx_bps': 23342092288.0,
           'rx_bps_L1': 24254087648.0,
           'rx_pps': 5699971.0,
           'rx_util': 60.635219119999995,
           'tx_bps': 38573428736.0,
           'tx_bps_L1': 40080636416.0,
           'tx_pps': 9420048.0,
           'tx_util': 100.20159104}}
03/03/2021 17:31:18                         pktgen: {'ibytes': 29140080640,
 'ierrors': 0,
 'ipackets': 56914220,
 'obytes': 48169736704,
 'oerrors': 0,
 'opackets': 94081525,
 'rx_bps': 23342092288.0,
 'rx_bps_L1': 24254087648.0,
 'rx_pps': 5699971.0,
 'rx_util': 60.635219119999995,
 'tx_bps': 38573428736.0,
 'tx_bps_L1': 40080636416.0,
 'tx_pps': 9420048.0,
 'tx_util': 100.20159104}
03/03/2021 17:31:18                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38573428736.000000, tx_pps: 9420048.000000 
03/03/2021 17:31:18                         pktgen: {'ibytes': 29140080640,
 'ierrors': 0,
 'ipackets': 56914220,
 'obytes': 48169736704,
 'oerrors': 0,
 'opackets': 94081525,
 'rx_bps': 23342092288.0,
 'rx_bps_L1': 24254087648.0,
 'rx_pps': 5699971.0,
 'rx_util': 60.635219119999995,
 'tx_bps': 38573428736.0,
 'tx_bps_L1': 40080636416.0,
 'tx_pps': 9420048.0,
 'tx_util': 100.20159104}
03/03/2021 17:31:18                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 23342092288.000000, rx_pps: 5699971.000000
03/03/2021 17:31:18                         pktgen: throughput: pps_rx 5699971.000000, bps_rx 23342092288.000000
03/03/2021 17:31:18                         pktgen: traffic completed. 
03/03/2021 17:31:18 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
03/03/2021 17:31:18                         tester: ls -d /tmp
03/03/2021 17:31:18                         tester: /tmp
03/03/2021 17:31:18                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:31:20                         pktgen: test port 0 map gen port 0
03/03/2021 17:31:20                         pktgen: test port 0 map gen port 0
03/03/2021 17:31: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:31:20                         pktgen: trex port <0> not support flow control
03/03/2021 17:31:20                         pktgen: check the trex port link status
03/03/2021 17:31: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:31:20                         pktgen: begin traffic ......
03/03/2021 17:31:20                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:31:30                         pktgen: begin get port statistic ...
03/03/2021 17:31: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}
03/03/2021 17:31:30                         pktgen: {0: {'ibytes': 47198277632,
     'ierrors': 0,
     'ipackets': 46092073,
     'obytes': 49095399424,
     'oerrors': 0,
     'opackets': 47944732,
     'rx_bps': 37659332608.0,
     'rx_bps_L1': 38394996448.0,
     'rx_pps': 4597899.0,
     'rx_util': 95.98749112,
     'tx_bps': 39205011456.0,
     'tx_bps_L1': 39970949536.00001,
     'tx_pps': 4787113.0,
     'tx_util': 99.92737384000002},
 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': 17.7037296295166,
            'cpu_util': 27.68132209777832,
            'cpu_util_raw': 27.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 35620632,
            'rx_bps': 37659332608.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4597899.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39205011456.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4787113.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 47198277632,
           'ierrors': 0,
           'ipackets': 46092073,
           'obytes': 49095399424,
           'oerrors': 0,
           'opackets': 47944732,
           'rx_bps': 37659332608.0,
           'rx_bps_L1': 38394996448.0,
           'rx_pps': 4597899.0,
           'rx_util': 95.98749112,
           'tx_bps': 39205011456.0,
           'tx_bps_L1': 39970949536.00001,
           'tx_pps': 4787113.0,
           'tx_util': 99.92737384000002}}
03/03/2021 17:31:30                         pktgen: {'ibytes': 47198277632,
 'ierrors': 0,
 'ipackets': 46092073,
 'obytes': 49095399424,
 'oerrors': 0,
 'opackets': 47944732,
 'rx_bps': 37659332608.0,
 'rx_bps_L1': 38394996448.0,
 'rx_pps': 4597899.0,
 'rx_util': 95.98749112,
 'tx_bps': 39205011456.0,
 'tx_bps_L1': 39970949536.00001,
 'tx_pps': 4787113.0,
 'tx_util': 99.92737384000002}
03/03/2021 17:31:30                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39205011456.000000, tx_pps: 4787113.000000 
03/03/2021 17:31:30                         pktgen: {'ibytes': 47198277632,
 'ierrors': 0,
 'ipackets': 46092073,
 'obytes': 49095399424,
 'oerrors': 0,
 'opackets': 47944732,
 'rx_bps': 37659332608.0,
 'rx_bps_L1': 38394996448.0,
 'rx_pps': 4597899.0,
 'rx_util': 95.98749112,
 'tx_bps': 39205011456.0,
 'tx_bps_L1': 39970949536.00001,
 'tx_pps': 4787113.0,
 'tx_util': 99.92737384000002}
03/03/2021 17:31:30                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 37659332608.000000, rx_pps: 4597899.000000
03/03/2021 17:31:30                         pktgen: throughput: pps_rx 4597899.000000, bps_rx 37659332608.000000
03/03/2021 17:31:30                         pktgen: traffic completed. 
03/03/2021 17:31:30 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
03/03/2021 17:31:30                         tester: ls -d /tmp
03/03/2021 17:31:30                         tester: /tmp
03/03/2021 17:31:30                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:31:32                         pktgen: test port 0 map gen port 0
03/03/2021 17:31:32                         pktgen: test port 0 map gen port 0
03/03/2021 17:31: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:31:32                         pktgen: trex port <0> not support flow control
03/03/2021 17:31:32                         pktgen: check the trex port link status
03/03/2021 17:31: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:31:32                         pktgen: begin traffic ......
03/03/2021 17:31:32                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:31:42                         pktgen: begin get port statistic ...
03/03/2021 17:31: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}
03/03/2021 17:31:42                         pktgen: {0: {'ibytes': 49401426162,
     'ierrors': 0,
     'ipackets': 32543762,
     'obytes': 49401312312,
     'oerrors': 0,
     'opackets': 32543686,
     'rx_bps': 39393566720.0,
     'rx_bps_L1': 39912651360.0,
     'rx_pps': 3244279.0,
     'rx_util': 99.7816284,
     'tx_bps': 39393980416.0,
     'tx_bps_L1': 39913073296.0,
     'tx_pps': 3244330.5,
     'tx_util': 99.78268324},
 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.76262283325195,
            'cpu_util': 14.165350914001465,
            'cpu_util_raw': 14.9375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 16969212,
            'rx_bps': 39393566720.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3244279.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39393980416.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3244330.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49401426162,
           'ierrors': 0,
           'ipackets': 32543762,
           'obytes': 49401312312,
           'oerrors': 0,
           'opackets': 32543686,
           'rx_bps': 39393566720.0,
           'rx_bps_L1': 39912651360.0,
           'rx_pps': 3244279.0,
           'rx_util': 99.7816284,
           'tx_bps': 39393980416.0,
           'tx_bps_L1': 39913073296.0,
           'tx_pps': 3244330.5,
           'tx_util': 99.78268324}}
03/03/2021 17:31:42                         pktgen: {'ibytes': 49401426162,
 'ierrors': 0,
 'ipackets': 32543762,
 'obytes': 49401312312,
 'oerrors': 0,
 'opackets': 32543686,
 'rx_bps': 39393566720.0,
 'rx_bps_L1': 39912651360.0,
 'rx_pps': 3244279.0,
 'rx_util': 99.7816284,
 'tx_bps': 39393980416.0,
 'tx_bps_L1': 39913073296.0,
 'tx_pps': 3244330.5,
 'tx_util': 99.78268324}
03/03/2021 17:31:42                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39393980416.000000, tx_pps: 3244330.500000 
03/03/2021 17:31:42                         pktgen: {'ibytes': 49401426162,
 'ierrors': 0,
 'ipackets': 32543762,
 'obytes': 49401312312,
 'oerrors': 0,
 'opackets': 32543686,
 'rx_bps': 39393566720.0,
 'rx_bps_L1': 39912651360.0,
 'rx_pps': 3244279.0,
 'rx_util': 99.7816284,
 'tx_bps': 39393980416.0,
 'tx_bps_L1': 39913073296.0,
 'tx_pps': 3244330.5,
 'tx_util': 99.78268324}
03/03/2021 17:31:42                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39393566720.000000, rx_pps: 3244279.000000
03/03/2021 17:31:42                         pktgen: throughput: pps_rx 3244279.000000, bps_rx 39393566720.000000
03/03/2021 17:31:42                         pktgen: traffic completed. 
03/03/2021 17:31:44 TestPVPMultiPathVhostPerformance: result of all framesize result
03/03/2021 17:31:44 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------+------------+
| Frame | Mode/RXD-TXD | Mpps  | % linerate |
+=======+==============+=======+============+
| 64    | normal       | 9.756 | 16.390     |
+-------+--------------+-------+------------+
| 128   | normal       | 8.885 | 26.300     |
+-------+--------------+-------+------------+
| 256   | normal       | 8.145 | 44.959     |
+-------+--------------+-------+------------+
| 512   | normal       | 5.700 | 60.648     |
+-------+--------------+-------+------------+
| 1024  | normal       | 4.598 | 96.004     |
+-------+--------------+-------+------------+
| 1518  | normal       | 3.244 | 99.794     |
+-------+--------------+-------+------------+
03/03/2021 17:31:44 TestPVPMultiPathVhostPerformance: 
+-------+--------------+------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps    | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+============+============+=====================+=======================+
| 64    | 1024         | 9.756 Mpps | 16.390%    | 10.000 Mpps         | -0.244 Mpps           |
+-------+--------------+------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.244 Mpps | 99.794%    | 3.240 Mpps          | 0.004 Mpps            |
+-------+--------------+------------+------------+---------------------+-----------------------+
03/03/2021 17:31:44 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.500000
03/03/2021 17:31:44 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.244000
03/03/2021 17:31:44 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162000
03/03/2021 17:31:44 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.004000
03/03/2021 17:31:44 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_normal Result PASSED:
03/03/2021 17:31:44             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
03/03/2021 17:31:45 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_vector_rx Begin
03/03/2021 17:31:45             dut.10.240.183.220: 
03/03/2021 17:31:45                         tester: 
03/03/2021 17:31:45             dut.10.240.183.220: rm -rf ./vhost.out
03/03/2021 17:31:45             dut.10.240.183.220: 
03/03/2021 17:31:45             dut.10.240.183.220: rm -rf ./vhost-net*
03/03/2021 17:31:45             dut.10.240.183.220: 
03/03/2021 17:31:45             dut.10.240.183.220: killall -s INT dpdk-testpmd 
03/03/2021 17:31:46             dut.10.240.183.220: dpdk-testpmd: no process found
03/03/2021 17:31:46             dut.10.240.183.220: killall -s INT qemu-system-x86_64
03/03/2021 17:31:46             dut.10.240.183.220: qemu-system-x86_64: no process found
03/03/2021 17:31:56             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
03/03/2021 17:31:56             dut.10.240.183.220: 1048576
03/03/2021 17:32:08 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
03/03/2021 17:32:08                         tester: ls -d /tmp
03/03/2021 17:32:08                         tester: /tmp
03/03/2021 17:32:08                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:32:10                         pktgen: test port 0 map gen port 0
03/03/2021 17:32:10                         pktgen: test port 0 map gen port 0
03/03/2021 17:32:10                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:32:10                         pktgen: trex port <0> not support flow control
03/03/2021 17:32:10                         pktgen: check the trex port link status
03/03/2021 17:32:10                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:32:10                         pktgen: begin traffic ......
03/03/2021 17:32:10                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:32:20                         pktgen: begin get port statistic ...
03/03/2021 17:32:20                         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}
03/03/2021 17:32:20                         pktgen: {0: {'ibytes': 6537436160,
     'ierrors': 0,
     'ipackets': 102147453,
     'obytes': 17312801344,
     'oerrors': 0,
     'opackets': 270512556,
     'rx_bps': 5213180416.0,
     'rx_bps_L1': 6842301536.0,
     'rx_pps': 10182007.0,
     'rx_util': 17.10575384,
     'tx_bps': 13824112640.0,
     'tx_bps_L1': 18144147200.0,
     'tx_pps': 27000216.0,
     'tx_util': 45.360368},
 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.878238320350647,
            'cpu_util': 92.0018539428711,
            'cpu_util_raw': 99.3125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 137801644,
            'rx_bps': 5213180416.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8610931712.0,
            'rx_pps': 10182007.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13824112640.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 27000216.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 6537436160,
           'ierrors': 0,
           'ipackets': 102147453,
           'obytes': 17312801344,
           'oerrors': 0,
           'opackets': 270512556,
           'rx_bps': 5213180416.0,
           'rx_bps_L1': 6842301536.0,
           'rx_pps': 10182007.0,
           'rx_util': 17.10575384,
           'tx_bps': 13824112640.0,
           'tx_bps_L1': 18144147200.0,
           'tx_pps': 27000216.0,
           'tx_util': 45.360368}}
03/03/2021 17:32:20                         pktgen: {'ibytes': 6537436160,
 'ierrors': 0,
 'ipackets': 102147453,
 'obytes': 17312801344,
 'oerrors': 0,
 'opackets': 270512556,
 'rx_bps': 5213180416.0,
 'rx_bps_L1': 6842301536.0,
 'rx_pps': 10182007.0,
 'rx_util': 17.10575384,
 'tx_bps': 13824112640.0,
 'tx_bps_L1': 18144147200.0,
 'tx_pps': 27000216.0,
 'tx_util': 45.360368}
03/03/2021 17:32:20                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13824112640.000000, tx_pps: 27000216.000000 
03/03/2021 17:32:20                         pktgen: {'ibytes': 6537436160,
 'ierrors': 0,
 'ipackets': 102147453,
 'obytes': 17312801344,
 'oerrors': 0,
 'opackets': 270512556,
 'rx_bps': 5213180416.0,
 'rx_bps_L1': 6842301536.0,
 'rx_pps': 10182007.0,
 'rx_util': 17.10575384,
 'tx_bps': 13824112640.0,
 'tx_bps_L1': 18144147200.0,
 'tx_pps': 27000216.0,
 'tx_util': 45.360368}
03/03/2021 17:32:20                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 5213180416.000000, rx_pps: 10182007.000000
03/03/2021 17:32:20                         pktgen: throughput: pps_rx 10182007.000000, bps_rx 5213180416.000000
03/03/2021 17:32:20                         pktgen: traffic completed. 
03/03/2021 17:32:20 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
03/03/2021 17:32:20                         tester: ls -d /tmp
03/03/2021 17:32:20                         tester: /tmp
03/03/2021 17:32:20                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:32:22                         pktgen: test port 0 map gen port 0
03/03/2021 17:32:22                         pktgen: test port 0 map gen port 0
03/03/2021 17:32: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:32:22                         pktgen: trex port <0> not support flow control
03/03/2021 17:32:22                         pktgen: check the trex port link status
03/03/2021 17:32: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:32:22                         pktgen: begin traffic ......
03/03/2021 17:32:22                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:32:32                         pktgen: begin get port statistic ...
03/03/2021 17:32: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}
03/03/2021 17:32:32                         pktgen: {0: {'ibytes': 11837394048,
     'ierrors': 0,
     'ipackets': 92479664,
     'obytes': 26531835648,
     'oerrors': 0,
     'opackets': 207279987,
     'rx_bps': 9441827840.0,
     'rx_bps_L1': 10917400000.0,
     'rx_pps': 9222326.0,
     'rx_util': 27.293499999999998,
     'tx_bps': 20812861440.0,
     'tx_bps_L1': 24065632640.0,
     'tx_pps': 20329820.0,
     'tx_util': 60.164081599999996},
 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.720940113067627,
            'cpu_util': 95.61429595947266,
            'cpu_util_raw': 99.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 140299689,
            'rx_bps': 9441827840.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11371033600.0,
            'rx_pps': 9222326.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 20812861440.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 20329820.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 11837394048,
           'ierrors': 0,
           'ipackets': 92479664,
           'obytes': 26531835648,
           'oerrors': 0,
           'opackets': 207279987,
           'rx_bps': 9441827840.0,
           'rx_bps_L1': 10917400000.0,
           'rx_pps': 9222326.0,
           'rx_util': 27.293499999999998,
           'tx_bps': 20812861440.0,
           'tx_bps_L1': 24065632640.0,
           'tx_pps': 20329820.0,
           'tx_util': 60.164081599999996}}
03/03/2021 17:32:32                         pktgen: {'ibytes': 11837394048,
 'ierrors': 0,
 'ipackets': 92479664,
 'obytes': 26531835648,
 'oerrors': 0,
 'opackets': 207279987,
 'rx_bps': 9441827840.0,
 'rx_bps_L1': 10917400000.0,
 'rx_pps': 9222326.0,
 'rx_util': 27.293499999999998,
 'tx_bps': 20812861440.0,
 'tx_bps_L1': 24065632640.0,
 'tx_pps': 20329820.0,
 'tx_util': 60.164081599999996}
03/03/2021 17:32:32                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 20812861440.000000, tx_pps: 20329820.000000 
03/03/2021 17:32:32                         pktgen: {'ibytes': 11837394048,
 'ierrors': 0,
 'ipackets': 92479664,
 'obytes': 26531835648,
 'oerrors': 0,
 'opackets': 207279987,
 'rx_bps': 9441827840.0,
 'rx_bps_L1': 10917400000.0,
 'rx_pps': 9222326.0,
 'rx_util': 27.293499999999998,
 'tx_bps': 20812861440.0,
 'tx_bps_L1': 24065632640.0,
 'tx_pps': 20329820.0,
 'tx_util': 60.164081599999996}
03/03/2021 17:32:32                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 9441827840.000000, rx_pps: 9222326.000000
03/03/2021 17:32:32                         pktgen: throughput: pps_rx 9222326.000000, bps_rx 9441827840.000000
03/03/2021 17:32:32                         pktgen: traffic completed. 
03/03/2021 17:32:32 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
03/03/2021 17:32:32                         tester: ls -d /tmp
03/03/2021 17:32:32                         tester: /tmp
03/03/2021 17:32:32                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:32:34                         pktgen: test port 0 map gen port 0
03/03/2021 17:32:34                         pktgen: test port 0 map gen port 0
03/03/2021 17:32: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:32:34                         pktgen: trex port <0> not support flow control
03/03/2021 17:32:34                         pktgen: check the trex port link status
03/03/2021 17:32: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:32:34                         pktgen: begin traffic ......
03/03/2021 17:32:34                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:32:44                         pktgen: begin get port statistic ...
03/03/2021 17:32: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}
03/03/2021 17:32:44                         pktgen: {0: {'ibytes': 21326835968,
     'ierrors': 0,
     'ipackets': 83307953,
     'obytes': 46346085888,
     'oerrors': 0,
     'opackets': 181039421,
     'rx_bps': 17010380800.0,
     'rx_bps_L1': 18339572160.0,
     'rx_pps': 8307446.0,
     'rx_util': 45.8489304,
     'tx_bps': 36868771840.0,
     'tx_bps_L1': 39749710400.0,
     'tx_pps': 18005866.0,
     'tx_util': 99.374276},
 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': 47.921573638916016,
            'cpu_util': 9.616955757141113,
            'cpu_util_raw': 6.8125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 2495374,
            'rx_bps': 17010380800.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 19858393088.0,
            'rx_pps': 8307446.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 36868771840.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18005866.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 21326835968,
           'ierrors': 0,
           'ipackets': 83307953,
           'obytes': 46346085888,
           'oerrors': 0,
           'opackets': 181039421,
           'rx_bps': 17010380800.0,
           'rx_bps_L1': 18339572160.0,
           'rx_pps': 8307446.0,
           'rx_util': 45.8489304,
           'tx_bps': 36868771840.0,
           'tx_bps_L1': 39749710400.0,
           'tx_pps': 18005866.0,
           'tx_util': 99.374276}}
03/03/2021 17:32:44                         pktgen: {'ibytes': 21326835968,
 'ierrors': 0,
 'ipackets': 83307953,
 'obytes': 46346085888,
 'oerrors': 0,
 'opackets': 181039421,
 'rx_bps': 17010380800.0,
 'rx_bps_L1': 18339572160.0,
 'rx_pps': 8307446.0,
 'rx_util': 45.8489304,
 'tx_bps': 36868771840.0,
 'tx_bps_L1': 39749710400.0,
 'tx_pps': 18005866.0,
 'tx_util': 99.374276}
03/03/2021 17:32:44                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 36868771840.000000, tx_pps: 18005866.000000 
03/03/2021 17:32:44                         pktgen: {'ibytes': 21326835968,
 'ierrors': 0,
 'ipackets': 83307953,
 'obytes': 46346085888,
 'oerrors': 0,
 'opackets': 181039421,
 'rx_bps': 17010380800.0,
 'rx_bps_L1': 18339572160.0,
 'rx_pps': 8307446.0,
 'rx_util': 45.8489304,
 'tx_bps': 36868771840.0,
 'tx_bps_L1': 39749710400.0,
 'tx_pps': 18005866.0,
 'tx_util': 99.374276}
03/03/2021 17:32:44                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 17010380800.000000, rx_pps: 8307446.000000
03/03/2021 17:32:44                         pktgen: throughput: pps_rx 8307446.000000, bps_rx 17010380800.000000
03/03/2021 17:32:44                         pktgen: traffic completed. 
03/03/2021 17:32:44 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
03/03/2021 17:32:44                         tester: ls -d /tmp
03/03/2021 17:32:45                         tester: /tmp
03/03/2021 17:32:45                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:32:47                         pktgen: test port 0 map gen port 0
03/03/2021 17:32:47                         pktgen: test port 0 map gen port 0
03/03/2021 17:32: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:32:47                         pktgen: trex port <0> not support flow control
03/03/2021 17:32:47                         pktgen: check the trex port link status
03/03/2021 17:32: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:32:47                         pktgen: begin traffic ......
03/03/2021 17:32:47                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:32:57                         pktgen: begin get port statistic ...
03/03/2021 17:32: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}
03/03/2021 17:32:57                         pktgen: {0: {'ibytes': 29093927936,
     'ierrors': 0,
     'ipackets': 56824087,
     'obytes': 48172492288,
     'oerrors': 0,
     'opackets': 94086906,
     'rx_bps': 23203827712.0,
     'rx_bps_L1': 24110450272.0,
     'rx_pps': 5666391.0,
     'rx_util': 60.27612568000001,
     'tx_bps': 38408953856.0,
     'tx_bps_L1': 39909786976.0,
     'tx_pps': 9380207.0,
     'tx_util': 99.77446744000001},
 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.592682838439941,
            'cpu_util': 55.874507904052734,
            'cpu_util_raw': 60.8125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 82687935,
            'rx_bps': 23203827712.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 15205125120.0,
            'rx_pps': 5666391.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38408953856.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9380207.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 29093927936,
           'ierrors': 0,
           'ipackets': 56824087,
           'obytes': 48172492288,
           'oerrors': 0,
           'opackets': 94086906,
           'rx_bps': 23203827712.0,
           'rx_bps_L1': 24110450272.0,
           'rx_pps': 5666391.0,
           'rx_util': 60.27612568000001,
           'tx_bps': 38408953856.0,
           'tx_bps_L1': 39909786976.0,
           'tx_pps': 9380207.0,
           'tx_util': 99.77446744000001}}
03/03/2021 17:32:57                         pktgen: {'ibytes': 29093927936,
 'ierrors': 0,
 'ipackets': 56824087,
 'obytes': 48172492288,
 'oerrors': 0,
 'opackets': 94086906,
 'rx_bps': 23203827712.0,
 'rx_bps_L1': 24110450272.0,
 'rx_pps': 5666391.0,
 'rx_util': 60.27612568000001,
 'tx_bps': 38408953856.0,
 'tx_bps_L1': 39909786976.0,
 'tx_pps': 9380207.0,
 'tx_util': 99.77446744000001}
03/03/2021 17:32:57                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38408953856.000000, tx_pps: 9380207.000000 
03/03/2021 17:32:57                         pktgen: {'ibytes': 29093927936,
 'ierrors': 0,
 'ipackets': 56824087,
 'obytes': 48172492288,
 'oerrors': 0,
 'opackets': 94086906,
 'rx_bps': 23203827712.0,
 'rx_bps_L1': 24110450272.0,
 'rx_pps': 5666391.0,
 'rx_util': 60.27612568000001,
 'tx_bps': 38408953856.0,
 'tx_bps_L1': 39909786976.0,
 'tx_pps': 9380207.0,
 'tx_util': 99.77446744000001}
03/03/2021 17:32:57                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 23203827712.000000, rx_pps: 5666391.000000
03/03/2021 17:32:57                         pktgen: throughput: pps_rx 5666391.000000, bps_rx 23203827712.000000
03/03/2021 17:32:57                         pktgen: traffic completed. 
03/03/2021 17:32:57 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
03/03/2021 17:32:57                         tester: ls -d /tmp
03/03/2021 17:32:57                         tester: /tmp
03/03/2021 17:32:57                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:32:59                         pktgen: test port 0 map gen port 0
03/03/2021 17:32:59                         pktgen: test port 0 map gen port 0
03/03/2021 17:32: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:32:59                         pktgen: trex port <0> not support flow control
03/03/2021 17:32:59                         pktgen: check the trex port link status
03/03/2021 17:32: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:32:59                         pktgen: begin traffic ......
03/03/2021 17:32:59                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:33:09                         pktgen: begin get port statistic ...
03/03/2021 17:33: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}
03/03/2021 17:33:09                         pktgen: {0: {'ibytes': 47470110720,
     'ierrors': 0,
     'ipackets': 46357535,
     'obytes': 49095618560,
     'oerrors': 0,
     'opackets': 47944944,
     'rx_bps': 38032547840.0,
     'rx_bps_L1': 38775527679.99999,
     'rx_pps': 4643624.0,
     'rx_util': 96.93881919999998,
     'tx_bps': 39288164352.0,
     'tx_bps_L1': 40055770592.0,
     'tx_pps': 4797539.0,
     'tx_util': 100.13942648},
 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': 17.048006057739258,
            'cpu_util': 28.807008743286133,
            'cpu_util_raw': 30.1875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 36266343,
            'rx_bps': 38032547840.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4643624.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39288164352.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4797539.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 47470110720,
           'ierrors': 0,
           'ipackets': 46357535,
           'obytes': 49095618560,
           'oerrors': 0,
           'opackets': 47944944,
           'rx_bps': 38032547840.0,
           'rx_bps_L1': 38775527679.99999,
           'rx_pps': 4643624.0,
           'rx_util': 96.93881919999998,
           'tx_bps': 39288164352.0,
           'tx_bps_L1': 40055770592.0,
           'tx_pps': 4797539.0,
           'tx_util': 100.13942648}}
03/03/2021 17:33:09                         pktgen: {'ibytes': 47470110720,
 'ierrors': 0,
 'ipackets': 46357535,
 'obytes': 49095618560,
 'oerrors': 0,
 'opackets': 47944944,
 'rx_bps': 38032547840.0,
 'rx_bps_L1': 38775527679.99999,
 'rx_pps': 4643624.0,
 'rx_util': 96.93881919999998,
 'tx_bps': 39288164352.0,
 'tx_bps_L1': 40055770592.0,
 'tx_pps': 4797539.0,
 'tx_util': 100.13942648}
03/03/2021 17:33:09                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39288164352.000000, tx_pps: 4797539.000000 
03/03/2021 17:33:09                         pktgen: {'ibytes': 47470110720,
 'ierrors': 0,
 'ipackets': 46357535,
 'obytes': 49095618560,
 'oerrors': 0,
 'opackets': 47944944,
 'rx_bps': 38032547840.0,
 'rx_bps_L1': 38775527679.99999,
 'rx_pps': 4643624.0,
 'rx_util': 96.93881919999998,
 'tx_bps': 39288164352.0,
 'tx_bps_L1': 40055770592.0,
 'tx_pps': 4797539.0,
 'tx_util': 100.13942648}
03/03/2021 17:33:09                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 38032547840.000000, rx_pps: 4643624.000000
03/03/2021 17:33:09                         pktgen: throughput: pps_rx 4643624.000000, bps_rx 38032547840.000000
03/03/2021 17:33:09                         pktgen: traffic completed. 
03/03/2021 17:33:09 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
03/03/2021 17:33:09                         tester: ls -d /tmp
03/03/2021 17:33:09                         tester: /tmp
03/03/2021 17:33:09                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:33:11                         pktgen: test port 0 map gen port 0
03/03/2021 17:33:11                         pktgen: test port 0 map gen port 0
03/03/2021 17:33: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:33:11                         pktgen: trex port <0> not support flow control
03/03/2021 17:33:11                         pktgen: check the trex port link status
03/03/2021 17:33: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:33:11                         pktgen: begin traffic ......
03/03/2021 17:33:11                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:33:21                         pktgen: begin get port statistic ...
03/03/2021 17:33: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}
03/03/2021 17:33:21                         pktgen: {0: {'ibytes': 49390894278,
     'ierrors': 0,
     'ipackets': 32536824,
     'obytes': 49390772838,
     'oerrors': 0,
     'opackets': 32536745,
     'rx_bps': 39381127168.0,
     'rx_bps_L1': 39900064208.0,
     'rx_pps': 3243356.5,
     'rx_util': 99.75016052,
     'tx_bps': 39381528576.0,
     'tx_bps_L1': 39900473536.0,
     'tx_pps': 3243406.0,
     'tx_util': 99.75118384},
 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.087425231933594,
            'cpu_util': 14.441370010375977,
            'cpu_util_raw': 14.6875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17046146,
            'rx_bps': 39381127168.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243356.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39381528576.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243406.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49390894278,
           'ierrors': 0,
           'ipackets': 32536824,
           'obytes': 49390772838,
           'oerrors': 0,
           'opackets': 32536745,
           'rx_bps': 39381127168.0,
           'rx_bps_L1': 39900064208.0,
           'rx_pps': 3243356.5,
           'rx_util': 99.75016052,
           'tx_bps': 39381528576.0,
           'tx_bps_L1': 39900473536.0,
           'tx_pps': 3243406.0,
           'tx_util': 99.75118384}}
03/03/2021 17:33:21                         pktgen: {'ibytes': 49390894278,
 'ierrors': 0,
 'ipackets': 32536824,
 'obytes': 49390772838,
 'oerrors': 0,
 'opackets': 32536745,
 'rx_bps': 39381127168.0,
 'rx_bps_L1': 39900064208.0,
 'rx_pps': 3243356.5,
 'rx_util': 99.75016052,
 'tx_bps': 39381528576.0,
 'tx_bps_L1': 39900473536.0,
 'tx_pps': 3243406.0,
 'tx_util': 99.75118384}
03/03/2021 17:33:21                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39381528576.000000, tx_pps: 3243406.000000 
03/03/2021 17:33:21                         pktgen: {'ibytes': 49390894278,
 'ierrors': 0,
 'ipackets': 32536824,
 'obytes': 49390772838,
 'oerrors': 0,
 'opackets': 32536745,
 'rx_bps': 39381127168.0,
 'rx_bps_L1': 39900064208.0,
 'rx_pps': 3243356.5,
 'rx_util': 99.75016052,
 'tx_bps': 39381528576.0,
 'tx_bps_L1': 39900473536.0,
 'tx_pps': 3243406.0,
 'tx_util': 99.75118384}
03/03/2021 17:33:21                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39381127168.000000, rx_pps: 3243356.500000
03/03/2021 17:33:21                         pktgen: throughput: pps_rx 3243356.500000, bps_rx 39381127168.000000
03/03/2021 17:33:21                         pktgen: traffic completed. 
03/03/2021 17:33:23 TestPVPMultiPathVhostPerformance: result of all framesize result
03/03/2021 17:33:23 TestPVPMultiPathVhostPerformance: 
+-------+--------------+--------+------------+
| Frame | Mode/RXD-TXD |  Mpps  | % linerate |
+=======+==============+========+============+
| 64    | vector rx    | 10.182 | 17.106     |
+-------+--------------+--------+------------+
| 128   | vector rx    | 9.222  | 27.298     |
+-------+--------------+--------+------------+
| 256   | vector rx    | 8.307  | 45.857     |
+-------+--------------+--------+------------+
| 512   | vector rx    | 5.666  | 60.290     |
+-------+--------------+--------+------------+
| 1024  | vector rx    | 4.644  | 96.959     |
+-------+--------------+--------+------------+
| 1518  | vector rx    | 3.243  | 99.766     |
+-------+--------------+--------+------------+
03/03/2021 17:33:23 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps     | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+=============+============+=====================+=======================+
| 64    | 1024         | 10.182 Mpps | 17.106%    | 10.005 Mpps         | 0.177 Mpps            |
+-------+--------------+-------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.243 Mpps  | 99.766%    | 3.248 Mpps          | -0.005 Mpps           |
+-------+--------------+-------------+------------+---------------------+-----------------------+
03/03/2021 17:33:23 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.500250
03/03/2021 17:33:23 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.177000
03/03/2021 17:33:23 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162400
03/03/2021 17:33:23 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.005000
03/03/2021 17:33:23 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_vector_rx Result PASSED:
03/03/2021 17:33:23             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
03/03/2021 17:33:24 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_inorder_mergeable Begin
03/03/2021 17:33:24             dut.10.240.183.220: 
03/03/2021 17:33:24                         tester: 
03/03/2021 17:33:24             dut.10.240.183.220: rm -rf ./vhost.out
03/03/2021 17:33:24             dut.10.240.183.220: 
03/03/2021 17:33:24             dut.10.240.183.220: rm -rf ./vhost-net*
03/03/2021 17:33:25             dut.10.240.183.220: 
03/03/2021 17:33:25             dut.10.240.183.220: killall -s INT dpdk-testpmd 
03/03/2021 17:33:25             dut.10.240.183.220: dpdk-testpmd: no process found
03/03/2021 17:33:25             dut.10.240.183.220: killall -s INT qemu-system-x86_64
03/03/2021 17:33:25             dut.10.240.183.220: qemu-system-x86_64: no process found
03/03/2021 17:33:35             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
03/03/2021 17:33:35             dut.10.240.183.220: 1048576
03/03/2021 17:33:47 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
03/03/2021 17:33:47                         tester: ls -d /tmp
03/03/2021 17:33:47                         tester: /tmp
03/03/2021 17:33:47                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:33:49                         pktgen: test port 0 map gen port 0
03/03/2021 17:33:49                         pktgen: test port 0 map gen port 0
03/03/2021 17:33: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:33:49                         pktgen: trex port <0> not support flow control
03/03/2021 17:33:49                         pktgen: check the trex port link status
03/03/2021 17:33: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:33:49                         pktgen: begin traffic ......
03/03/2021 17:33:49                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:33:59                         pktgen: begin get port statistic ...
03/03/2021 17:33: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}
03/03/2021 17:33:59                         pktgen: {0: {'ibytes': 8165665792,
     'ierrors': 0,
     'ipackets': 127588538,
     'obytes': 16676718016,
     'oerrors': 0,
     'opackets': 260573744,
     'rx_bps': 6513564672.0,
     'rx_bps_L1': 8549053632.0,
     'rx_pps': 12721806.0,
     'rx_util': 21.37263408,
     'tx_bps': 13200813056.0,
     'tx_bps_L1': 17326066816.0,
     'tx_pps': 25782836.0,
     'tx_util': 43.315167040000006},
 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.7688207626342773,
            'cpu_util': 93.2882308959961,
            'cpu_util_raw': 99.4375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 138264095,
            'rx_bps': 6513564672.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 6687248896.0,
            'rx_pps': 12721806.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13200813056.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 25782836.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 8165665792,
           'ierrors': 0,
           'ipackets': 127588538,
           'obytes': 16676718016,
           'oerrors': 0,
           'opackets': 260573744,
           'rx_bps': 6513564672.0,
           'rx_bps_L1': 8549053632.0,
           'rx_pps': 12721806.0,
           'rx_util': 21.37263408,
           'tx_bps': 13200813056.0,
           'tx_bps_L1': 17326066816.0,
           'tx_pps': 25782836.0,
           'tx_util': 43.315167040000006}}
03/03/2021 17:33:59                         pktgen: {'ibytes': 8165665792,
 'ierrors': 0,
 'ipackets': 127588538,
 'obytes': 16676718016,
 'oerrors': 0,
 'opackets': 260573744,
 'rx_bps': 6513564672.0,
 'rx_bps_L1': 8549053632.0,
 'rx_pps': 12721806.0,
 'rx_util': 21.37263408,
 'tx_bps': 13200813056.0,
 'tx_bps_L1': 17326066816.0,
 'tx_pps': 25782836.0,
 'tx_util': 43.315167040000006}
03/03/2021 17:33:59                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13200813056.000000, tx_pps: 25782836.000000 
03/03/2021 17:33:59                         pktgen: {'ibytes': 8165665792,
 'ierrors': 0,
 'ipackets': 127588538,
 'obytes': 16676718016,
 'oerrors': 0,
 'opackets': 260573744,
 'rx_bps': 6513564672.0,
 'rx_bps_L1': 8549053632.0,
 'rx_pps': 12721806.0,
 'rx_util': 21.37263408,
 'tx_bps': 13200813056.0,
 'tx_bps_L1': 17326066816.0,
 'tx_pps': 25782836.0,
 'tx_util': 43.315167040000006}
03/03/2021 17:33:59                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 6513564672.000000, rx_pps: 12721806.000000
03/03/2021 17:33:59                         pktgen: throughput: pps_rx 12721806.000000, bps_rx 6513564672.000000
03/03/2021 17:33:59                         pktgen: traffic completed. 
03/03/2021 17:33:59 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
03/03/2021 17:33:59                         tester: ls -d /tmp
03/03/2021 17:33:59                         tester: /tmp
03/03/2021 17:33:59                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:34:01                         pktgen: test port 0 map gen port 0
03/03/2021 17:34:01                         pktgen: test port 0 map gen port 0
03/03/2021 17:34: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:34:01                         pktgen: trex port <0> not support flow control
03/03/2021 17:34:01                         pktgen: check the trex port link status
03/03/2021 17:34: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:34:01                         pktgen: begin traffic ......
03/03/2021 17:34:01                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:34:11                         pktgen: begin get port statistic ...
03/03/2021 17:34: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}
03/03/2021 17:34:11                         pktgen: {0: {'ibytes': 14520345856,
     'ierrors': 0,
     'ipackets': 113440225,
     'obytes': 27592759424,
     'oerrors': 0,
     'opackets': 215568455,
     'rx_bps': 11563604992.0,
     'rx_bps_L1': 13370857792.0,
     'rx_pps': 11295330.0,
     'rx_util': 33.427144479999995,
     'tx_bps': 21590089728.0,
     'tx_bps_L1': 24964432768.0,
     'tx_pps': 21089644.0,
     'tx_util': 62.41108192},
 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.8109729290008545,
            'cpu_util': 96.0080795288086,
            'cpu_util_raw': 98.625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 139612325,
            'rx_bps': 11563604992.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10026485760.0,
            'rx_pps': 11295330.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 21590089728.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 21089644.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 14520345856,
           'ierrors': 0,
           'ipackets': 113440225,
           'obytes': 27592759424,
           'oerrors': 0,
           'opackets': 215568455,
           'rx_bps': 11563604992.0,
           'rx_bps_L1': 13370857792.0,
           'rx_pps': 11295330.0,
           'rx_util': 33.427144479999995,
           'tx_bps': 21590089728.0,
           'tx_bps_L1': 24964432768.0,
           'tx_pps': 21089644.0,
           'tx_util': 62.41108192}}
03/03/2021 17:34:11                         pktgen: {'ibytes': 14520345856,
 'ierrors': 0,
 'ipackets': 113440225,
 'obytes': 27592759424,
 'oerrors': 0,
 'opackets': 215568455,
 'rx_bps': 11563604992.0,
 'rx_bps_L1': 13370857792.0,
 'rx_pps': 11295330.0,
 'rx_util': 33.427144479999995,
 'tx_bps': 21590089728.0,
 'tx_bps_L1': 24964432768.0,
 'tx_pps': 21089644.0,
 'tx_util': 62.41108192}
03/03/2021 17:34:11                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 21590089728.000000, tx_pps: 21089644.000000 
03/03/2021 17:34:11                         pktgen: {'ibytes': 14520345856,
 'ierrors': 0,
 'ipackets': 113440225,
 'obytes': 27592759424,
 'oerrors': 0,
 'opackets': 215568455,
 'rx_bps': 11563604992.0,
 'rx_bps_L1': 13370857792.0,
 'rx_pps': 11295330.0,
 'rx_util': 33.427144479999995,
 'tx_bps': 21590089728.0,
 'tx_bps_L1': 24964432768.0,
 'tx_pps': 21089644.0,
 'tx_util': 62.41108192}
03/03/2021 17:34:11                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 11563604992.000000, rx_pps: 11295330.000000
03/03/2021 17:34:11                         pktgen: throughput: pps_rx 11295330.000000, bps_rx 11563604992.000000
03/03/2021 17:34:11                         pktgen: traffic completed. 
03/03/2021 17:34:11 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
03/03/2021 17:34:11                         tester: ls -d /tmp
03/03/2021 17:34:12                         tester: /tmp
03/03/2021 17:34:12                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:34:14                         pktgen: test port 0 map gen port 0
03/03/2021 17:34:14                         pktgen: test port 0 map gen port 0
03/03/2021 17:34: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:34:14                         pktgen: trex port <0> not support flow control
03/03/2021 17:34:14                         pktgen: check the trex port link status
03/03/2021 17:34: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:34:14                         pktgen: begin traffic ......
03/03/2021 17:34:14                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:34:24                         pktgen: begin get port statistic ...
03/03/2021 17:34: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}
03/03/2021 17:34:24                         pktgen: {0: {'ibytes': 25310710016,
     'ierrors': 0,
     'ipackets': 98869976,
     'obytes': 45320047872,
     'oerrors': 0,
     'opackets': 177031445,
     'rx_bps': 20175429632.0,
     'rx_bps_L1': 21752018112.0,
     'rx_pps': 9853678.0,
     'rx_util': 54.38004528,
     'tx_bps': 35300249600.0,
     'tx_bps_L1': 38058794560.0,
     'tx_pps': 17240906.0,
     'tx_util': 95.1469864},
 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': 23.220027923583984,
            'cpu_util': 19.00312614440918,
            'cpu_util_raw': 20.875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12599164,
            'rx_bps': 20175429632.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 15124819968.0,
            'rx_pps': 9853678.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 35300249600.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 17240906.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 25310710016,
           'ierrors': 0,
           'ipackets': 98869976,
           'obytes': 45320047872,
           'oerrors': 0,
           'opackets': 177031445,
           'rx_bps': 20175429632.0,
           'rx_bps_L1': 21752018112.0,
           'rx_pps': 9853678.0,
           'rx_util': 54.38004528,
           'tx_bps': 35300249600.0,
           'tx_bps_L1': 38058794560.0,
           'tx_pps': 17240906.0,
           'tx_util': 95.1469864}}
03/03/2021 17:34:24                         pktgen: {'ibytes': 25310710016,
 'ierrors': 0,
 'ipackets': 98869976,
 'obytes': 45320047872,
 'oerrors': 0,
 'opackets': 177031445,
 'rx_bps': 20175429632.0,
 'rx_bps_L1': 21752018112.0,
 'rx_pps': 9853678.0,
 'rx_util': 54.38004528,
 'tx_bps': 35300249600.0,
 'tx_bps_L1': 38058794560.0,
 'tx_pps': 17240906.0,
 'tx_util': 95.1469864}
03/03/2021 17:34:24                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 35300249600.000000, tx_pps: 17240906.000000 
03/03/2021 17:34:24                         pktgen: {'ibytes': 25310710016,
 'ierrors': 0,
 'ipackets': 98869976,
 'obytes': 45320047872,
 'oerrors': 0,
 'opackets': 177031445,
 'rx_bps': 20175429632.0,
 'rx_bps_L1': 21752018112.0,
 'rx_pps': 9853678.0,
 'rx_util': 54.38004528,
 'tx_bps': 35300249600.0,
 'tx_bps_L1': 38058794560.0,
 'tx_pps': 17240906.0,
 'tx_util': 95.1469864}
03/03/2021 17:34:24                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 20175429632.000000, rx_pps: 9853678.000000
03/03/2021 17:34:24                         pktgen: throughput: pps_rx 9853678.000000, bps_rx 20175429632.000000
03/03/2021 17:34:24                         pktgen: traffic completed. 
03/03/2021 17:34:24 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
03/03/2021 17:34:24                         tester: ls -d /tmp
03/03/2021 17:34:24                         tester: /tmp
03/03/2021 17:34:24                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:34:26                         pktgen: test port 0 map gen port 0
03/03/2021 17:34:26                         pktgen: test port 0 map gen port 0
03/03/2021 17:34: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:34:26                         pktgen: trex port <0> not support flow control
03/03/2021 17:34:26                         pktgen: check the trex port link status
03/03/2021 17:34: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:34:26                         pktgen: begin traffic ......
03/03/2021 17:34:26                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:34:36                         pktgen: begin get port statistic ...
03/03/2021 17:34: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}
03/03/2021 17:34:36                         pktgen: {0: {'ibytes': 38564921344,
     'ierrors': 0,
     'ipackets': 75322117,
     'obytes': 48171456512,
     'oerrors': 0,
     'opackets': 94084884,
     'rx_bps': 30718232576.0,
     'rx_bps_L1': 31918485936.0,
     'rx_pps': 7501583.5,
     'rx_util': 79.79621484,
     'tx_bps': 38370942976.0,
     'tx_bps_L1': 39870369856.0,
     'tx_pps': 9371418.0,
     'tx_util': 99.67592464},
 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.436944961547852,
            'cpu_util': 56.84958267211914,
            'cpu_util_raw': 60.375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 81692628,
            'rx_bps': 30718232576.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 7652708864.0,
            'rx_pps': 7501583.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38370942976.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9371418.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 38564921344,
           'ierrors': 0,
           'ipackets': 75322117,
           'obytes': 48171456512,
           'oerrors': 0,
           'opackets': 94084884,
           'rx_bps': 30718232576.0,
           'rx_bps_L1': 31918485936.0,
           'rx_pps': 7501583.5,
           'rx_util': 79.79621484,
           'tx_bps': 38370942976.0,
           'tx_bps_L1': 39870369856.0,
           'tx_pps': 9371418.0,
           'tx_util': 99.67592464}}
03/03/2021 17:34:36                         pktgen: {'ibytes': 38564921344,
 'ierrors': 0,
 'ipackets': 75322117,
 'obytes': 48171456512,
 'oerrors': 0,
 'opackets': 94084884,
 'rx_bps': 30718232576.0,
 'rx_bps_L1': 31918485936.0,
 'rx_pps': 7501583.5,
 'rx_util': 79.79621484,
 'tx_bps': 38370942976.0,
 'tx_bps_L1': 39870369856.0,
 'tx_pps': 9371418.0,
 'tx_util': 99.67592464}
03/03/2021 17:34:36                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38370942976.000000, tx_pps: 9371418.000000 
03/03/2021 17:34:36                         pktgen: {'ibytes': 38564921344,
 'ierrors': 0,
 'ipackets': 75322117,
 'obytes': 48171456512,
 'oerrors': 0,
 'opackets': 94084884,
 'rx_bps': 30718232576.0,
 'rx_bps_L1': 31918485936.0,
 'rx_pps': 7501583.5,
 'rx_util': 79.79621484,
 'tx_bps': 38370942976.0,
 'tx_bps_L1': 39870369856.0,
 'tx_pps': 9371418.0,
 'tx_util': 99.67592464}
03/03/2021 17:34:36                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 30718232576.000000, rx_pps: 7501583.500000
03/03/2021 17:34:36                         pktgen: throughput: pps_rx 7501583.500000, bps_rx 30718232576.000000
03/03/2021 17:34:36                         pktgen: traffic completed. 
03/03/2021 17:34:36 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
03/03/2021 17:34:36                         tester: ls -d /tmp
03/03/2021 17:34:36                         tester: /tmp
03/03/2021 17:34:36                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:34:38                         pktgen: test port 0 map gen port 0
03/03/2021 17:34:38                         pktgen: test port 0 map gen port 0
03/03/2021 17:34:38                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:34:38                         pktgen: trex port <0> not support flow control
03/03/2021 17:34:38                         pktgen: check the trex port link status
03/03/2021 17:34:38                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:34:38                         pktgen: begin traffic ......
03/03/2021 17:34:38                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:34:48                         pktgen: begin get port statistic ...
03/03/2021 17:34: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}
03/03/2021 17:34:48                         pktgen: {0: {'ibytes': 49094566912,
     'ierrors': 0,
     'ipackets': 47943917,
     'obytes': 49094430720,
     'oerrors': 0,
     'opackets': 47943784,
     'rx_bps': 39287730176.0,
     'rx_bps_L1': 40055307776.0,
     'rx_pps': 4797360.0,
     'rx_util': 100.13826943999999,
     'tx_bps': 39290814464.0,
     'tx_bps_L1': 40058511744.0,
     'tx_pps': 4798108.0,
     'tx_util': 100.14627936},
 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': 17.39080810546875,
            'cpu_util': 28.241079330444336,
            'cpu_util_raw': 28.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 35603525,
            'rx_bps': 39287730176.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4797360.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39290814464.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4798108.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49094566912,
           'ierrors': 0,
           'ipackets': 47943917,
           'obytes': 49094430720,
           'oerrors': 0,
           'opackets': 47943784,
           'rx_bps': 39287730176.0,
           'rx_bps_L1': 40055307776.0,
           'rx_pps': 4797360.0,
           'rx_util': 100.13826943999999,
           'tx_bps': 39290814464.0,
           'tx_bps_L1': 40058511744.0,
           'tx_pps': 4798108.0,
           'tx_util': 100.14627936}}
03/03/2021 17:34:48                         pktgen: {'ibytes': 49094566912,
 'ierrors': 0,
 'ipackets': 47943917,
 'obytes': 49094430720,
 'oerrors': 0,
 'opackets': 47943784,
 'rx_bps': 39287730176.0,
 'rx_bps_L1': 40055307776.0,
 'rx_pps': 4797360.0,
 'rx_util': 100.13826943999999,
 'tx_bps': 39290814464.0,
 'tx_bps_L1': 40058511744.0,
 'tx_pps': 4798108.0,
 'tx_util': 100.14627936}
03/03/2021 17:34:48                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39290814464.000000, tx_pps: 4798108.000000 
03/03/2021 17:34:48                         pktgen: {'ibytes': 49094566912,
 'ierrors': 0,
 'ipackets': 47943917,
 'obytes': 49094430720,
 'oerrors': 0,
 'opackets': 47943784,
 'rx_bps': 39287730176.0,
 'rx_bps_L1': 40055307776.0,
 'rx_pps': 4797360.0,
 'rx_util': 100.13826943999999,
 'tx_bps': 39290814464.0,
 'tx_bps_L1': 40058511744.0,
 'tx_pps': 4798108.0,
 'tx_util': 100.14627936}
03/03/2021 17:34:48                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39287730176.000000, rx_pps: 4797360.000000
03/03/2021 17:34:48                         pktgen: throughput: pps_rx 4797360.000000, bps_rx 39287730176.000000
03/03/2021 17:34:48                         pktgen: traffic completed. 
03/03/2021 17:34:48 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
03/03/2021 17:34:48                         tester: ls -d /tmp
03/03/2021 17:34:48                         tester: /tmp
03/03/2021 17:34:48                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:34:50                         pktgen: test port 0 map gen port 0
03/03/2021 17:34:50                         pktgen: test port 0 map gen port 0
03/03/2021 17:34:50                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:34:50                         pktgen: trex port <0> not support flow control
03/03/2021 17:34:50                         pktgen: check the trex port link status
03/03/2021 17:34:50                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:34:50                         pktgen: begin traffic ......
03/03/2021 17:34:50                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:35:00                         pktgen: begin get port statistic ...
03/03/2021 17:35:00                         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}
03/03/2021 17:35:00                         pktgen: {0: {'ibytes': 49364166852,
     'ierrors': 0,
     'ipackets': 32519217,
     'obytes': 49364037822,
     'oerrors': 0,
     'opackets': 32519132,
     'rx_bps': 39376945152.0,
     'rx_bps_L1': 39895842072.0,
     'rx_pps': 3243105.75,
     'rx_util': 99.73960518,
     'tx_bps': 39376990208.0,
     'tx_bps_L1': 39895887728.0,
     'tx_pps': 3243109.5,
     'tx_util': 99.73971931999999},
 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.73767852783203,
            'cpu_util': 14.589397430419922,
            'cpu_util_raw': 15.4375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17214634,
            'rx_bps': 39376945152.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243105.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39376990208.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243109.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49364166852,
           'ierrors': 0,
           'ipackets': 32519217,
           'obytes': 49364037822,
           'oerrors': 0,
           'opackets': 32519132,
           'rx_bps': 39376945152.0,
           'rx_bps_L1': 39895842072.0,
           'rx_pps': 3243105.75,
           'rx_util': 99.73960518,
           'tx_bps': 39376990208.0,
           'tx_bps_L1': 39895887728.0,
           'tx_pps': 3243109.5,
           'tx_util': 99.73971931999999}}
03/03/2021 17:35:00                         pktgen: {'ibytes': 49364166852,
 'ierrors': 0,
 'ipackets': 32519217,
 'obytes': 49364037822,
 'oerrors': 0,
 'opackets': 32519132,
 'rx_bps': 39376945152.0,
 'rx_bps_L1': 39895842072.0,
 'rx_pps': 3243105.75,
 'rx_util': 99.73960518,
 'tx_bps': 39376990208.0,
 'tx_bps_L1': 39895887728.0,
 'tx_pps': 3243109.5,
 'tx_util': 99.73971931999999}
03/03/2021 17:35:00                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39376990208.000000, tx_pps: 3243109.500000 
03/03/2021 17:35:00                         pktgen: {'ibytes': 49364166852,
 'ierrors': 0,
 'ipackets': 32519217,
 'obytes': 49364037822,
 'oerrors': 0,
 'opackets': 32519132,
 'rx_bps': 39376945152.0,
 'rx_bps_L1': 39895842072.0,
 'rx_pps': 3243105.75,
 'rx_util': 99.73960518,
 'tx_bps': 39376990208.0,
 'tx_bps_L1': 39895887728.0,
 'tx_pps': 3243109.5,
 'tx_util': 99.73971931999999}
03/03/2021 17:35:00                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39376945152.000000, rx_pps: 3243105.750000
03/03/2021 17:35:00                         pktgen: throughput: pps_rx 3243105.750000, bps_rx 39376945152.000000
03/03/2021 17:35:00                         pktgen: traffic completed. 
03/03/2021 17:35:02 TestPVPMultiPathVhostPerformance: result of all framesize result
03/03/2021 17:35:02 TestPVPMultiPathVhostPerformance: 
+-------+---------------------------------+--------+------------+
| Frame |          Mode/RXD-TXD           |  Mpps  | % linerate |
+=======+=================================+========+============+
| 64    | virtio_1.1_inorder_mergeable on | 12.722 | 21.373     |
+-------+---------------------------------+--------+------------+
| 128   | virtio_1.1_inorder_mergeable on | 11.295 | 33.434     |
+-------+---------------------------------+--------+------------+
| 256   | virtio_1.1_inorder_mergeable on | 9.854  | 54.392     |
+-------+---------------------------------+--------+------------+
| 512   | virtio_1.1_inorder_mergeable on | 7.502  | 79.817     |
+-------+---------------------------------+--------+------------+
| 1024  | virtio_1.1_inorder_mergeable on | 4.797  | 100.169    |
+-------+---------------------------------+--------+------------+
| 1518  | virtio_1.1_inorder_mergeable on | 3.243  | 99.758     |
+-------+---------------------------------+--------+------------+
03/03/2021 17:35:02 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps     | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+=============+============+=====================+=======================+
| 64    | 1024         | 12.722 Mpps | 21.373%    | 11.824 Mpps         | 0.898 Mpps            |
+-------+--------------+-------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.243 Mpps  | 99.758%    | 3.243 Mpps          | 0.000 Mpps            |
+-------+--------------+-------------+------------+---------------------+-----------------------+
03/03/2021 17:35:02 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.591200
03/03/2021 17:35:02 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.898000
03/03/2021 17:35:02 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162150
03/03/2021 17:35:02 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.000000
03/03/2021 17:35:02 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_inorder_mergeable Result PASSED:
03/03/2021 17:35:02             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
03/03/2021 17:35:03 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_inorder_normal Begin
03/03/2021 17:35:03             dut.10.240.183.220: 
03/03/2021 17:35:03                         tester: 
03/03/2021 17:35:03             dut.10.240.183.220: rm -rf ./vhost.out
03/03/2021 17:35:04             dut.10.240.183.220: 
03/03/2021 17:35:04             dut.10.240.183.220: rm -rf ./vhost-net*
03/03/2021 17:35:04             dut.10.240.183.220: 
03/03/2021 17:35:04             dut.10.240.183.220: killall -s INT dpdk-testpmd 
03/03/2021 17:35:04             dut.10.240.183.220: dpdk-testpmd: no process found
03/03/2021 17:35:04             dut.10.240.183.220: killall -s INT qemu-system-x86_64
03/03/2021 17:35:04             dut.10.240.183.220: qemu-system-x86_64: no process found
03/03/2021 17:35:14             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
03/03/2021 17:35:15             dut.10.240.183.220: 1048576
03/03/2021 17:35:26 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
03/03/2021 17:35:26                         tester: ls -d /tmp
03/03/2021 17:35:26                         tester: /tmp
03/03/2021 17:35:26                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:35:28                         pktgen: test port 0 map gen port 0
03/03/2021 17:35:28                         pktgen: test port 0 map gen port 0
03/03/2021 17:35: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:35:28                         pktgen: trex port <0> not support flow control
03/03/2021 17:35:28                         pktgen: check the trex port link status
03/03/2021 17:35: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:35:28                         pktgen: begin traffic ......
03/03/2021 17:35:28                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:35:38                         pktgen: begin get port statistic ...
03/03/2021 17:35: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}
03/03/2021 17:35:38                         pktgen: {0: {'ibytes': 8204604928,
     'ierrors': 0,
     'ipackets': 128196972,
     'obytes': 16839508096,
     'oerrors': 0,
     'opackets': 263117353,
     'rx_bps': 6548829184.0,
     'rx_bps_L1': 8595339264.0,
     'rx_pps': 12790688.0,
     'rx_util': 21.48834816,
     'tx_bps': 13474015232.0,
     'tx_bps_L1': 17684645632.0,
     'tx_pps': 26316440.0,
     'tx_util': 44.21161408},
 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.8109173774719238,
            'cpu_util': 93.00545501708984,
            'cpu_util_raw': 99.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 137945171,
            'rx_bps': 6548829184.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 6925186560.0,
            'rx_pps': 12790688.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13474015232.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26316440.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 8204604928,
           'ierrors': 0,
           'ipackets': 128196972,
           'obytes': 16839508096,
           'oerrors': 0,
           'opackets': 263117353,
           'rx_bps': 6548829184.0,
           'rx_bps_L1': 8595339264.0,
           'rx_pps': 12790688.0,
           'rx_util': 21.48834816,
           'tx_bps': 13474015232.0,
           'tx_bps_L1': 17684645632.0,
           'tx_pps': 26316440.0,
           'tx_util': 44.21161408}}
03/03/2021 17:35:38                         pktgen: {'ibytes': 8204604928,
 'ierrors': 0,
 'ipackets': 128196972,
 'obytes': 16839508096,
 'oerrors': 0,
 'opackets': 263117353,
 'rx_bps': 6548829184.0,
 'rx_bps_L1': 8595339264.0,
 'rx_pps': 12790688.0,
 'rx_util': 21.48834816,
 'tx_bps': 13474015232.0,
 'tx_bps_L1': 17684645632.0,
 'tx_pps': 26316440.0,
 'tx_util': 44.21161408}
03/03/2021 17:35:38                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13474015232.000000, tx_pps: 26316440.000000 
03/03/2021 17:35:38                         pktgen: {'ibytes': 8204604928,
 'ierrors': 0,
 'ipackets': 128196972,
 'obytes': 16839508096,
 'oerrors': 0,
 'opackets': 263117353,
 'rx_bps': 6548829184.0,
 'rx_bps_L1': 8595339264.0,
 'rx_pps': 12790688.0,
 'rx_util': 21.48834816,
 'tx_bps': 13474015232.0,
 'tx_bps_L1': 17684645632.0,
 'tx_pps': 26316440.0,
 'tx_util': 44.21161408}
03/03/2021 17:35:38                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 6548829184.000000, rx_pps: 12790688.000000
03/03/2021 17:35:38                         pktgen: throughput: pps_rx 12790688.000000, bps_rx 6548829184.000000
03/03/2021 17:35:38                         pktgen: traffic completed. 
03/03/2021 17:35:38 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
03/03/2021 17:35:38                         tester: ls -d /tmp
03/03/2021 17:35:38                         tester: /tmp
03/03/2021 17:35:38                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:35:40                         pktgen: test port 0 map gen port 0
03/03/2021 17:35:40                         pktgen: test port 0 map gen port 0
03/03/2021 17:35:40                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:35:40                         pktgen: trex port <0> not support flow control
03/03/2021 17:35:40                         pktgen: check the trex port link status
03/03/2021 17:35:40                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:35:40                         pktgen: begin traffic ......
03/03/2021 17:35:40                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:35:50                         pktgen: begin get port statistic ...
03/03/2021 17:35:50                         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}
03/03/2021 17:35:50                         pktgen: {0: {'ibytes': 14716570624,
     'ierrors': 0,
     'ipackets': 114973224,
     'obytes': 27176712320,
     'oerrors': 0,
     'opackets': 212318085,
     'rx_bps': 11765559296.0,
     'rx_bps_L1': 13604406016.000002,
     'rx_pps': 11492792.0,
     'rx_util': 34.011015040000004,
     'tx_bps': 21363218432.0,
     'tx_bps_L1': 24702206592.0,
     'tx_pps': 20868676.0,
     'tx_util': 61.75551648},
 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.781193971633911,
            'cpu_util': 96.01639556884766,
            'cpu_util_raw': 98.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 140226196,
            'rx_bps': 11765559296.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9597659136.0,
            'rx_pps': 11492792.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 21363218432.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 20868676.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 14716570624,
           'ierrors': 0,
           'ipackets': 114973224,
           'obytes': 27176712320,
           'oerrors': 0,
           'opackets': 212318085,
           'rx_bps': 11765559296.0,
           'rx_bps_L1': 13604406016.000002,
           'rx_pps': 11492792.0,
           'rx_util': 34.011015040000004,
           'tx_bps': 21363218432.0,
           'tx_bps_L1': 24702206592.0,
           'tx_pps': 20868676.0,
           'tx_util': 61.75551648}}
03/03/2021 17:35:50                         pktgen: {'ibytes': 14716570624,
 'ierrors': 0,
 'ipackets': 114973224,
 'obytes': 27176712320,
 'oerrors': 0,
 'opackets': 212318085,
 'rx_bps': 11765559296.0,
 'rx_bps_L1': 13604406016.000002,
 'rx_pps': 11492792.0,
 'rx_util': 34.011015040000004,
 'tx_bps': 21363218432.0,
 'tx_bps_L1': 24702206592.0,
 'tx_pps': 20868676.0,
 'tx_util': 61.75551648}
03/03/2021 17:35:50                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 21363218432.000000, tx_pps: 20868676.000000 
03/03/2021 17:35:50                         pktgen: {'ibytes': 14716570624,
 'ierrors': 0,
 'ipackets': 114973224,
 'obytes': 27176712320,
 'oerrors': 0,
 'opackets': 212318085,
 'rx_bps': 11765559296.0,
 'rx_bps_L1': 13604406016.000002,
 'rx_pps': 11492792.0,
 'rx_util': 34.011015040000004,
 'tx_bps': 21363218432.0,
 'tx_bps_L1': 24702206592.0,
 'tx_pps': 20868676.0,
 'tx_util': 61.75551648}
03/03/2021 17:35:50                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 11765559296.000000, rx_pps: 11492792.000000
03/03/2021 17:35:50                         pktgen: throughput: pps_rx 11492792.000000, bps_rx 11765559296.000000
03/03/2021 17:35:50                         pktgen: traffic completed. 
03/03/2021 17:35:50 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
03/03/2021 17:35:50                         tester: ls -d /tmp
03/03/2021 17:35:51                         tester: /tmp
03/03/2021 17:35:51                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:35:53                         pktgen: test port 0 map gen port 0
03/03/2021 17:35:53                         pktgen: test port 0 map gen port 0
03/03/2021 17:35:53                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:35:53                         pktgen: trex port <0> not support flow control
03/03/2021 17:35:53                         pktgen: check the trex port link status
03/03/2021 17:35:53                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:35:53                         pktgen: begin traffic ......
03/03/2021 17:35:53                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:36:03                         pktgen: begin get port statistic ...
03/03/2021 17:36:03                         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}
03/03/2021 17:36:03                         pktgen: {0: {'ibytes': 25362203136,
     'ierrors': 0,
     'ipackets': 99071112,
     'obytes': 46424558848,
     'oerrors': 0,
     'opackets': 181345949,
     'rx_bps': 20194668544.0,
     'rx_bps_L1': 21772801344.0,
     'rx_pps': 9863330.0,
     'rx_util': 54.43200336,
     'tx_bps': 36963373056.0,
     'tx_bps_L1': 39851905536.0,
     'tx_pps': 18053328.0,
     'tx_util': 99.62976384},
 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.45160675048828,
            'cpu_util': 8.485372543334961,
            'cpu_util_raw': 4.9375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 1715706,
            'rx_bps': 20194668544.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 16768706560.0,
            'rx_pps': 9863330.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 36963373056.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18053328.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 25362203136,
           'ierrors': 0,
           'ipackets': 99071112,
           'obytes': 46424558848,
           'oerrors': 0,
           'opackets': 181345949,
           'rx_bps': 20194668544.0,
           'rx_bps_L1': 21772801344.0,
           'rx_pps': 9863330.0,
           'rx_util': 54.43200336,
           'tx_bps': 36963373056.0,
           'tx_bps_L1': 39851905536.0,
           'tx_pps': 18053328.0,
           'tx_util': 99.62976384}}
03/03/2021 17:36:03                         pktgen: {'ibytes': 25362203136,
 'ierrors': 0,
 'ipackets': 99071112,
 'obytes': 46424558848,
 'oerrors': 0,
 'opackets': 181345949,
 'rx_bps': 20194668544.0,
 'rx_bps_L1': 21772801344.0,
 'rx_pps': 9863330.0,
 'rx_util': 54.43200336,
 'tx_bps': 36963373056.0,
 'tx_bps_L1': 39851905536.0,
 'tx_pps': 18053328.0,
 'tx_util': 99.62976384}
03/03/2021 17:36:03                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 36963373056.000000, tx_pps: 18053328.000000 
03/03/2021 17:36:03                         pktgen: {'ibytes': 25362203136,
 'ierrors': 0,
 'ipackets': 99071112,
 'obytes': 46424558848,
 'oerrors': 0,
 'opackets': 181345949,
 'rx_bps': 20194668544.0,
 'rx_bps_L1': 21772801344.0,
 'rx_pps': 9863330.0,
 'rx_util': 54.43200336,
 'tx_bps': 36963373056.0,
 'tx_bps_L1': 39851905536.0,
 'tx_pps': 18053328.0,
 'tx_util': 99.62976384}
03/03/2021 17:36:03                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 20194668544.000000, rx_pps: 9863330.000000
03/03/2021 17:36:03                         pktgen: throughput: pps_rx 9863330.000000, bps_rx 20194668544.000000
03/03/2021 17:36:03                         pktgen: traffic completed. 
03/03/2021 17:36:03 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
03/03/2021 17:36:03                         tester: ls -d /tmp
03/03/2021 17:36:03                         tester: /tmp
03/03/2021 17:36:03                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:36:05                         pktgen: test port 0 map gen port 0
03/03/2021 17:36:05                         pktgen: test port 0 map gen port 0
03/03/2021 17:36: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:36:05                         pktgen: trex port <0> not support flow control
03/03/2021 17:36:05                         pktgen: check the trex port link status
03/03/2021 17:36: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:36:05                         pktgen: begin traffic ......
03/03/2021 17:36:05                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:36:15                         pktgen: begin get port statistic ...
03/03/2021 17:36: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}
03/03/2021 17:36:15                         pktgen: {0: {'ibytes': 38877019648,
     'ierrors': 0,
     'ipackets': 75931687,
     'obytes': 48172370432,
     'oerrors': 0,
     'opackets': 94086669,
     'rx_bps': 31019972608.0,
     'rx_bps_L1': 32232045567.999996,
     'rx_pps': 7575456.0,
     'rx_util': 80.58011391999999,
     'tx_bps': 38442549248.0,
     'tx_bps_L1': 39944861568.0,
     'tx_pps': 9389452.0,
     'tx_util': 99.86215392},
 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.479352951049805,
            'cpu_util': 56.67081832885742,
            'cpu_util_raw': 60.625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 82272520,
            'rx_bps': 31019972608.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 7422578176.0,
            'rx_pps': 7575456.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38442549248.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9389452.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 38877019648,
           'ierrors': 0,
           'ipackets': 75931687,
           'obytes': 48172370432,
           'oerrors': 0,
           'opackets': 94086669,
           'rx_bps': 31019972608.0,
           'rx_bps_L1': 32232045567.999996,
           'rx_pps': 7575456.0,
           'rx_util': 80.58011391999999,
           'tx_bps': 38442549248.0,
           'tx_bps_L1': 39944861568.0,
           'tx_pps': 9389452.0,
           'tx_util': 99.86215392}}
03/03/2021 17:36:15                         pktgen: {'ibytes': 38877019648,
 'ierrors': 0,
 'ipackets': 75931687,
 'obytes': 48172370432,
 'oerrors': 0,
 'opackets': 94086669,
 'rx_bps': 31019972608.0,
 'rx_bps_L1': 32232045567.999996,
 'rx_pps': 7575456.0,
 'rx_util': 80.58011391999999,
 'tx_bps': 38442549248.0,
 'tx_bps_L1': 39944861568.0,
 'tx_pps': 9389452.0,
 'tx_util': 99.86215392}
03/03/2021 17:36:15                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38442549248.000000, tx_pps: 9389452.000000 
03/03/2021 17:36:15                         pktgen: {'ibytes': 38877019648,
 'ierrors': 0,
 'ipackets': 75931687,
 'obytes': 48172370432,
 'oerrors': 0,
 'opackets': 94086669,
 'rx_bps': 31019972608.0,
 'rx_bps_L1': 32232045567.999996,
 'rx_pps': 7575456.0,
 'rx_util': 80.58011391999999,
 'tx_bps': 38442549248.0,
 'tx_bps_L1': 39944861568.0,
 'tx_pps': 9389452.0,
 'tx_util': 99.86215392}
03/03/2021 17:36:15                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 31019972608.000000, rx_pps: 7575456.000000
03/03/2021 17:36:15                         pktgen: throughput: pps_rx 7575456.000000, bps_rx 31019972608.000000
03/03/2021 17:36:15                         pktgen: traffic completed. 
03/03/2021 17:36:15 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
03/03/2021 17:36:15                         tester: ls -d /tmp
03/03/2021 17:36:15                         tester: /tmp
03/03/2021 17:36:15                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:36:17                         pktgen: test port 0 map gen port 0
03/03/2021 17:36:17                         pktgen: test port 0 map gen port 0
03/03/2021 17:36: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:36:17                         pktgen: trex port <0> not support flow control
03/03/2021 17:36:17                         pktgen: check the trex port link status
03/03/2021 17:36: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:36:17                         pktgen: begin traffic ......
03/03/2021 17:36:17                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:36:27                         pktgen: begin get port statistic ...
03/03/2021 17:36: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}
03/03/2021 17:36:27                         pktgen: {0: {'ibytes': 49051269120,
     'ierrors': 0,
     'ipackets': 47901634,
     'obytes': 49051126784,
     'oerrors': 0,
     'opackets': 47901497,
     'rx_bps': 39124017152.0,
     'rx_bps_L1': 39888425312.0,
     'rx_pps': 4777551.0,
     'rx_util': 99.72106328,
     'tx_bps': 39127281664.0,
     'tx_bps_L1': 39891817504.0,
     'tx_pps': 4778349.0,
     'tx_util': 99.72954376},
 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': 17.075265884399414,
            'cpu_util': 28.64324378967285,
            'cpu_util_raw': 29.6875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 35793893,
            'rx_bps': 39124017152.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4777551.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39127281664.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4778349.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49051269120,
           'ierrors': 0,
           'ipackets': 47901634,
           'obytes': 49051126784,
           'oerrors': 0,
           'opackets': 47901497,
           'rx_bps': 39124017152.0,
           'rx_bps_L1': 39888425312.0,
           'rx_pps': 4777551.0,
           'rx_util': 99.72106328,
           'tx_bps': 39127281664.0,
           'tx_bps_L1': 39891817504.0,
           'tx_pps': 4778349.0,
           'tx_util': 99.72954376}}
03/03/2021 17:36:27                         pktgen: {'ibytes': 49051269120,
 'ierrors': 0,
 'ipackets': 47901634,
 'obytes': 49051126784,
 'oerrors': 0,
 'opackets': 47901497,
 'rx_bps': 39124017152.0,
 'rx_bps_L1': 39888425312.0,
 'rx_pps': 4777551.0,
 'rx_util': 99.72106328,
 'tx_bps': 39127281664.0,
 'tx_bps_L1': 39891817504.0,
 'tx_pps': 4778349.0,
 'tx_util': 99.72954376}
03/03/2021 17:36:27                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39127281664.000000, tx_pps: 4778349.000000 
03/03/2021 17:36:27                         pktgen: {'ibytes': 49051269120,
 'ierrors': 0,
 'ipackets': 47901634,
 'obytes': 49051126784,
 'oerrors': 0,
 'opackets': 47901497,
 'rx_bps': 39124017152.0,
 'rx_bps_L1': 39888425312.0,
 'rx_pps': 4777551.0,
 'rx_util': 99.72106328,
 'tx_bps': 39127281664.0,
 'tx_bps_L1': 39891817504.0,
 'tx_pps': 4778349.0,
 'tx_util': 99.72954376}
03/03/2021 17:36:27                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39124017152.000000, rx_pps: 4777551.000000
03/03/2021 17:36:27                         pktgen: throughput: pps_rx 4777551.000000, bps_rx 39124017152.000000
03/03/2021 17:36:27                         pktgen: traffic completed. 
03/03/2021 17:36:27 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
03/03/2021 17:36:27                         tester: ls -d /tmp
03/03/2021 17:36:27                         tester: /tmp
03/03/2021 17:36:27                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:36:29                         pktgen: test port 0 map gen port 0
03/03/2021 17:36:29                         pktgen: test port 0 map gen port 0
03/03/2021 17:36:29                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:36:29                         pktgen: trex port <0> not support flow control
03/03/2021 17:36:29                         pktgen: check the trex port link status
03/03/2021 17:36:29                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:36:29                         pktgen: begin traffic ......
03/03/2021 17:36:29                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:36:39                         pktgen: begin get port statistic ...
03/03/2021 17:36:39                         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}
03/03/2021 17:36:39                         pktgen: {0: {'ibytes': 49403329734,
     'ierrors': 0,
     'ipackets': 32545016,
     'obytes': 49403212848,
     'oerrors': 0,
     'opackets': 32544939,
     'rx_bps': 39429623808.0,
     'rx_bps_L1': 39949225807.99999,
     'rx_pps': 3247512.5,
     'rx_util': 99.87306451999997,
     'tx_bps': 39429652480.0,
     'tx_bps_L1': 39949254880.0,
     'tx_pps': 3247515.0,
     'tx_util': 99.8731372},
 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.7772331237793,
            'cpu_util': 15.036981582641602,
            'cpu_util_raw': 15.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17022601,
            'rx_bps': 39429623808.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3247512.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39429652480.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3247515.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49403329734,
           'ierrors': 0,
           'ipackets': 32545016,
           'obytes': 49403212848,
           'oerrors': 0,
           'opackets': 32544939,
           'rx_bps': 39429623808.0,
           'rx_bps_L1': 39949225807.99999,
           'rx_pps': 3247512.5,
           'rx_util': 99.87306451999997,
           'tx_bps': 39429652480.0,
           'tx_bps_L1': 39949254880.0,
           'tx_pps': 3247515.0,
           'tx_util': 99.8731372}}
03/03/2021 17:36:39                         pktgen: {'ibytes': 49403329734,
 'ierrors': 0,
 'ipackets': 32545016,
 'obytes': 49403212848,
 'oerrors': 0,
 'opackets': 32544939,
 'rx_bps': 39429623808.0,
 'rx_bps_L1': 39949225807.99999,
 'rx_pps': 3247512.5,
 'rx_util': 99.87306451999997,
 'tx_bps': 39429652480.0,
 'tx_bps_L1': 39949254880.0,
 'tx_pps': 3247515.0,
 'tx_util': 99.8731372}
03/03/2021 17:36:39                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39429652480.000000, tx_pps: 3247515.000000 
03/03/2021 17:36:39                         pktgen: {'ibytes': 49403329734,
 'ierrors': 0,
 'ipackets': 32545016,
 'obytes': 49403212848,
 'oerrors': 0,
 'opackets': 32544939,
 'rx_bps': 39429623808.0,
 'rx_bps_L1': 39949225807.99999,
 'rx_pps': 3247512.5,
 'rx_util': 99.87306451999997,
 'tx_bps': 39429652480.0,
 'tx_bps_L1': 39949254880.0,
 'tx_pps': 3247515.0,
 'tx_util': 99.8731372}
03/03/2021 17:36:39                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39429623808.000000, rx_pps: 3247512.500000
03/03/2021 17:36:39                         pktgen: throughput: pps_rx 3247512.500000, bps_rx 39429623808.000000
03/03/2021 17:36:39                         pktgen: traffic completed. 
03/03/2021 17:36:41 TestPVPMultiPathVhostPerformance: result of all framesize result
03/03/2021 17:36:41 TestPVPMultiPathVhostPerformance: 
+-------+---------------------------+--------+------------+
| Frame |       Mode/RXD-TXD        |  Mpps  | % linerate |
+=======+===========================+========+============+
| 64    | virtio_1.1 inorder normal | 12.791 | 21.488     |
+-------+---------------------------+--------+------------+
| 128   | virtio_1.1 inorder normal | 11.493 | 34.019     |
+-------+---------------------------+--------+------------+
| 256   | virtio_1.1 inorder normal | 9.863  | 54.446     |
+-------+---------------------------+--------+------------+
| 512   | virtio_1.1 inorder normal | 7.575  | 80.603     |
+-------+---------------------------+--------+------------+
| 1024  | virtio_1.1 inorder normal | 4.778  | 99.755     |
+-------+---------------------------+--------+------------+
| 1518  | virtio_1.1 inorder normal | 3.248  | 99.893     |
+-------+---------------------------+--------+------------+
03/03/2021 17:36:41 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps     | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+=============+============+=====================+=======================+
| 64    | 1024         | 12.791 Mpps | 21.488%    | 11.778 Mpps         | 1.013 Mpps            |
+-------+--------------+-------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.248 Mpps  | 99.893%    | 3.257 Mpps          | -0.009 Mpps           |
+-------+--------------+-------------+------------+---------------------+-----------------------+
03/03/2021 17:36:41 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.588900
03/03/2021 17:36:41 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 1.013000
03/03/2021 17:36:41 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162850
03/03/2021 17:36:41 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.009000
03/03/2021 17:36:41 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_inorder_normal Result PASSED:
03/03/2021 17:36:41             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
03/03/2021 17:36:42 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_mergeable Begin
03/03/2021 17:36:42             dut.10.240.183.220: 
03/03/2021 17:36:42                         tester: 
03/03/2021 17:36:42             dut.10.240.183.220: rm -rf ./vhost.out
03/03/2021 17:36:43             dut.10.240.183.220: 
03/03/2021 17:36:43             dut.10.240.183.220: rm -rf ./vhost-net*
03/03/2021 17:36:43             dut.10.240.183.220: 
03/03/2021 17:36:43             dut.10.240.183.220: killall -s INT dpdk-testpmd 
03/03/2021 17:36:43             dut.10.240.183.220: dpdk-testpmd: no process found
03/03/2021 17:36:43             dut.10.240.183.220: killall -s INT qemu-system-x86_64
03/03/2021 17:36:43             dut.10.240.183.220: qemu-system-x86_64: no process found
03/03/2021 17:36:53             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
03/03/2021 17:36:54             dut.10.240.183.220: 1048576
03/03/2021 17:37:05 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
03/03/2021 17:37:05                         tester: ls -d /tmp
03/03/2021 17:37:05                         tester: /tmp
03/03/2021 17:37:05                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:37:07                         pktgen: test port 0 map gen port 0
03/03/2021 17:37:07                         pktgen: test port 0 map gen port 0
03/03/2021 17:37: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:37:07                         pktgen: trex port <0> not support flow control
03/03/2021 17:37:07                         pktgen: check the trex port link status
03/03/2021 17:37: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:37:07                         pktgen: begin traffic ......
03/03/2021 17:37:07                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:37:17                         pktgen: begin get port statistic ...
03/03/2021 17:37: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}
03/03/2021 17:37:17                         pktgen: {0: {'ibytes': 7773904640,
     'ierrors': 0,
     'ipackets': 121467260,
     'obytes': 16811048128,
     'oerrors': 0,
     'opackets': 262672643,
     'rx_bps': 6221291008.0,
     'rx_bps_L1': 8165445248.0,
     'rx_pps': 12150964.0,
     'rx_util': 20.413613119999997,
     'tx_bps': 13174495232.0,
     'tx_bps_L1': 17291524992.0,
     'tx_pps': 25731436.0,
     'tx_util': 43.22881248},
 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.7728691101074219,
            'cpu_util': 92.8896484375,
            'cpu_util_raw': 99.4375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 138065246,
            'rx_bps': 6221291008.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 6953204224.0,
            'rx_pps': 12150964.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13174495232.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 25731436.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 7773904640,
           'ierrors': 0,
           'ipackets': 121467260,
           'obytes': 16811048128,
           'oerrors': 0,
           'opackets': 262672643,
           'rx_bps': 6221291008.0,
           'rx_bps_L1': 8165445248.0,
           'rx_pps': 12150964.0,
           'rx_util': 20.413613119999997,
           'tx_bps': 13174495232.0,
           'tx_bps_L1': 17291524992.0,
           'tx_pps': 25731436.0,
           'tx_util': 43.22881248}}
03/03/2021 17:37:17                         pktgen: {'ibytes': 7773904640,
 'ierrors': 0,
 'ipackets': 121467260,
 'obytes': 16811048128,
 'oerrors': 0,
 'opackets': 262672643,
 'rx_bps': 6221291008.0,
 'rx_bps_L1': 8165445248.0,
 'rx_pps': 12150964.0,
 'rx_util': 20.413613119999997,
 'tx_bps': 13174495232.0,
 'tx_bps_L1': 17291524992.0,
 'tx_pps': 25731436.0,
 'tx_util': 43.22881248}
03/03/2021 17:37:17                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13174495232.000000, tx_pps: 25731436.000000 
03/03/2021 17:37:17                         pktgen: {'ibytes': 7773904640,
 'ierrors': 0,
 'ipackets': 121467260,
 'obytes': 16811048128,
 'oerrors': 0,
 'opackets': 262672643,
 'rx_bps': 6221291008.0,
 'rx_bps_L1': 8165445248.0,
 'rx_pps': 12150964.0,
 'rx_util': 20.413613119999997,
 'tx_bps': 13174495232.0,
 'tx_bps_L1': 17291524992.0,
 'tx_pps': 25731436.0,
 'tx_util': 43.22881248}
03/03/2021 17:37:17                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 6221291008.000000, rx_pps: 12150964.000000
03/03/2021 17:37:17                         pktgen: throughput: pps_rx 12150964.000000, bps_rx 6221291008.000000
03/03/2021 17:37:17                         pktgen: traffic completed. 
03/03/2021 17:37:17 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
03/03/2021 17:37:17                         tester: ls -d /tmp
03/03/2021 17:37:17                         tester: /tmp
03/03/2021 17:37:17                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:37:19                         pktgen: test port 0 map gen port 0
03/03/2021 17:37:19                         pktgen: test port 0 map gen port 0
03/03/2021 17:37: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:37:19                         pktgen: trex port <0> not support flow control
03/03/2021 17:37:19                         pktgen: check the trex port link status
03/03/2021 17:37: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:37:19                         pktgen: begin traffic ......
03/03/2021 17:37:19                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:37:29                         pktgen: begin get port statistic ...
03/03/2021 17:37: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}
03/03/2021 17:37:29                         pktgen: {0: {'ibytes': 13967274368,
     'ierrors': 0,
     'ipackets': 109119338,
     'obytes': 27411409920,
     'oerrors': 0,
     'opackets': 214151659,
     'rx_bps': 11176097792.0,
     'rx_bps_L1': 12922845152.0,
     'rx_pps': 10917171.0,
     'rx_util': 32.30711288,
     'tx_bps': 21284980736.0,
     'tx_bps_L1': 24611779456.0,
     'tx_pps': 20792492.0,
     'tx_util': 61.52944864},
 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.764821767807007,
            'cpu_util': 96.23125457763672,
            'cpu_util_raw': 99.125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 140481919,
            'rx_bps': 11176097792.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10108882944.0,
            'rx_pps': 10917171.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 21284980736.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 20792492.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 13967274368,
           'ierrors': 0,
           'ipackets': 109119338,
           'obytes': 27411409920,
           'oerrors': 0,
           'opackets': 214151659,
           'rx_bps': 11176097792.0,
           'rx_bps_L1': 12922845152.0,
           'rx_pps': 10917171.0,
           'rx_util': 32.30711288,
           'tx_bps': 21284980736.0,
           'tx_bps_L1': 24611779456.0,
           'tx_pps': 20792492.0,
           'tx_util': 61.52944864}}
03/03/2021 17:37:29                         pktgen: {'ibytes': 13967274368,
 'ierrors': 0,
 'ipackets': 109119338,
 'obytes': 27411409920,
 'oerrors': 0,
 'opackets': 214151659,
 'rx_bps': 11176097792.0,
 'rx_bps_L1': 12922845152.0,
 'rx_pps': 10917171.0,
 'rx_util': 32.30711288,
 'tx_bps': 21284980736.0,
 'tx_bps_L1': 24611779456.0,
 'tx_pps': 20792492.0,
 'tx_util': 61.52944864}
03/03/2021 17:37:29                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 21284980736.000000, tx_pps: 20792492.000000 
03/03/2021 17:37:29                         pktgen: {'ibytes': 13967274368,
 'ierrors': 0,
 'ipackets': 109119338,
 'obytes': 27411409920,
 'oerrors': 0,
 'opackets': 214151659,
 'rx_bps': 11176097792.0,
 'rx_bps_L1': 12922845152.0,
 'rx_pps': 10917171.0,
 'rx_util': 32.30711288,
 'tx_bps': 21284980736.0,
 'tx_bps_L1': 24611779456.0,
 'tx_pps': 20792492.0,
 'tx_util': 61.52944864}
03/03/2021 17:37:29                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 11176097792.000000, rx_pps: 10917171.000000
03/03/2021 17:37:29                         pktgen: throughput: pps_rx 10917171.000000, bps_rx 11176097792.000000
03/03/2021 17:37:29                         pktgen: traffic completed. 
03/03/2021 17:37:29 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
03/03/2021 17:37:29                         tester: ls -d /tmp
03/03/2021 17:37:30                         tester: /tmp
03/03/2021 17:37:30                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:37:32                         pktgen: test port 0 map gen port 0
03/03/2021 17:37:32                         pktgen: test port 0 map gen port 0
03/03/2021 17:37: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:37:32                         pktgen: trex port <0> not support flow control
03/03/2021 17:37:32                         pktgen: check the trex port link status
03/03/2021 17:37: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:37:32                         pktgen: begin traffic ......
03/03/2021 17:37:32                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:37:42                         pktgen: begin get port statistic ...
03/03/2021 17:37: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}
03/03/2021 17:37:42                         pktgen: {0: {'ibytes': 24509506304,
     'ierrors': 0,
     'ipackets': 95740262,
     'obytes': 46421009408,
     'oerrors': 0,
     'opackets': 181332083,
     'rx_bps': 19619917824.0,
     'rx_bps_L1': 21153143103.999996,
     'rx_pps': 9582658.0,
     'rx_util': 52.88285775999999,
     'tx_bps': 37143773184.0,
     'tx_bps_L1': 40046423424.0,
     'tx_pps': 18141564.0,
     'tx_util': 100.11605856000001},
 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.93687438964844,
            'cpu_util': 8.770770072937012,
            'cpu_util_raw': 5.4375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 1713160,
            'rx_bps': 19619917824.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 17523855360.0,
            'rx_pps': 9582658.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37143773184.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 18141564.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 24509506304,
           'ierrors': 0,
           'ipackets': 95740262,
           'obytes': 46421009408,
           'oerrors': 0,
           'opackets': 181332083,
           'rx_bps': 19619917824.0,
           'rx_bps_L1': 21153143103.999996,
           'rx_pps': 9582658.0,
           'rx_util': 52.88285775999999,
           'tx_bps': 37143773184.0,
           'tx_bps_L1': 40046423424.0,
           'tx_pps': 18141564.0,
           'tx_util': 100.11605856000001}}
03/03/2021 17:37:42                         pktgen: {'ibytes': 24509506304,
 'ierrors': 0,
 'ipackets': 95740262,
 'obytes': 46421009408,
 'oerrors': 0,
 'opackets': 181332083,
 'rx_bps': 19619917824.0,
 'rx_bps_L1': 21153143103.999996,
 'rx_pps': 9582658.0,
 'rx_util': 52.88285775999999,
 'tx_bps': 37143773184.0,
 'tx_bps_L1': 40046423424.0,
 'tx_pps': 18141564.0,
 'tx_util': 100.11605856000001}
03/03/2021 17:37:42                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37143773184.000000, tx_pps: 18141564.000000 
03/03/2021 17:37:42                         pktgen: {'ibytes': 24509506304,
 'ierrors': 0,
 'ipackets': 95740262,
 'obytes': 46421009408,
 'oerrors': 0,
 'opackets': 181332083,
 'rx_bps': 19619917824.0,
 'rx_bps_L1': 21153143103.999996,
 'rx_pps': 9582658.0,
 'rx_util': 52.88285775999999,
 'tx_bps': 37143773184.0,
 'tx_bps_L1': 40046423424.0,
 'tx_pps': 18141564.0,
 'tx_util': 100.11605856000001}
03/03/2021 17:37:42                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 19619917824.000000, rx_pps: 9582658.000000
03/03/2021 17:37:42                         pktgen: throughput: pps_rx 9582658.000000, bps_rx 19619917824.000000
03/03/2021 17:37:42                         pktgen: traffic completed. 
03/03/2021 17:37:42 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
03/03/2021 17:37:42                         tester: ls -d /tmp
03/03/2021 17:37:42                         tester: /tmp
03/03/2021 17:37:42                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:37:44                         pktgen: test port 0 map gen port 0
03/03/2021 17:37:44                         pktgen: test port 0 map gen port 0
03/03/2021 17:37: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:37:44                         pktgen: trex port <0> not support flow control
03/03/2021 17:37:44                         pktgen: check the trex port link status
03/03/2021 17:37: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:37:44                         pktgen: begin traffic ......
03/03/2021 17:37:44                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:37:54                         pktgen: begin get port statistic ...
03/03/2021 17:37: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}
03/03/2021 17:37:54                         pktgen: {0: {'ibytes': 37537775104,
     'ierrors': 0,
     'ipackets': 73315969,
     'obytes': 48172760576,
     'oerrors': 0,
     'opackets': 94087435,
     'rx_bps': 30034493440.0,
     'rx_bps_L1': 31208079999.999996,
     'rx_pps': 7334916.0,
     'rx_util': 78.02019999999999,
     'tx_bps': 38553460736.0,
     'tx_bps_L1': 40060145536.0,
     'tx_pps': 9416780.0,
     'tx_util': 100.15036384},
 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.516319274902344,
            'cpu_util': 56.58761978149414,
            'cpu_util_raw': 60.5625,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 81841149,
            'rx_bps': 30034493440.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8518966784.0,
            'rx_pps': 7334916.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38553460736.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9416780.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 37537775104,
           'ierrors': 0,
           'ipackets': 73315969,
           'obytes': 48172760576,
           'oerrors': 0,
           'opackets': 94087435,
           'rx_bps': 30034493440.0,
           'rx_bps_L1': 31208079999.999996,
           'rx_pps': 7334916.0,
           'rx_util': 78.02019999999999,
           'tx_bps': 38553460736.0,
           'tx_bps_L1': 40060145536.0,
           'tx_pps': 9416780.0,
           'tx_util': 100.15036384}}
03/03/2021 17:37:54                         pktgen: {'ibytes': 37537775104,
 'ierrors': 0,
 'ipackets': 73315969,
 'obytes': 48172760576,
 'oerrors': 0,
 'opackets': 94087435,
 'rx_bps': 30034493440.0,
 'rx_bps_L1': 31208079999.999996,
 'rx_pps': 7334916.0,
 'rx_util': 78.02019999999999,
 'tx_bps': 38553460736.0,
 'tx_bps_L1': 40060145536.0,
 'tx_pps': 9416780.0,
 'tx_util': 100.15036384}
03/03/2021 17:37:54                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38553460736.000000, tx_pps: 9416780.000000 
03/03/2021 17:37:54                         pktgen: {'ibytes': 37537775104,
 'ierrors': 0,
 'ipackets': 73315969,
 'obytes': 48172760576,
 'oerrors': 0,
 'opackets': 94087435,
 'rx_bps': 30034493440.0,
 'rx_bps_L1': 31208079999.999996,
 'rx_pps': 7334916.0,
 'rx_util': 78.02019999999999,
 'tx_bps': 38553460736.0,
 'tx_bps_L1': 40060145536.0,
 'tx_pps': 9416780.0,
 'tx_util': 100.15036384}
03/03/2021 17:37:54                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 30034493440.000000, rx_pps: 7334916.000000
03/03/2021 17:37:54                         pktgen: throughput: pps_rx 7334916.000000, bps_rx 30034493440.000000
03/03/2021 17:37:54                         pktgen: traffic completed. 
03/03/2021 17:37:54 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
03/03/2021 17:37:54                         tester: ls -d /tmp
03/03/2021 17:37:54                         tester: /tmp
03/03/2021 17:37:54                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:37:56                         pktgen: test port 0 map gen port 0
03/03/2021 17:37:56                         pktgen: test port 0 map gen port 0
03/03/2021 17:37:56                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:37:56                         pktgen: trex port <0> not support flow control
03/03/2021 17:37:56                         pktgen: check the trex port link status
03/03/2021 17:37:56                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:37:56                         pktgen: begin traffic ......
03/03/2021 17:37:56                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:38:06                         pktgen: begin get port statistic ...
03/03/2021 17:38:06                         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}
03/03/2021 17:38:06                         pktgen: {0: {'ibytes': 49094320128,
     'ierrors': 0,
     'ipackets': 47943677,
     'obytes': 49094179840,
     'oerrors': 0,
     'opackets': 47943539,
     'rx_bps': 39285444608.0,
     'rx_bps_L1': 40053011008.0,
     'rx_pps': 4797290.0,
     'rx_util': 100.13252752,
     'tx_bps': 39289380864.0,
     'tx_bps_L1': 40057101344.0,
     'tx_pps': 4798253.0,
     'tx_util': 100.14275336},
 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': 17.51624870300293,
            'cpu_util': 28.037809371948242,
            'cpu_util_raw': 28.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 35698756,
            'rx_bps': 39285444608.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4797290.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39289380864.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4798253.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49094320128,
           'ierrors': 0,
           'ipackets': 47943677,
           'obytes': 49094179840,
           'oerrors': 0,
           'opackets': 47943539,
           'rx_bps': 39285444608.0,
           'rx_bps_L1': 40053011008.0,
           'rx_pps': 4797290.0,
           'rx_util': 100.13252752,
           'tx_bps': 39289380864.0,
           'tx_bps_L1': 40057101344.0,
           'tx_pps': 4798253.0,
           'tx_util': 100.14275336}}
03/03/2021 17:38:06                         pktgen: {'ibytes': 49094320128,
 'ierrors': 0,
 'ipackets': 47943677,
 'obytes': 49094179840,
 'oerrors': 0,
 'opackets': 47943539,
 'rx_bps': 39285444608.0,
 'rx_bps_L1': 40053011008.0,
 'rx_pps': 4797290.0,
 'rx_util': 100.13252752,
 'tx_bps': 39289380864.0,
 'tx_bps_L1': 40057101344.0,
 'tx_pps': 4798253.0,
 'tx_util': 100.14275336}
03/03/2021 17:38:06                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39289380864.000000, tx_pps: 4798253.000000 
03/03/2021 17:38:06                         pktgen: {'ibytes': 49094320128,
 'ierrors': 0,
 'ipackets': 47943677,
 'obytes': 49094179840,
 'oerrors': 0,
 'opackets': 47943539,
 'rx_bps': 39285444608.0,
 'rx_bps_L1': 40053011008.0,
 'rx_pps': 4797290.0,
 'rx_util': 100.13252752,
 'tx_bps': 39289380864.0,
 'tx_bps_L1': 40057101344.0,
 'tx_pps': 4798253.0,
 'tx_util': 100.14275336}
03/03/2021 17:38:06                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39285444608.000000, rx_pps: 4797290.000000
03/03/2021 17:38:06                         pktgen: throughput: pps_rx 4797290.000000, bps_rx 39285444608.000000
03/03/2021 17:38:06                         pktgen: traffic completed. 
03/03/2021 17:38:06 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
03/03/2021 17:38:06                         tester: ls -d /tmp
03/03/2021 17:38:06                         tester: /tmp
03/03/2021 17:38:06                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:38:08                         pktgen: test port 0 map gen port 0
03/03/2021 17:38:08                         pktgen: test port 0 map gen port 0
03/03/2021 17:38:08                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:38:08                         pktgen: trex port <0> not support flow control
03/03/2021 17:38:08                         pktgen: check the trex port link status
03/03/2021 17:38:08                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:38:08                         pktgen: begin traffic ......
03/03/2021 17:38:08                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:38:18                         pktgen: begin get port statistic ...
03/03/2021 17:38:18                         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}
03/03/2021 17:38:18                         pktgen: {0: {'ibytes': 49400644392,
     'ierrors': 0,
     'ipackets': 32543247,
     'obytes': 49400519916,
     'oerrors': 0,
     'opackets': 32543166,
     'rx_bps': 39374606336.0,
     'rx_bps_L1': 39893489456.0,
     'rx_pps': 3243019.5,
     'rx_util': 99.73372364000001,
     'tx_bps': 39374544896.0,
     'tx_bps_L1': 39893427336.0,
     'tx_pps': 3243015.25,
     'tx_util': 99.73356834},
 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.04959487915039,
            'cpu_util': 14.892219543457031,
            'cpu_util_raw': 15.6875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 16856613,
            'rx_bps': 39374606336.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243019.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39374544896.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243015.25},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49400644392,
           'ierrors': 0,
           'ipackets': 32543247,
           'obytes': 49400519916,
           'oerrors': 0,
           'opackets': 32543166,
           'rx_bps': 39374606336.0,
           'rx_bps_L1': 39893489456.0,
           'rx_pps': 3243019.5,
           'rx_util': 99.73372364000001,
           'tx_bps': 39374544896.0,
           'tx_bps_L1': 39893427336.0,
           'tx_pps': 3243015.25,
           'tx_util': 99.73356834}}
03/03/2021 17:38:18                         pktgen: {'ibytes': 49400644392,
 'ierrors': 0,
 'ipackets': 32543247,
 'obytes': 49400519916,
 'oerrors': 0,
 'opackets': 32543166,
 'rx_bps': 39374606336.0,
 'rx_bps_L1': 39893489456.0,
 'rx_pps': 3243019.5,
 'rx_util': 99.73372364000001,
 'tx_bps': 39374544896.0,
 'tx_bps_L1': 39893427336.0,
 'tx_pps': 3243015.25,
 'tx_util': 99.73356834}
03/03/2021 17:38:18                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39374544896.000000, tx_pps: 3243015.250000 
03/03/2021 17:38:18                         pktgen: {'ibytes': 49400644392,
 'ierrors': 0,
 'ipackets': 32543247,
 'obytes': 49400519916,
 'oerrors': 0,
 'opackets': 32543166,
 'rx_bps': 39374606336.0,
 'rx_bps_L1': 39893489456.0,
 'rx_pps': 3243019.5,
 'rx_util': 99.73372364000001,
 'tx_bps': 39374544896.0,
 'tx_bps_L1': 39893427336.0,
 'tx_pps': 3243015.25,
 'tx_util': 99.73356834}
03/03/2021 17:38:18                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39374606336.000000, rx_pps: 3243019.500000
03/03/2021 17:38:18                         pktgen: throughput: pps_rx 3243019.500000, bps_rx 39374606336.000000
03/03/2021 17:38:18                         pktgen: traffic completed. 
03/03/2021 17:38:20 TestPVPMultiPathVhostPerformance: result of all framesize result
03/03/2021 17:38:20 TestPVPMultiPathVhostPerformance: 
+-------+-------------------------+--------+------------+
| Frame |      Mode/RXD-TXD       |  Mpps  | % linerate |
+=======+=========================+========+============+
| 64    | virtio_1.1_mergeable on | 12.151 | 20.414     |
+-------+-------------------------+--------+------------+
| 128   | virtio_1.1_mergeable on | 10.917 | 32.315     |
+-------+-------------------------+--------+------------+
| 256   | virtio_1.1_mergeable on | 9.583  | 52.896     |
+-------+-------------------------+--------+------------+
| 512   | virtio_1.1_mergeable on | 7.335  | 78.044     |
+-------+-------------------------+--------+------------+
| 1024  | virtio_1.1_mergeable on | 4.797  | 100.167    |
+-------+-------------------------+--------+------------+
| 1518  | virtio_1.1_mergeable on | 3.243  | 99.755     |
+-------+-------------------------+--------+------------+
03/03/2021 17:38:20 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps     | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+=============+============+=====================+=======================+
| 64    | 1024         | 12.151 Mpps | 20.414%    | 11.137 Mpps         | 1.014 Mpps            |
+-------+--------------+-------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.243 Mpps  | 99.755%    | 3.256 Mpps          | -0.013 Mpps           |
+-------+--------------+-------------+------------+---------------------+-----------------------+
03/03/2021 17:38:20 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.556850
03/03/2021 17:38:20 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 1.014000
03/03/2021 17:38:20 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162800
03/03/2021 17:38:20 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.013000
03/03/2021 17:38:20 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_mergeable Result PASSED:
03/03/2021 17:38:20             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
03/03/2021 17:38:21 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_normal Begin
03/03/2021 17:38:21             dut.10.240.183.220: 
03/03/2021 17:38:21                         tester: 
03/03/2021 17:38:21             dut.10.240.183.220: rm -rf ./vhost.out
03/03/2021 17:38:22             dut.10.240.183.220: 
03/03/2021 17:38:22             dut.10.240.183.220: rm -rf ./vhost-net*
03/03/2021 17:38:22             dut.10.240.183.220: 
03/03/2021 17:38:22             dut.10.240.183.220: killall -s INT dpdk-testpmd 
03/03/2021 17:38:22             dut.10.240.183.220: dpdk-testpmd: no process found
03/03/2021 17:38:22             dut.10.240.183.220: killall -s INT qemu-system-x86_64
03/03/2021 17:38:22             dut.10.240.183.220: qemu-system-x86_64: no process found
03/03/2021 17:38:32             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
03/03/2021 17:38:33             dut.10.240.183.220: 1048576
03/03/2021 17:38:44 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
03/03/2021 17:38:44                         tester: ls -d /tmp
03/03/2021 17:38:44                         tester: /tmp
03/03/2021 17:38:44                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:38:46                         pktgen: test port 0 map gen port 0
03/03/2021 17:38:46                         pktgen: test port 0 map gen port 0
03/03/2021 17:38:46                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:38:46                         pktgen: trex port <0> not support flow control
03/03/2021 17:38:46                         pktgen: check the trex port link status
03/03/2021 17:38:46                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:38:46                         pktgen: begin traffic ......
03/03/2021 17:38:46                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:38:56                         pktgen: begin get port statistic ...
03/03/2021 17:38:56                         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}
03/03/2021 17:38:56                         pktgen: {0: {'ibytes': 6935079552,
     'ierrors': 0,
     'ipackets': 108360620,
     'obytes': 17232170816,
     'oerrors': 0,
     'opackets': 269252690,
     'rx_bps': 5532255744.0,
     'rx_bps_L1': 7261086464.000001,
     'rx_pps': 10805192.0,
     'rx_util': 18.15271616,
     'tx_bps': 13777385472.0,
     'tx_bps_L1': 18082820032.0,
     'tx_pps': 26908966.0,
     'tx_util': 45.20705008},
 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.8578917980194092,
            'cpu_util': 92.69502258300781,
            'cpu_util_raw': 99.3125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 137846968,
            'rx_bps': 5532255744.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8245129728.0,
            'rx_pps': 10805192.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13777385472.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26908966.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 6935079552,
           'ierrors': 0,
           'ipackets': 108360620,
           'obytes': 17232170816,
           'oerrors': 0,
           'opackets': 269252690,
           'rx_bps': 5532255744.0,
           'rx_bps_L1': 7261086464.000001,
           'rx_pps': 10805192.0,
           'rx_util': 18.15271616,
           'tx_bps': 13777385472.0,
           'tx_bps_L1': 18082820032.0,
           'tx_pps': 26908966.0,
           'tx_util': 45.20705008}}
03/03/2021 17:38:56                         pktgen: {'ibytes': 6935079552,
 'ierrors': 0,
 'ipackets': 108360620,
 'obytes': 17232170816,
 'oerrors': 0,
 'opackets': 269252690,
 'rx_bps': 5532255744.0,
 'rx_bps_L1': 7261086464.000001,
 'rx_pps': 10805192.0,
 'rx_util': 18.15271616,
 'tx_bps': 13777385472.0,
 'tx_bps_L1': 18082820032.0,
 'tx_pps': 26908966.0,
 'tx_util': 45.20705008}
03/03/2021 17:38:56                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13777385472.000000, tx_pps: 26908966.000000 
03/03/2021 17:38:56                         pktgen: {'ibytes': 6935079552,
 'ierrors': 0,
 'ipackets': 108360620,
 'obytes': 17232170816,
 'oerrors': 0,
 'opackets': 269252690,
 'rx_bps': 5532255744.0,
 'rx_bps_L1': 7261086464.000001,
 'rx_pps': 10805192.0,
 'rx_util': 18.15271616,
 'tx_bps': 13777385472.0,
 'tx_bps_L1': 18082820032.0,
 'tx_pps': 26908966.0,
 'tx_util': 45.20705008}
03/03/2021 17:38:56                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 5532255744.000000, rx_pps: 10805192.000000
03/03/2021 17:38:56                         pktgen: throughput: pps_rx 10805192.000000, bps_rx 5532255744.000000
03/03/2021 17:38:56                         pktgen: traffic completed. 
03/03/2021 17:38:56 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
03/03/2021 17:38:56                         tester: ls -d /tmp
03/03/2021 17:38:56                         tester: /tmp
03/03/2021 17:38:56                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:38:58                         pktgen: test port 0 map gen port 0
03/03/2021 17:38:58                         pktgen: test port 0 map gen port 0
03/03/2021 17:38:58                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:38:58                         pktgen: trex port <0> not support flow control
03/03/2021 17:38:58                         pktgen: check the trex port link status
03/03/2021 17:38:58                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:38:58                         pktgen: begin traffic ......
03/03/2021 17:38:58                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:39:08                         pktgen: begin get port statistic ...
03/03/2021 17:39:08                         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}
03/03/2021 17:39:08                         pktgen: {0: {'ibytes': 12626259072,
     'ierrors': 0,
     'ipackets': 98642659,
     'obytes': 26857942784,
     'oerrors': 0,
     'opackets': 209827701,
     'rx_bps': 10089528320.0,
     'rx_bps_L1': 11666254400.0,
     'rx_pps': 9854538.0,
     'rx_util': 29.165636,
     'tx_bps': 20613591040.0,
     'tx_bps_L1': 23835054719.999996,
     'tx_pps': 20134148.0,
     'tx_util': 59.587636799999984},
 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.688265085220337,
            'cpu_util': 95.84988403320312,
            'cpu_util_raw': 98.9375,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 140008282,
            'rx_bps': 10089528320.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10524063744.0,
            'rx_pps': 9854538.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 20613591040.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 20134148.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 12626259072,
           'ierrors': 0,
           'ipackets': 98642659,
           'obytes': 26857942784,
           'oerrors': 0,
           'opackets': 209827701,
           'rx_bps': 10089528320.0,
           'rx_bps_L1': 11666254400.0,
           'rx_pps': 9854538.0,
           'rx_util': 29.165636,
           'tx_bps': 20613591040.0,
           'tx_bps_L1': 23835054719.999996,
           'tx_pps': 20134148.0,
           'tx_util': 59.587636799999984}}
03/03/2021 17:39:08                         pktgen: {'ibytes': 12626259072,
 'ierrors': 0,
 'ipackets': 98642659,
 'obytes': 26857942784,
 'oerrors': 0,
 'opackets': 209827701,
 'rx_bps': 10089528320.0,
 'rx_bps_L1': 11666254400.0,
 'rx_pps': 9854538.0,
 'rx_util': 29.165636,
 'tx_bps': 20613591040.0,
 'tx_bps_L1': 23835054719.999996,
 'tx_pps': 20134148.0,
 'tx_util': 59.587636799999984}
03/03/2021 17:39:08                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 20613591040.000000, tx_pps: 20134148.000000 
03/03/2021 17:39:08                         pktgen: {'ibytes': 12626259072,
 'ierrors': 0,
 'ipackets': 98642659,
 'obytes': 26857942784,
 'oerrors': 0,
 'opackets': 209827701,
 'rx_bps': 10089528320.0,
 'rx_bps_L1': 11666254400.0,
 'rx_pps': 9854538.0,
 'rx_util': 29.165636,
 'tx_bps': 20613591040.0,
 'tx_bps_L1': 23835054719.999996,
 'tx_pps': 20134148.0,
 'tx_util': 59.587636799999984}
03/03/2021 17:39:08                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 10089528320.000000, rx_pps: 9854538.000000
03/03/2021 17:39:08                         pktgen: throughput: pps_rx 9854538.000000, bps_rx 10089528320.000000
03/03/2021 17:39:08                         pktgen: traffic completed. 
03/03/2021 17:39:08 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
03/03/2021 17:39:08                         tester: ls -d /tmp
03/03/2021 17:39:09                         tester: /tmp
03/03/2021 17:39:09                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:39:11                         pktgen: test port 0 map gen port 0
03/03/2021 17:39:11                         pktgen: test port 0 map gen port 0
03/03/2021 17:39: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:39:11                         pktgen: trex port <0> not support flow control
03/03/2021 17:39:11                         pktgen: check the trex port link status
03/03/2021 17:39: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:39:11                         pktgen: begin traffic ......
03/03/2021 17:39:11                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:39:21                         pktgen: begin get port statistic ...
03/03/2021 17:39: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}
03/03/2021 17:39:21                         pktgen: {0: {'ibytes': 22678574848,
     'ierrors': 0,
     'ipackets': 88588188,
     'obytes': 41124159744,
     'oerrors': 0,
     'opackets': 160641253,
     'rx_bps': 18098153472.0,
     'rx_bps_L1': 19512279872.0,
     'rx_pps': 8838290.0,
     'rx_util': 48.78069968,
     'tx_bps': 29056432128.0,
     'tx_bps_L1': 31326889568.0,
     'tx_pps': 14190359.0,
     'tx_util': 78.31722392},
 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': 5.3899664878845215,
            'cpu_util': 67.38546752929688,
            'cpu_util_raw': 89.6875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 65674761,
            'rx_bps': 18098153472.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10958277632.0,
            'rx_pps': 8838290.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 29056432128.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 14190359.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 22678574848,
           'ierrors': 0,
           'ipackets': 88588188,
           'obytes': 41124159744,
           'oerrors': 0,
           'opackets': 160641253,
           'rx_bps': 18098153472.0,
           'rx_bps_L1': 19512279872.0,
           'rx_pps': 8838290.0,
           'rx_util': 48.78069968,
           'tx_bps': 29056432128.0,
           'tx_bps_L1': 31326889568.0,
           'tx_pps': 14190359.0,
           'tx_util': 78.31722392}}
03/03/2021 17:39:21                         pktgen: {'ibytes': 22678574848,
 'ierrors': 0,
 'ipackets': 88588188,
 'obytes': 41124159744,
 'oerrors': 0,
 'opackets': 160641253,
 'rx_bps': 18098153472.0,
 'rx_bps_L1': 19512279872.0,
 'rx_pps': 8838290.0,
 'rx_util': 48.78069968,
 'tx_bps': 29056432128.0,
 'tx_bps_L1': 31326889568.0,
 'tx_pps': 14190359.0,
 'tx_util': 78.31722392}
03/03/2021 17:39:21                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 29056432128.000000, tx_pps: 14190359.000000 
03/03/2021 17:39:21                         pktgen: {'ibytes': 22678574848,
 'ierrors': 0,
 'ipackets': 88588188,
 'obytes': 41124159744,
 'oerrors': 0,
 'opackets': 160641253,
 'rx_bps': 18098153472.0,
 'rx_bps_L1': 19512279872.0,
 'rx_pps': 8838290.0,
 'rx_util': 48.78069968,
 'tx_bps': 29056432128.0,
 'tx_bps_L1': 31326889568.0,
 'tx_pps': 14190359.0,
 'tx_util': 78.31722392}
03/03/2021 17:39:21                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 18098153472.000000, rx_pps: 8838290.000000
03/03/2021 17:39:21                         pktgen: throughput: pps_rx 8838290.000000, bps_rx 18098153472.000000
03/03/2021 17:39:21                         pktgen: traffic completed. 
03/03/2021 17:39:21 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
03/03/2021 17:39:21                         tester: ls -d /tmp
03/03/2021 17:39:21                         tester: /tmp
03/03/2021 17:39:21                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:39:23                         pktgen: test port 0 map gen port 0
03/03/2021 17:39:23                         pktgen: test port 0 map gen port 0
03/03/2021 17:39:23                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:39:23                         pktgen: trex port <0> not support flow control
03/03/2021 17:39:23                         pktgen: check the trex port link status
03/03/2021 17:39:23                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:39:23                         pktgen: begin traffic ......
03/03/2021 17:39:23                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:39:33                         pktgen: begin get port statistic ...
03/03/2021 17:39:33                         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}
03/03/2021 17:39:33                         pktgen: {0: {'ibytes': 35074630144,
     'ierrors': 0,
     'ipackets': 68505144,
     'obytes': 48163110912,
     'oerrors': 0,
     'opackets': 94068584,
     'rx_bps': 27956625408.0,
     'rx_bps_L1': 29048862688.0,
     'rx_pps': 6826483.0,
     'rx_util': 72.62215671999999,
     'tx_bps': 38385647616.0,
     'tx_bps_L1': 39885378496.0,
     'tx_pps': 9373318.0,
     'tx_util': 99.71344624},
 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.182184219360352,
            'cpu_util': 58.64211654663086,
            'cpu_util_raw': 61.1875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 81447326,
            'rx_bps': 27956625408.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10429023232.0,
            'rx_pps': 6826483.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38385647616.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9373318.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 35074630144,
           'ierrors': 0,
           'ipackets': 68505144,
           'obytes': 48163110912,
           'oerrors': 0,
           'opackets': 94068584,
           'rx_bps': 27956625408.0,
           'rx_bps_L1': 29048862688.0,
           'rx_pps': 6826483.0,
           'rx_util': 72.62215671999999,
           'tx_bps': 38385647616.0,
           'tx_bps_L1': 39885378496.0,
           'tx_pps': 9373318.0,
           'tx_util': 99.71344624}}
03/03/2021 17:39:33                         pktgen: {'ibytes': 35074630144,
 'ierrors': 0,
 'ipackets': 68505144,
 'obytes': 48163110912,
 'oerrors': 0,
 'opackets': 94068584,
 'rx_bps': 27956625408.0,
 'rx_bps_L1': 29048862688.0,
 'rx_pps': 6826483.0,
 'rx_util': 72.62215671999999,
 'tx_bps': 38385647616.0,
 'tx_bps_L1': 39885378496.0,
 'tx_pps': 9373318.0,
 'tx_util': 99.71344624}
03/03/2021 17:39:33                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38385647616.000000, tx_pps: 9373318.000000 
03/03/2021 17:39:33                         pktgen: {'ibytes': 35074630144,
 'ierrors': 0,
 'ipackets': 68505144,
 'obytes': 48163110912,
 'oerrors': 0,
 'opackets': 94068584,
 'rx_bps': 27956625408.0,
 'rx_bps_L1': 29048862688.0,
 'rx_pps': 6826483.0,
 'rx_util': 72.62215671999999,
 'tx_bps': 38385647616.0,
 'tx_bps_L1': 39885378496.0,
 'tx_pps': 9373318.0,
 'tx_util': 99.71344624}
03/03/2021 17:39:33                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 27956625408.000000, rx_pps: 6826483.000000
03/03/2021 17:39:33                         pktgen: throughput: pps_rx 6826483.000000, bps_rx 27956625408.000000
03/03/2021 17:39:33                         pktgen: traffic completed. 
03/03/2021 17:39:33 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
03/03/2021 17:39:33                         tester: ls -d /tmp
03/03/2021 17:39:33                         tester: /tmp
03/03/2021 17:39:33                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:39:35                         pktgen: test port 0 map gen port 0
03/03/2021 17:39:35                         pktgen: test port 0 map gen port 0
03/03/2021 17:39:35                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:39:35                         pktgen: trex port <0> not support flow control
03/03/2021 17:39:35                         pktgen: check the trex port link status
03/03/2021 17:39:35                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:39:35                         pktgen: begin traffic ......
03/03/2021 17:39:35                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:39:45                         pktgen: begin get port statistic ...
03/03/2021 17:39:45                         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}
03/03/2021 17:39:45                         pktgen: {0: {'ibytes': 49093722112,
     'ierrors': 0,
     'ipackets': 47943092,
     'obytes': 49093596160,
     'oerrors': 0,
     'opackets': 47942969,
     'rx_bps': 39170228224.0,
     'rx_bps_L1': 39935541024.00001,
     'rx_pps': 4783205.0,
     'rx_util': 99.83885256000002,
     'tx_bps': 39175376896.0,
     'tx_bps_L1': 39940890656.0,
     'tx_pps': 4784461.0,
     'tx_util': 99.85222664},
 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': 17.416337966918945,
            'cpu_util': 28.116830825805664,
            'cpu_util_raw': 28.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 35883198,
            'rx_bps': 39170228224.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4783205.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39175376896.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4784461.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49093722112,
           'ierrors': 0,
           'ipackets': 47943092,
           'obytes': 49093596160,
           'oerrors': 0,
           'opackets': 47942969,
           'rx_bps': 39170228224.0,
           'rx_bps_L1': 39935541024.00001,
           'rx_pps': 4783205.0,
           'rx_util': 99.83885256000002,
           'tx_bps': 39175376896.0,
           'tx_bps_L1': 39940890656.0,
           'tx_pps': 4784461.0,
           'tx_util': 99.85222664}}
03/03/2021 17:39:45                         pktgen: {'ibytes': 49093722112,
 'ierrors': 0,
 'ipackets': 47943092,
 'obytes': 49093596160,
 'oerrors': 0,
 'opackets': 47942969,
 'rx_bps': 39170228224.0,
 'rx_bps_L1': 39935541024.00001,
 'rx_pps': 4783205.0,
 'rx_util': 99.83885256000002,
 'tx_bps': 39175376896.0,
 'tx_bps_L1': 39940890656.0,
 'tx_pps': 4784461.0,
 'tx_util': 99.85222664}
03/03/2021 17:39:45                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39175376896.000000, tx_pps: 4784461.000000 
03/03/2021 17:39:45                         pktgen: {'ibytes': 49093722112,
 'ierrors': 0,
 'ipackets': 47943092,
 'obytes': 49093596160,
 'oerrors': 0,
 'opackets': 47942969,
 'rx_bps': 39170228224.0,
 'rx_bps_L1': 39935541024.00001,
 'rx_pps': 4783205.0,
 'rx_util': 99.83885256000002,
 'tx_bps': 39175376896.0,
 'tx_bps_L1': 39940890656.0,
 'tx_pps': 4784461.0,
 'tx_util': 99.85222664}
03/03/2021 17:39:45                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39170228224.000000, rx_pps: 4783205.000000
03/03/2021 17:39:45                         pktgen: throughput: pps_rx 4783205.000000, bps_rx 39170228224.000000
03/03/2021 17:39:45                         pktgen: traffic completed. 
03/03/2021 17:39:45 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
03/03/2021 17:39:45                         tester: ls -d /tmp
03/03/2021 17:39:45                         tester: /tmp
03/03/2021 17:39:45                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:39:47                         pktgen: test port 0 map gen port 0
03/03/2021 17:39:47                         pktgen: test port 0 map gen port 0
03/03/2021 17:39: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:39:47                         pktgen: trex port <0> not support flow control
03/03/2021 17:39:47                         pktgen: check the trex port link status
03/03/2021 17:39: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:39:47                         pktgen: begin traffic ......
03/03/2021 17:39:47                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:39:57                         pktgen: begin get port statistic ...
03/03/2021 17:39: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}
03/03/2021 17:39:57                         pktgen: {0: {'ibytes': 49401086130,
     'ierrors': 0,
     'ipackets': 32543538,
     'obytes': 49400957100,
     'oerrors': 0,
     'opackets': 32543453,
     'rx_bps': 39367720960.0,
     'rx_bps_L1': 39886519240.0,
     'rx_pps': 3242489.25,
     'rx_util': 99.7162981,
     'tx_bps': 39367720960.0,
     'tx_bps_L1': 39886519199.99999,
     'tx_pps': 3242489.0,
     'tx_util': 99.71629799999998},
 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.89593505859375,
            'cpu_util': 14.101829528808594,
            'cpu_util_raw': 13.875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 17331386,
            'rx_bps': 39367720960.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3242489.25,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39367720960.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3242489.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49401086130,
           'ierrors': 0,
           'ipackets': 32543538,
           'obytes': 49400957100,
           'oerrors': 0,
           'opackets': 32543453,
           'rx_bps': 39367720960.0,
           'rx_bps_L1': 39886519240.0,
           'rx_pps': 3242489.25,
           'rx_util': 99.7162981,
           'tx_bps': 39367720960.0,
           'tx_bps_L1': 39886519199.99999,
           'tx_pps': 3242489.0,
           'tx_util': 99.71629799999998}}
03/03/2021 17:39:57                         pktgen: {'ibytes': 49401086130,
 'ierrors': 0,
 'ipackets': 32543538,
 'obytes': 49400957100,
 'oerrors': 0,
 'opackets': 32543453,
 'rx_bps': 39367720960.0,
 'rx_bps_L1': 39886519240.0,
 'rx_pps': 3242489.25,
 'rx_util': 99.7162981,
 'tx_bps': 39367720960.0,
 'tx_bps_L1': 39886519199.99999,
 'tx_pps': 3242489.0,
 'tx_util': 99.71629799999998}
03/03/2021 17:39:57                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39367720960.000000, tx_pps: 3242489.000000 
03/03/2021 17:39:57                         pktgen: {'ibytes': 49401086130,
 'ierrors': 0,
 'ipackets': 32543538,
 'obytes': 49400957100,
 'oerrors': 0,
 'opackets': 32543453,
 'rx_bps': 39367720960.0,
 'rx_bps_L1': 39886519240.0,
 'rx_pps': 3242489.25,
 'rx_util': 99.7162981,
 'tx_bps': 39367720960.0,
 'tx_bps_L1': 39886519199.99999,
 'tx_pps': 3242489.0,
 'tx_util': 99.71629799999998}
03/03/2021 17:39:57                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39367720960.000000, rx_pps: 3242489.250000
03/03/2021 17:39:57                         pktgen: throughput: pps_rx 3242489.250000, bps_rx 39367720960.000000
03/03/2021 17:39:57                         pktgen: traffic completed. 
03/03/2021 17:39:59 TestPVPMultiPathVhostPerformance: result of all framesize result
03/03/2021 17:39:59 TestPVPMultiPathVhostPerformance: 
+-------+-------------------+--------+------------+
| Frame |   Mode/RXD-TXD    |  Mpps  | % linerate |
+=======+===================+========+============+
| 64    | virtio_1.1 normal | 10.805 | 18.153     |
+-------+-------------------+--------+------------+
| 128   | virtio_1.1 normal | 9.855  | 29.169     |
+-------+-------------------+--------+------------+
| 256   | virtio_1.1 normal | 8.838  | 48.787     |
+-------+-------------------+--------+------------+
| 512   | virtio_1.1 normal | 6.826  | 72.634     |
+-------+-------------------+--------+------------+
| 1024  | virtio_1.1 normal | 4.783  | 99.873     |
+-------+-------------------+--------+------------+
| 1518  | virtio_1.1 normal | 3.242  | 99.739     |
+-------+-------------------+--------+------------+
03/03/2021 17:39:59 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps     | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+=============+============+=====================+=======================+
| 64    | 1024         | 10.805 Mpps | 18.153%    | 11.100 Mpps         | -0.295 Mpps           |
+-------+--------------+-------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.242 Mpps  | 99.739%    | 3.248 Mpps          | -0.006 Mpps           |
+-------+--------------+-------------+------------+---------------------+-----------------------+
03/03/2021 17:39:59 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.555000
03/03/2021 17:39:59 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.295000
03/03/2021 17:39:59 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162400
03/03/2021 17:39:59 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.006000
03/03/2021 17:39:59 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_normal Result PASSED:
03/03/2021 17:39:59             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
03/03/2021 17:40:00 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_vectorized Begin
03/03/2021 17:40:00             dut.10.240.183.220: 
03/03/2021 17:40:00                         tester: 
03/03/2021 17:40:00             dut.10.240.183.220: rm -rf ./vhost.out
03/03/2021 17:40:01             dut.10.240.183.220: 
03/03/2021 17:40:01             dut.10.240.183.220: rm -rf ./vhost-net*
03/03/2021 17:40:01             dut.10.240.183.220: 
03/03/2021 17:40:01             dut.10.240.183.220: killall -s INT dpdk-testpmd 
03/03/2021 17:40:01             dut.10.240.183.220: dpdk-testpmd: no process found
03/03/2021 17:40:01             dut.10.240.183.220: killall -s INT qemu-system-x86_64
03/03/2021 17:40:01             dut.10.240.183.220: qemu-system-x86_64: no process found
03/03/2021 17:40:11             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
03/03/2021 17:40:12             dut.10.240.183.220: 1048576
03/03/2021 17:40:23 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 64, rxd/txd: 1024
03/03/2021 17:40:23                         tester: ls -d /tmp
03/03/2021 17:40:23                         tester: /tmp
03/03/2021 17:40:23                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:40:25                         pktgen: test port 0 map gen port 0
03/03/2021 17:40:25                         pktgen: test port 0 map gen port 0
03/03/2021 17:40:25                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:40:25                         pktgen: trex port <0> not support flow control
03/03/2021 17:40:25                         pktgen: check the trex port link status
03/03/2021 17:40:25                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:40:25                         pktgen: begin traffic ......
03/03/2021 17:40:25                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:40:35                         pktgen: begin get port statistic ...
03/03/2021 17:40:35                         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}
03/03/2021 17:40:35                         pktgen: {0: {'ibytes': 8149129216,
     'ierrors': 0,
     'ipackets': 127330163,
     'obytes': 17302668928,
     'oerrors': 0,
     'opackets': 270354228,
     'rx_bps': 6495123456.0,
     'rx_bps_L1': 8524849856.0,
     'rx_pps': 12685790.0,
     'rx_util': 21.31212464,
     'tx_bps': 13804359680.0,
     'tx_bps_L1': 18118222720.0,
     'tx_pps': 26961644.0,
     'tx_util': 45.2955568},
 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.8679444789886475,
            'cpu_util': 92.37667083740234,
            'cpu_util_raw': 99.3125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 137729157,
            'rx_bps': 6495123456.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 7309235712.0,
            'rx_pps': 12685790.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13804359680.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26961644.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 8149129216,
           'ierrors': 0,
           'ipackets': 127330163,
           'obytes': 17302668928,
           'oerrors': 0,
           'opackets': 270354228,
           'rx_bps': 6495123456.0,
           'rx_bps_L1': 8524849856.0,
           'rx_pps': 12685790.0,
           'rx_util': 21.31212464,
           'tx_bps': 13804359680.0,
           'tx_bps_L1': 18118222720.0,
           'tx_pps': 26961644.0,
           'tx_util': 45.2955568}}
03/03/2021 17:40:35                         pktgen: {'ibytes': 8149129216,
 'ierrors': 0,
 'ipackets': 127330163,
 'obytes': 17302668928,
 'oerrors': 0,
 'opackets': 270354228,
 'rx_bps': 6495123456.0,
 'rx_bps_L1': 8524849856.0,
 'rx_pps': 12685790.0,
 'rx_util': 21.31212464,
 'tx_bps': 13804359680.0,
 'tx_bps_L1': 18118222720.0,
 'tx_pps': 26961644.0,
 'tx_util': 45.2955568}
03/03/2021 17:40:35                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13804359680.000000, tx_pps: 26961644.000000 
03/03/2021 17:40:35                         pktgen: {'ibytes': 8149129216,
 'ierrors': 0,
 'ipackets': 127330163,
 'obytes': 17302668928,
 'oerrors': 0,
 'opackets': 270354228,
 'rx_bps': 6495123456.0,
 'rx_bps_L1': 8524849856.0,
 'rx_pps': 12685790.0,
 'rx_util': 21.31212464,
 'tx_bps': 13804359680.0,
 'tx_bps_L1': 18118222720.0,
 'tx_pps': 26961644.0,
 'tx_util': 45.2955568}
03/03/2021 17:40:35                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 6495123456.000000, rx_pps: 12685790.000000
03/03/2021 17:40:35                         pktgen: throughput: pps_rx 12685790.000000, bps_rx 6495123456.000000
03/03/2021 17:40:35                         pktgen: traffic completed. 
03/03/2021 17:40:35 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 128, rxd/txd: 1024
03/03/2021 17:40:35                         tester: ls -d /tmp
03/03/2021 17:40:35                         tester: /tmp
03/03/2021 17:40:35                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:40:37                         pktgen: test port 0 map gen port 0
03/03/2021 17:40:37                         pktgen: test port 0 map gen port 0
03/03/2021 17:40: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:40:37                         pktgen: trex port <0> not support flow control
03/03/2021 17:40:37                         pktgen: check the trex port link status
03/03/2021 17:40: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:40:37                         pktgen: begin traffic ......
03/03/2021 17:40:37                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:40:47                         pktgen: begin get port statistic ...
03/03/2021 17:40: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}
03/03/2021 17:40:47                         pktgen: {0: {'ibytes': 14609268992,
     'ierrors': 0,
     'ipackets': 114134918,
     'obytes': 26805754880,
     'oerrors': 0,
     'opackets': 209419978,
     'rx_bps': 11643979776.0,
     'rx_bps_L1': 13463668096.0,
     'rx_pps': 11373052.0,
     'rx_util': 33.65917024,
     'tx_bps': 20809459712.0,
     'tx_bps_L1': 24061610752.0,
     'tx_pps': 20325944.0,
     'tx_util': 60.15402688},
 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.717738628387451,
            'cpu_util': 95.7112808227539,
            'cpu_util_raw': 99.125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 139956628,
            'rx_bps': 11643979776.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9165479936.0,
            'rx_pps': 11373052.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 20809459712.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 20325944.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 14609268992,
           'ierrors': 0,
           'ipackets': 114134918,
           'obytes': 26805754880,
           'oerrors': 0,
           'opackets': 209419978,
           'rx_bps': 11643979776.0,
           'rx_bps_L1': 13463668096.0,
           'rx_pps': 11373052.0,
           'rx_util': 33.65917024,
           'tx_bps': 20809459712.0,
           'tx_bps_L1': 24061610752.0,
           'tx_pps': 20325944.0,
           'tx_util': 60.15402688}}
03/03/2021 17:40:47                         pktgen: {'ibytes': 14609268992,
 'ierrors': 0,
 'ipackets': 114134918,
 'obytes': 26805754880,
 'oerrors': 0,
 'opackets': 209419978,
 'rx_bps': 11643979776.0,
 'rx_bps_L1': 13463668096.0,
 'rx_pps': 11373052.0,
 'rx_util': 33.65917024,
 'tx_bps': 20809459712.0,
 'tx_bps_L1': 24061610752.0,
 'tx_pps': 20325944.0,
 'tx_util': 60.15402688}
03/03/2021 17:40:47                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 20809459712.000000, tx_pps: 20325944.000000 
03/03/2021 17:40:47                         pktgen: {'ibytes': 14609268992,
 'ierrors': 0,
 'ipackets': 114134918,
 'obytes': 26805754880,
 'oerrors': 0,
 'opackets': 209419978,
 'rx_bps': 11643979776.0,
 'rx_bps_L1': 13463668096.0,
 'rx_pps': 11373052.0,
 'rx_util': 33.65917024,
 'tx_bps': 20809459712.0,
 'tx_bps_L1': 24061610752.0,
 'tx_pps': 20325944.0,
 'tx_util': 60.15402688}
03/03/2021 17:40:47                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 11643979776.000000, rx_pps: 11373052.000000
03/03/2021 17:40:47                         pktgen: throughput: pps_rx 11373052.000000, bps_rx 11643979776.000000
03/03/2021 17:40:47                         pktgen: traffic completed. 
03/03/2021 17:40:47 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 256, rxd/txd: 1024
03/03/2021 17:40:47                         tester: ls -d /tmp
03/03/2021 17:40:48                         tester: /tmp
03/03/2021 17:40:48                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:40:49                         pktgen: test port 0 map gen port 0
03/03/2021 17:40:49                         pktgen: test port 0 map gen port 0
03/03/2021 17:40:50                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:40:50                         pktgen: trex port <0> not support flow control
03/03/2021 17:40:50                         pktgen: check the trex port link status
03/03/2021 17:40:50                         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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:40:50                         pktgen: begin traffic ......
03/03/2021 17:40:50                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:41:00                         pktgen: begin get port statistic ...
03/03/2021 17:41:00                         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}
03/03/2021 17:41:00                         pktgen: {0: {'ibytes': 25772803840,
     'ierrors': 0,
     'ipackets': 100675015,
     'obytes': 45725228288,
     'oerrors': 0,
     'opackets': 178614188,
     'rx_bps': 20631547904.0,
     'rx_bps_L1': 22243661504.0,
     'rx_pps': 10075710.0,
     'rx_util': 55.60915376,
     'tx_bps': 36047896576.0,
     'tx_bps_L1': 38864624896.0,
     'tx_pps': 17604552.0,
     'tx_util': 97.16156224},
 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': 29.39849853515625,
            'cpu_util': 15.327269554138184,
            'cpu_util_raw': 14.875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 9317742,
            'rx_bps': 20631547904.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 15416349696.0,
            'rx_pps': 10075710.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 36047896576.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 17604552.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 25772803840,
           'ierrors': 0,
           'ipackets': 100675015,
           'obytes': 45725228288,
           'oerrors': 0,
           'opackets': 178614188,
           'rx_bps': 20631547904.0,
           'rx_bps_L1': 22243661504.0,
           'rx_pps': 10075710.0,
           'rx_util': 55.60915376,
           'tx_bps': 36047896576.0,
           'tx_bps_L1': 38864624896.0,
           'tx_pps': 17604552.0,
           'tx_util': 97.16156224}}
03/03/2021 17:41:00                         pktgen: {'ibytes': 25772803840,
 'ierrors': 0,
 'ipackets': 100675015,
 'obytes': 45725228288,
 'oerrors': 0,
 'opackets': 178614188,
 'rx_bps': 20631547904.0,
 'rx_bps_L1': 22243661504.0,
 'rx_pps': 10075710.0,
 'rx_util': 55.60915376,
 'tx_bps': 36047896576.0,
 'tx_bps_L1': 38864624896.0,
 'tx_pps': 17604552.0,
 'tx_util': 97.16156224}
03/03/2021 17:41:00                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 36047896576.000000, tx_pps: 17604552.000000 
03/03/2021 17:41:00                         pktgen: {'ibytes': 25772803840,
 'ierrors': 0,
 'ipackets': 100675015,
 'obytes': 45725228288,
 'oerrors': 0,
 'opackets': 178614188,
 'rx_bps': 20631547904.0,
 'rx_bps_L1': 22243661504.0,
 'rx_pps': 10075710.0,
 'rx_util': 55.60915376,
 'tx_bps': 36047896576.0,
 'tx_bps_L1': 38864624896.0,
 'tx_pps': 17604552.0,
 'tx_util': 97.16156224}
03/03/2021 17:41:00                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 20631547904.000000, rx_pps: 10075710.000000
03/03/2021 17:41:00                         pktgen: throughput: pps_rx 10075710.000000, bps_rx 20631547904.000000
03/03/2021 17:41:00                         pktgen: traffic completed. 
03/03/2021 17:41:00 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 512, rxd/txd: 1024
03/03/2021 17:41:00                         tester: ls -d /tmp
03/03/2021 17:41:00                         tester: /tmp
03/03/2021 17:41:00                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:41:02                         pktgen: test port 0 map gen port 0
03/03/2021 17:41:02                         pktgen: test port 0 map gen port 0
03/03/2021 17:41: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:41:02                         pktgen: trex port <0> not support flow control
03/03/2021 17:41:02                         pktgen: check the trex port link status
03/03/2021 17:41: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:41:02                         pktgen: begin traffic ......
03/03/2021 17:41:02                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:41:12                         pktgen: begin get port statistic ...
03/03/2021 17:41:12                         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}
03/03/2021 17:41:12                         pktgen: {0: {'ibytes': 39610712064,
     'ierrors': 0,
     'ipackets': 77364681,
     'obytes': 48170952704,
     'oerrors': 0,
     'opackets': 94083900,
     'rx_bps': 31804872704.0,
     'rx_bps_L1': 33047481664.0,
     'rx_pps': 7766306.0,
     'rx_util': 82.61870416000001,
     'tx_bps': 38573203456.0,
     'tx_bps_L1': 40080372576.00001,
     'tx_pps': 9419807.0,
     'tx_util': 100.20093144000002},
 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.53487777709961,
            'cpu_util': 56.493492126464844,
            'cpu_util_raw': 60.875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 81652099,
            'rx_bps': 31804872704.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 6768330240.0,
            'rx_pps': 7766306.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38573203456.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9419807.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 39610712064,
           'ierrors': 0,
           'ipackets': 77364681,
           'obytes': 48170952704,
           'oerrors': 0,
           'opackets': 94083900,
           'rx_bps': 31804872704.0,
           'rx_bps_L1': 33047481664.0,
           'rx_pps': 7766306.0,
           'rx_util': 82.61870416000001,
           'tx_bps': 38573203456.0,
           'tx_bps_L1': 40080372576.00001,
           'tx_pps': 9419807.0,
           'tx_util': 100.20093144000002}}
03/03/2021 17:41:12                         pktgen: {'ibytes': 39610712064,
 'ierrors': 0,
 'ipackets': 77364681,
 'obytes': 48170952704,
 'oerrors': 0,
 'opackets': 94083900,
 'rx_bps': 31804872704.0,
 'rx_bps_L1': 33047481664.0,
 'rx_pps': 7766306.0,
 'rx_util': 82.61870416000001,
 'tx_bps': 38573203456.0,
 'tx_bps_L1': 40080372576.00001,
 'tx_pps': 9419807.0,
 'tx_util': 100.20093144000002}
03/03/2021 17:41:12                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38573203456.000000, tx_pps: 9419807.000000 
03/03/2021 17:41:12                         pktgen: {'ibytes': 39610712064,
 'ierrors': 0,
 'ipackets': 77364681,
 'obytes': 48170952704,
 'oerrors': 0,
 'opackets': 94083900,
 'rx_bps': 31804872704.0,
 'rx_bps_L1': 33047481664.0,
 'rx_pps': 7766306.0,
 'rx_util': 82.61870416000001,
 'tx_bps': 38573203456.0,
 'tx_bps_L1': 40080372576.00001,
 'tx_pps': 9419807.0,
 'tx_util': 100.20093144000002}
03/03/2021 17:41:12                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 31804872704.000000, rx_pps: 7766306.000000
03/03/2021 17:41:12                         pktgen: throughput: pps_rx 7766306.000000, bps_rx 31804872704.000000
03/03/2021 17:41:12                         pktgen: traffic completed. 
03/03/2021 17:41:12 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1024, rxd/txd: 1024
03/03/2021 17:41:12                         tester: ls -d /tmp
03/03/2021 17:41:12                         tester: /tmp
03/03/2021 17:41:12                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:41:14                         pktgen: test port 0 map gen port 0
03/03/2021 17:41:14                         pktgen: test port 0 map gen port 0
03/03/2021 17:41: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:41:14                         pktgen: trex port <0> not support flow control
03/03/2021 17:41:14                         pktgen: check the trex port link status
03/03/2021 17:41: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:41:14                         pktgen: begin traffic ......
03/03/2021 17:41:14                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:41:24                         pktgen: begin get port statistic ...
03/03/2021 17:41: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}
03/03/2021 17:41:24                         pktgen: {0: {'ibytes': 49092483072,
     'ierrors': 0,
     'ipackets': 47941883,
     'obytes': 49092355072,
     'oerrors': 0,
     'opackets': 47941757,
     'rx_bps': 39204585472.0,
     'rx_bps_L1': 39970471072.0,
     'rx_pps': 4786785.0,
     'rx_util': 99.92617768,
     'tx_bps': 39206506496.0,
     'tx_bps_L1': 39972466016.0,
     'tx_pps': 4787247.0,
     'tx_util': 99.93116504},
 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': 17.244050979614258,
            'cpu_util': 28.42031478881836,
            'cpu_util_raw': 29.125,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 35669719,
            'rx_bps': 39204585472.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 4786785.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39206506496.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4787247.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49092483072,
           'ierrors': 0,
           'ipackets': 47941883,
           'obytes': 49092355072,
           'oerrors': 0,
           'opackets': 47941757,
           'rx_bps': 39204585472.0,
           'rx_bps_L1': 39970471072.0,
           'rx_pps': 4786785.0,
           'rx_util': 99.92617768,
           'tx_bps': 39206506496.0,
           'tx_bps_L1': 39972466016.0,
           'tx_pps': 4787247.0,
           'tx_util': 99.93116504}}
03/03/2021 17:41:24                         pktgen: {'ibytes': 49092483072,
 'ierrors': 0,
 'ipackets': 47941883,
 'obytes': 49092355072,
 'oerrors': 0,
 'opackets': 47941757,
 'rx_bps': 39204585472.0,
 'rx_bps_L1': 39970471072.0,
 'rx_pps': 4786785.0,
 'rx_util': 99.92617768,
 'tx_bps': 39206506496.0,
 'tx_bps_L1': 39972466016.0,
 'tx_pps': 4787247.0,
 'tx_util': 99.93116504}
03/03/2021 17:41:24                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39206506496.000000, tx_pps: 4787247.000000 
03/03/2021 17:41:24                         pktgen: {'ibytes': 49092483072,
 'ierrors': 0,
 'ipackets': 47941883,
 'obytes': 49092355072,
 'oerrors': 0,
 'opackets': 47941757,
 'rx_bps': 39204585472.0,
 'rx_bps_L1': 39970471072.0,
 'rx_pps': 4786785.0,
 'rx_util': 99.92617768,
 'tx_bps': 39206506496.0,
 'tx_bps_L1': 39972466016.0,
 'tx_pps': 4787247.0,
 'tx_util': 99.93116504}
03/03/2021 17:41:24                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39204585472.000000, rx_pps: 4786785.000000
03/03/2021 17:41:24                         pktgen: throughput: pps_rx 4786785.000000, bps_rx 39204585472.000000
03/03/2021 17:41:24                         pktgen: traffic completed. 
03/03/2021 17:41:24 TestPVPMultiPathVhostPerformance: Test running at parameters: framesize: 1518, rxd/txd: 1024
03/03/2021 17:41:24                         tester: ls -d /tmp
03/03/2021 17:41:24                         tester: /tmp
03/03/2021 17:41:24                         tester: scp -v /home/lingwei/dts_0302/output/tmp/pcap/multi_path.pcap root@10.240.183.217:/tmp/multi_path.pcap
03/03/2021 17:41:26                         pktgen: test port 0 map gen port 0
03/03/2021 17:41:26                         pktgen: test port 0 map gen port 0
03/03/2021 17:41: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:41:26                         pktgen: trex port <0> not support flow control
03/03/2021 17:41:26                         pktgen: check the trex port link status
03/03/2021 17:41: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': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 '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': 1,
 'pci_addr': '0000:82: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:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
03/03/2021 17:41:26                         pktgen: begin traffic ......
03/03/2021 17:41:26                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
03/03/2021 17:41:36                         pktgen: begin get port statistic ...
03/03/2021 17:41: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}
03/03/2021 17:41:36                         pktgen: {0: {'ibytes': 49402359732,
     'ierrors': 0,
     'ipackets': 32544378,
     'obytes': 49402230702,
     'oerrors': 0,
     'opackets': 32544292,
     'rx_bps': 39450705920.0,
     'rx_bps_L1': 39970545439.99999,
     'rx_pps': 3248997.0,
     'rx_util': 99.92636359999997,
     'tx_bps': 39450759168.0,
     'tx_bps_L1': 39970599248.0,
     'tx_pps': 3249000.5,
     'tx_util': 99.92649811999999},
 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.988346099853516,
            'cpu_util': 14.508928298950195,
            'cpu_util_raw': 15.1875,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 16901938,
            'rx_bps': 39450705920.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3248997.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39450759168.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3249000.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49402359732,
           'ierrors': 0,
           'ipackets': 32544378,
           'obytes': 49402230702,
           'oerrors': 0,
           'opackets': 32544292,
           'rx_bps': 39450705920.0,
           'rx_bps_L1': 39970545439.99999,
           'rx_pps': 3248997.0,
           'rx_util': 99.92636359999997,
           'tx_bps': 39450759168.0,
           'tx_bps_L1': 39970599248.0,
           'tx_pps': 3249000.5,
           'tx_util': 99.92649811999999}}
03/03/2021 17:41:36                         pktgen: {'ibytes': 49402359732,
 'ierrors': 0,
 'ipackets': 32544378,
 'obytes': 49402230702,
 'oerrors': 0,
 'opackets': 32544292,
 'rx_bps': 39450705920.0,
 'rx_bps_L1': 39970545439.99999,
 'rx_pps': 3248997.0,
 'rx_util': 99.92636359999997,
 'tx_bps': 39450759168.0,
 'tx_bps_L1': 39970599248.0,
 'tx_pps': 3249000.5,
 'tx_util': 99.92649811999999}
03/03/2021 17:41:36                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39450759168.000000, tx_pps: 3249000.500000 
03/03/2021 17:41:36                         pktgen: {'ibytes': 49402359732,
 'ierrors': 0,
 'ipackets': 32544378,
 'obytes': 49402230702,
 'oerrors': 0,
 'opackets': 32544292,
 'rx_bps': 39450705920.0,
 'rx_bps_L1': 39970545439.99999,
 'rx_pps': 3248997.0,
 'rx_util': 99.92636359999997,
 'tx_bps': 39450759168.0,
 'tx_bps_L1': 39970599248.0,
 'tx_pps': 3249000.5,
 'tx_util': 99.92649811999999}
03/03/2021 17:41:36                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39450705920.000000, rx_pps: 3248997.000000
03/03/2021 17:41:36                         pktgen: throughput: pps_rx 3248997.000000, bps_rx 39450705920.000000
03/03/2021 17:41:36                         pktgen: traffic completed. 
03/03/2021 17:41:38 TestPVPMultiPathVhostPerformance: result of all framesize result
03/03/2021 17:41:38 TestPVPMultiPathVhostPerformance: 
+-------+---------------------------+--------+------------+
| Frame |       Mode/RXD-TXD        |  Mpps  | % linerate |
+=======+===========================+========+============+
| 64    | virtio_1.1 inorder normal | 12.686 | 21.312     |
+-------+---------------------------+--------+------------+
| 128   | virtio_1.1 inorder normal | 11.373 | 33.664     |
+-------+---------------------------+--------+------------+
| 256   | virtio_1.1 inorder normal | 10.076 | 55.618     |
+-------+---------------------------+--------+------------+
| 512   | virtio_1.1 inorder normal | 7.766  | 82.633     |
+-------+---------------------------+--------+------------+
| 1024  | virtio_1.1 inorder normal | 4.787  | 99.948     |
+-------+---------------------------+--------+------------+
| 1518  | virtio_1.1 inorder normal | 3.249  | 99.939     |
+-------+---------------------------+--------+------------+
03/03/2021 17:41:38 TestPVPMultiPathVhostPerformance: 
+-------+--------------+-------------+------------+---------------------+-----------------------+
| Frame | Mode/RXD-TXD |    Mpps     | % linerate | Expected Throughput | Throughput Difference |
+=======+==============+=============+============+=====================+=======================+
| 64    | 1024         | 12.686 Mpps | 21.312%    | 11.980 Mpps         | 0.706 Mpps            |
+-------+--------------+-------------+------------+---------------------+-----------------------+
| 1518  | 1024         | 3.249 Mpps  | 99.939%    | 3.256 Mpps          | -0.007 Mpps           |
+-------+--------------+-------------+------------+---------------------+-----------------------+
03/03/2021 17:41:38 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.599000
03/03/2021 17:41:38 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) 0.706000
03/03/2021 17:41:38 TestPVPMultiPathVhostPerformance: Accept tolerance are (Mpps) -0.162800
03/03/2021 17:41:38 TestPVPMultiPathVhostPerformance: Throughput Difference are (Mpps) -0.007000
03/03/2021 17:41:38 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_vectorized Result PASSED:
03/03/2021 17:41:38             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
03/03/2021 17:41:39                            dts: 
TEST SUITE ENDED: TestPVPMultiPathVhostPerformance

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

end of thread, other threads:[~2021-03-03  9:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-03  9:45 [dts] [PATCH V1] tests/pvp_multi_paths_vhost_single_core_performance:Remove vectorized=0 by default in test case 9 and optimize code Ling Wei
2021-03-03  9:47 ` Ling, WeiX

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).