* [dts] [PATCH V1 1/7]pvp_multi_paths_performance: remove unnecessary param --single-file-segments from vhost
@ 2020-02-26 9:37 Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 2/7]pvp_multi_paths_vhost_single_core_performance: " Xiao Qimai
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Xiao Qimai @ 2020-02-26 9:37 UTC (permalink / raw)
To: dts; +Cc: Xiao Qimai
Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
tests/TestSuite_pvp_multi_paths_performance.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/tests/TestSuite_pvp_multi_paths_performance.py b/tests/TestSuite_pvp_multi_paths_performance.py
index a884e1f..62fef12 100644
--- a/tests/TestSuite_pvp_multi_paths_performance.py
+++ b/tests/TestSuite_pvp_multi_paths_performance.py
@@ -129,8 +129,6 @@ class TestPVPMultiPathPerformance(TestCase):
eal_param = self.dut.create_eal_parameters(cores=self.core_list_host, prefix='vhost',
ports=[self.dut.ports_info[self.dut_ports[0]]['pci']],
vdevs=['net_vhost0,iface=vhost-net,queues=1,client=0'])
- if self.check_2M_env:
- eal_param += " --single-file-segments"
command_line_client = "./%s/app/testpmd " % self.target + eal_param + " -- -i --nb-cores=1 --txd=1024 --rxd=1024"
self.vhost.send_expect(command_line_client, "testpmd> ", 120)
self.vhost.send_expect("set fwd mac", "testpmd> ", 120)
--
1.8.3.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [dts] [PATCH V1 2/7]pvp_multi_paths_vhost_single_core_performance: remove unnecessary param --single-file-segments from vhost
2020-02-26 9:37 [dts] [PATCH V1 1/7]pvp_multi_paths_performance: remove unnecessary param --single-file-segments from vhost Xiao Qimai
@ 2020-02-26 9:37 ` Xiao Qimai
2020-02-26 9:47 ` Xiao, QimaiX
2020-02-26 9:37 ` [dts] [PATCH V1 3/7]pvp_multi_paths_virtio_single_core_performance: " Xiao Qimai
` (5 subsequent siblings)
6 siblings, 1 reply; 9+ messages in thread
From: Xiao Qimai @ 2020-02-26 9:37 UTC (permalink / raw)
To: dts; +Cc: Xiao Qimai
Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py | 2 --
1 file changed, 2 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 a8b9e67..3a22a7e 100644
--- a/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py
+++ b/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py
@@ -128,8 +128,6 @@ class TestPVPMultiPathVhostPerformance(TestCase):
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'])
- if self.check_2M_env:
- eal_param += " --single-file-segments"
command_line_client = "./%s/app/testpmd " % self.target + eal_param + " -- -i --nb-cores=1 --txd=1024 --rxd=1024"
self.vhost.send_expect(command_line_client, "testpmd> ", 120)
self.vhost.send_expect("set fwd mac", "testpmd> ", 120)
--
1.8.3.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [dts] [PATCH V1 3/7]pvp_multi_paths_virtio_single_core_performance: remove unnecessary param --single-file-segments from vhost
2020-02-26 9:37 [dts] [PATCH V1 1/7]pvp_multi_paths_performance: remove unnecessary param --single-file-segments from vhost Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 2/7]pvp_multi_paths_vhost_single_core_performance: " Xiao Qimai
@ 2020-02-26 9:37 ` Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 4/7]pvp_share_lib: " Xiao Qimai
` (4 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Xiao Qimai @ 2020-02-26 9:37 UTC (permalink / raw)
To: dts; +Cc: Xiao Qimai
Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py b/tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py
index 53b073b..8c5fb43 100644
--- a/tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py
+++ b/tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py
@@ -130,8 +130,6 @@ class TestPVPMultiPathVirtioPerformance(TestCase):
eal_param = self.dut.create_eal_parameters(socket=self.ports_socket, cores=self.core_list_host, prefix='vhost',
ports=[self.dut.ports_info[self.dut_ports[0]]['pci']],
vdevs=['net_vhost0,iface=vhost-net,queues=1,client=0'])
- if self.check_2M_env:
- eal_param += " --single-file-segments"
command_line_client = "./%s/app/testpmd " % self.target + eal_param + ' -- -i --nb-cores=2 --txd=1024 --rxd=1024'
self.vhost.send_expect(command_line_client, "testpmd> ", 120)
self.vhost.send_expect("set fwd io", "testpmd> ", 120)
--
1.8.3.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [dts] [PATCH V1 4/7]pvp_share_lib: remove unnecessary param --single-file-segments from vhost
2020-02-26 9:37 [dts] [PATCH V1 1/7]pvp_multi_paths_performance: remove unnecessary param --single-file-segments from vhost Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 2/7]pvp_multi_paths_vhost_single_core_performance: " Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 3/7]pvp_multi_paths_virtio_single_core_performance: " Xiao Qimai
@ 2020-02-26 9:37 ` Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 5/7]pvp_vhost_user_built_in_net_driver: " Xiao Qimai
` (3 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Xiao Qimai @ 2020-02-26 9:37 UTC (permalink / raw)
To: dts; +Cc: Xiao Qimai
Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
tests/TestSuite_pvp_share_lib.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/tests/TestSuite_pvp_share_lib.py b/tests/TestSuite_pvp_share_lib.py
index 3930693..78e2243 100644
--- a/tests/TestSuite_pvp_share_lib.py
+++ b/tests/TestSuite_pvp_share_lib.py
@@ -138,8 +138,6 @@ class TestPVPShareLib(TestCase):
"""
eal_param = self.dut.create_eal_parameters(socket=self.ports_socket, cores=self.core_list_vhost_user, prefix='vhost',
vdevs=['net_vhost0,iface=vhost-net,queues=1'])
- if self.check_2M_env:
- eal_param += " --single-file-segments"
eal_param += " -d librte_pmd_vhost.so -d librte_pmd_%s.so -d librte_mempool_ring.so --file-prefix=vhost" % driver
command_line_client = "./%s/app/testpmd " % self.target + eal_param + ' -- -i'
--
1.8.3.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [dts] [PATCH V1 5/7]pvp_vhost_user_built_in_net_driver: remove unnecessary param --single-file-segments from vhost
2020-02-26 9:37 [dts] [PATCH V1 1/7]pvp_multi_paths_performance: remove unnecessary param --single-file-segments from vhost Xiao Qimai
` (2 preceding siblings ...)
2020-02-26 9:37 ` [dts] [PATCH V1 4/7]pvp_share_lib: " Xiao Qimai
@ 2020-02-26 9:37 ` Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 6/7]pvp_virtio_user_multi_queues: " Xiao Qimai
` (2 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Xiao Qimai @ 2020-02-26 9:37 UTC (permalink / raw)
To: dts; +Cc: Xiao Qimai
Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
tests/TestSuite_pvp_vhost_user_built_in_net_driver.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/tests/TestSuite_pvp_vhost_user_built_in_net_driver.py b/tests/TestSuite_pvp_vhost_user_built_in_net_driver.py
index 9c642a3..528f0d7 100644
--- a/tests/TestSuite_pvp_vhost_user_built_in_net_driver.py
+++ b/tests/TestSuite_pvp_vhost_user_built_in_net_driver.py
@@ -172,8 +172,6 @@ class TestPVPVhostUserBuiltInNetDriver(TestCase):
"""
self.dut.send_expect("rm -rf ./vhost.out", "#")
eal_param = self.dut.create_eal_parameters(socket=self.ports_socket, cores=self.core_list_vhost_user, prefix='vhost')
- if self.check_2M_env:
- eal_param += " --single-file-segments"
command_line_client = "./examples/vhost/build/app/vhost-switch " + eal_param + ' -- -p 0x1 --mergeable 0 --vm2vm 1 --builtin-net-driver --socket-file ./vhost-net> ./vhost.out &'
self.vhost_switch.send_expect(command_line_client, "# ", 120)
time.sleep(15)
--
1.8.3.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [dts] [PATCH V1 6/7]pvp_virtio_user_multi_queues: remove unnecessary param --single-file-segments from vhost
2020-02-26 9:37 [dts] [PATCH V1 1/7]pvp_multi_paths_performance: remove unnecessary param --single-file-segments from vhost Xiao Qimai
` (3 preceding siblings ...)
2020-02-26 9:37 ` [dts] [PATCH V1 5/7]pvp_vhost_user_built_in_net_driver: " Xiao Qimai
@ 2020-02-26 9:37 ` Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 7/7]virtio_user_for_container_networking: " Xiao Qimai
2020-03-03 5:49 ` [dts] [PATCH V1 1/7]pvp_multi_paths_performance: " Tu, Lijuan
6 siblings, 0 replies; 9+ messages in thread
From: Xiao Qimai @ 2020-02-26 9:37 UTC (permalink / raw)
To: dts; +Cc: Xiao Qimai
Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
tests/TestSuite_pvp_virtio_user_multi_queues.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/tests/TestSuite_pvp_virtio_user_multi_queues.py b/tests/TestSuite_pvp_virtio_user_multi_queues.py
index 790ee81..4cde5b8 100644
--- a/tests/TestSuite_pvp_virtio_user_multi_queues.py
+++ b/tests/TestSuite_pvp_virtio_user_multi_queues.py
@@ -108,8 +108,6 @@ class TestPVPVirtioMultiQueues(TestCase):
"""
eal_param = self.dut.create_eal_parameters(socket=self.ports_socket, cores=self.core_list_host, prefix='vhost',
vdevs=['net_vhost0,iface=vhost-net,queues=2,client=0'])
- if self.check_2M_env:
- eal_param += " --single-file-segments"
command_line_client = "./%s/app/testpmd " % self.target + eal_param + ' -- -i --nb-cores=2 --rxq=2 --txq=2 --rss-ip'
self.vhost_user.send_expect(command_line_client, "testpmd> ", 120)
self.vhost_user.send_expect("set fwd mac", "testpmd> ", 120)
--
1.8.3.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [dts] [PATCH V1 7/7]virtio_user_for_container_networking: remove unnecessary param --single-file-segments from vhost
2020-02-26 9:37 [dts] [PATCH V1 1/7]pvp_multi_paths_performance: remove unnecessary param --single-file-segments from vhost Xiao Qimai
` (4 preceding siblings ...)
2020-02-26 9:37 ` [dts] [PATCH V1 6/7]pvp_virtio_user_multi_queues: " Xiao Qimai
@ 2020-02-26 9:37 ` Xiao Qimai
2020-03-03 5:49 ` [dts] [PATCH V1 1/7]pvp_multi_paths_performance: " Tu, Lijuan
6 siblings, 0 replies; 9+ messages in thread
From: Xiao Qimai @ 2020-02-26 9:37 UTC (permalink / raw)
To: dts; +Cc: Xiao Qimai
Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
tests/TestSuite_virtio_user_for_container_networking.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/tests/TestSuite_virtio_user_for_container_networking.py b/tests/TestSuite_virtio_user_for_container_networking.py
index ba303b7..aa856e7 100644
--- a/tests/TestSuite_virtio_user_for_container_networking.py
+++ b/tests/TestSuite_virtio_user_for_container_networking.py
@@ -143,8 +143,6 @@ class TestVirtioUserForContainer(TestCase):
start testpmd as vhost
"""
eal_param = self.dut.create_eal_parameters(cores=self.core_list_vhost_user, prefix='vhost', vdevs=["net_vhost0,iface=vhost-net,queues=%d,client=0" % self.queue_number])
- if self.check_2M_env:
- eal_param += " --single-file-segments"
command_line_client = self.dut.target + '/app/testpmd ' + eal_param + ' -- -i --nb-cores=%d' % self.nb_cores
self.vhost_user.send_expect(command_line_client, 'testpmd> ', 30)
self.vhost_user.send_expect('start', 'testpmd> ', 30)
--
1.8.3.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [dts] [PATCH V1 2/7]pvp_multi_paths_vhost_single_core_performance: remove unnecessary param --single-file-segments from vhost
2020-02-26 9:37 ` [dts] [PATCH V1 2/7]pvp_multi_paths_vhost_single_core_performance: " Xiao Qimai
@ 2020-02-26 9:47 ` Xiao, QimaiX
0 siblings, 0 replies; 9+ messages in thread
From: Xiao, QimaiX @ 2020-02-26 9:47 UTC (permalink / raw)
To: dts
[-- Attachment #1: Type: text/plain, Size: 1596 bytes --]
Tested-by: Xiao Qimai <qimaix.xiao@intel.com>
> -----Original Message-----
> From: Xiao, QimaiX
> Sent: Wednesday, February 26, 2020 5:37 PM
> To: dts@dpdk.org
> Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
> Subject: [dts][PATCH V1
> 2/7]pvp_multi_paths_vhost_single_core_performance: remove
> unnecessary param --single-file-segments from vhost
>
> Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
> ---
> tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py | 2 --
> 1 file changed, 2 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 a8b9e67..3a22a7e 100644
> --- a/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py
> +++
> b/tests/TestSuite_pvp_multi_paths_vhost_single_core_performance.py
> @@ -128,8 +128,6 @@ class TestPVPMultiPathVhostPerformance(TestCase):
> 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'])
> - if self.check_2M_env:
> - eal_param += " --single-file-segments"
> command_line_client = "./%s/app/testpmd " % self.target + eal_param
> + " -- -i --nb-cores=1 --txd=1024 --rxd=1024"
> self.vhost.send_expect(command_line_client, "testpmd> ", 120)
> self.vhost.send_expect("set fwd mac", "testpmd> ", 120)
> --
> 1.8.3.1
[-- Attachment #2: testedby.log --]
[-- Type: application/octet-stream, Size: 296306 bytes --]
26/02/2020 01:22:27 dts: NIC : niantic
26/02/2020 01:22:27 dut.10.238.54.213:
26/02/2020 01:22:27 tester:
26/02/2020 01:22:27 tester: ls -d /tmp
26/02/2020 01:22:27 tester: /tmp
26/02/2020 01:22:27 dut.10.238.54.213: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
26/02/2020 01:22:27 dut.10.238.54.213: 2048
26/02/2020 01:22:27 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_inorder_mergeable Begin
26/02/2020 01:22:27 dut.10.238.54.213:
26/02/2020 01:22:27 tester:
26/02/2020 01:22:31 dut.10.238.54.213: rm -rf ./vhost.out
26/02/2020 01:22:31 dut.10.238.54.213:
26/02/2020 01:22:31 dut.10.238.54.213: rm -rf ./vhost-net*
26/02/2020 01:22:32 dut.10.238.54.213:
26/02/2020 01:22:32 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:22:32 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:22:32 dut.10.238.54.213: killall -s INT qemu-system-x86_64
26/02/2020 01:22:32 dut.10.238.54.213: qemu-system-x86_64: no process found
26/02/2020 01:22:40 dut.10.238.54.213: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
26/02/2020 01:22:40 dut.10.238.54.213: 2048
26/02/2020 01:22:49 tester: ls -d /tmp
26/02/2020 01:22:49 tester: /tmp
26/02/2020 01:22:49 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:22:51 pktgen: test port 0 map gen port 0
26/02/2020 01:22:51 pktgen: test port 0 map gen port 0
26/02/2020 01:22:51 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:22:51 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:22:51 pktgen: begin traffic ......
26/02/2020 01:22:51 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:22:56 pktgen: traffic completed.
26/02/2020 01:22:56 pktgen: begin traffic ......
26/02/2020 01:22:56 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:23:06 pktgen: begin get port statistic ...
26/02/2020 01:23:06 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:23:06 pktgen: {0: {'ibytes': 5196756736,
'ierrors': 0,
'ipackets': 81199317,
'obytes': 9533545664,
'oerrors': 0,
'opackets': 148961644,
'rx_bps': 4160847616.0,
'rx_bps_L1': 5461112896.0,
'rx_pps': 8126658.0,
'rx_util': 54.61112896,
'tx_bps': 7633119744.0,
'tx_bps_L1': 10018469664.0,
'tx_pps': 14908437.0,
'tx_util': 100.18469664},
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': {'bw_per_core': 32.97330856323242,
'cpu_util': 11.574695587158203,
'queue_full': 0,
'rx_bps': 4160847616.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 3472271872.0,
'rx_pps': 8126658.0,
'tx_bps': 7633119744.0,
'tx_pps': 14908437.0},
'latency': {},
'total': {'ibytes': 5196756736,
'ierrors': 0,
'ipackets': 81199317,
'obytes': 9533545664,
'oerrors': 0,
'opackets': 148961644,
'rx_bps': 4160847616.0,
'rx_bps_L1': 5461112896.0,
'rx_pps': 8126658.0,
'rx_util': 54.61112896,
'tx_bps': 7633119744.0,
'tx_bps_L1': 10018469664.0,
'tx_pps': 14908437.0,
'tx_util': 100.18469664}}
26/02/2020 01:23:06 pktgen: {'ibytes': 5196756736,
'ierrors': 0,
'ipackets': 81199317,
'obytes': 9533545664,
'oerrors': 0,
'opackets': 148961644,
'rx_bps': 4160847616.0,
'rx_bps_L1': 5461112896.0,
'rx_pps': 8126658.0,
'rx_util': 54.61112896,
'tx_bps': 7633119744.0,
'tx_bps_L1': 10018469664.0,
'tx_pps': 14908437.0,
'tx_util': 100.18469664}
26/02/2020 01:23:06 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 7633119744.000000, tx_pps: 14908437.000000
26/02/2020 01:23:06 pktgen: {'ibytes': 5196756736,
'ierrors': 0,
'ipackets': 81199317,
'obytes': 9533545664,
'oerrors': 0,
'opackets': 148961644,
'rx_bps': 4160847616.0,
'rx_bps_L1': 5461112896.0,
'rx_pps': 8126658.0,
'rx_util': 54.61112896,
'tx_bps': 7633119744.0,
'tx_bps_L1': 10018469664.0,
'tx_pps': 14908437.0,
'tx_util': 100.18469664}
26/02/2020 01:23:06 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 4160847616.000000, rx_pps: 8126658.000000
26/02/2020 01:23:06 pktgen: throughput: pps_rx 8126658.000000, bps_rx 4160847616.000000
26/02/2020 01:23:06 pktgen: traffic completed.
26/02/2020 01:23:06 tester: ls -d /tmp
26/02/2020 01:23:06 tester: /tmp
26/02/2020 01:23:06 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:23:08 pktgen: test port 0 map gen port 0
26/02/2020 01:23:08 pktgen: test port 0 map gen port 0
26/02/2020 01:23:08 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:23:08 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:23:08 pktgen: begin traffic ......
26/02/2020 01:23:08 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:23:13 pktgen: traffic completed.
26/02/2020 01:23:13 pktgen: begin traffic ......
26/02/2020 01:23:13 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:23:23 pktgen: begin get port statistic ...
26/02/2020 01:23:23 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:23:23 pktgen: {0: {'ibytes': 9426651008,
'ierrors': 0,
'ipackets': 73645707,
'obytes': 10822883328,
'oerrors': 0,
'opackets': 84553772,
'rx_bps': 7547922944.0,
'rx_bps_L1': 8727295264.0,
'rx_pps': 7371077.0,
'rx_util': 87.27295264,
'tx_bps': 8664663040.0,
'tx_bps_L1': 10018534400.0,
'tx_pps': 8461696.0,
'tx_util': 100.18534400000001},
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': {'bw_per_core': 72.56206512451172,
'cpu_util': 5.970518589019775,
'queue_full': 0,
'rx_bps': 7547922944.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 1116740224.0,
'rx_pps': 7371077.0,
'tx_bps': 8664663040.0,
'tx_pps': 8461696.0},
'latency': {},
'total': {'ibytes': 9426651008,
'ierrors': 0,
'ipackets': 73645707,
'obytes': 10822883328,
'oerrors': 0,
'opackets': 84553772,
'rx_bps': 7547922944.0,
'rx_bps_L1': 8727295264.0,
'rx_pps': 7371077.0,
'rx_util': 87.27295264,
'tx_bps': 8664663040.0,
'tx_bps_L1': 10018534400.0,
'tx_pps': 8461696.0,
'tx_util': 100.18534400000001}}
26/02/2020 01:23:23 pktgen: {'ibytes': 9426651008,
'ierrors': 0,
'ipackets': 73645707,
'obytes': 10822883328,
'oerrors': 0,
'opackets': 84553772,
'rx_bps': 7547922944.0,
'rx_bps_L1': 8727295264.0,
'rx_pps': 7371077.0,
'rx_util': 87.27295264,
'tx_bps': 8664663040.0,
'tx_bps_L1': 10018534400.0,
'tx_pps': 8461696.0,
'tx_util': 100.18534400000001}
26/02/2020 01:23:23 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 8664663040.000000, tx_pps: 8461696.000000
26/02/2020 01:23:23 pktgen: {'ibytes': 9426651008,
'ierrors': 0,
'ipackets': 73645707,
'obytes': 10822883328,
'oerrors': 0,
'opackets': 84553772,
'rx_bps': 7547922944.0,
'rx_bps_L1': 8727295264.0,
'rx_pps': 7371077.0,
'rx_util': 87.27295264,
'tx_bps': 8664663040.0,
'tx_bps_L1': 10018534400.0,
'tx_pps': 8461696.0,
'tx_util': 100.18534400000001}
26/02/2020 01:23:23 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 7547922944.000000, rx_pps: 7371077.000000
26/02/2020 01:23:23 pktgen: throughput: pps_rx 7371077.000000, bps_rx 7547922944.000000
26/02/2020 01:23:23 pktgen: traffic completed.
26/02/2020 01:23:23 tester: ls -d /tmp
26/02/2020 01:23:23 tester: /tmp
26/02/2020 01:23:23 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:23:25 pktgen: test port 0 map gen port 0
26/02/2020 01:23:25 pktgen: test port 0 map gen port 0
26/02/2020 01:23:25 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:23:25 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:23:25 pktgen: begin traffic ......
26/02/2020 01:23:25 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:23:30 pktgen: traffic completed.
26/02/2020 01:23:30 pktgen: begin traffic ......
26/02/2020 01:23:30 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:23:40 pktgen: begin get port statistic ...
26/02/2020 01:23:40 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:23:40 pktgen: {0: {'ibytes': 11605319936,
'ierrors': 0,
'ipackets': 45333279,
'obytes': 11605351936,
'oerrors': 0,
'opackets': 45333371,
'rx_bps': 9265575936.0,
'rx_bps_L1': 9989456576.0,
'rx_pps': 4524254.0,
'rx_util': 99.89456575999999,
'tx_bps': 9265585152.0,
'tx_bps_L1': 9989467552.0,
'tx_pps': 4524265.0,
'tx_util': 99.89467551999999},
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': {'bw_per_core': 164.1542510986328,
'cpu_util': 2.822219133377075,
'queue_full': 0,
'rx_bps': 9265575936.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 4524254.0,
'tx_bps': 9265585152.0,
'tx_pps': 4524265.0},
'latency': {},
'total': {'ibytes': 11605319936,
'ierrors': 0,
'ipackets': 45333279,
'obytes': 11605351936,
'oerrors': 0,
'opackets': 45333371,
'rx_bps': 9265575936.0,
'rx_bps_L1': 9989456576.0,
'rx_pps': 4524254.0,
'rx_util': 99.89456575999999,
'tx_bps': 9265585152.0,
'tx_bps_L1': 9989467552.0,
'tx_pps': 4524265.0,
'tx_util': 99.89467551999999}}
26/02/2020 01:23:40 pktgen: {'ibytes': 11605319936,
'ierrors': 0,
'ipackets': 45333279,
'obytes': 11605351936,
'oerrors': 0,
'opackets': 45333371,
'rx_bps': 9265575936.0,
'rx_bps_L1': 9989456576.0,
'rx_pps': 4524254.0,
'rx_util': 99.89456575999999,
'tx_bps': 9265585152.0,
'tx_bps_L1': 9989467552.0,
'tx_pps': 4524265.0,
'tx_util': 99.89467551999999}
26/02/2020 01:23:40 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9265585152.000000, tx_pps: 4524265.000000
26/02/2020 01:23:40 pktgen: {'ibytes': 11605319936,
'ierrors': 0,
'ipackets': 45333279,
'obytes': 11605351936,
'oerrors': 0,
'opackets': 45333371,
'rx_bps': 9265575936.0,
'rx_bps_L1': 9989456576.0,
'rx_pps': 4524254.0,
'rx_util': 99.89456575999999,
'tx_bps': 9265585152.0,
'tx_bps_L1': 9989467552.0,
'tx_pps': 4524265.0,
'tx_util': 99.89467551999999}
26/02/2020 01:23:40 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9265575936.000000, rx_pps: 4524254.000000
26/02/2020 01:23:40 pktgen: throughput: pps_rx 4524254.000000, bps_rx 9265575936.000000
26/02/2020 01:23:40 pktgen: traffic completed.
26/02/2020 01:23:40 tester: ls -d /tmp
26/02/2020 01:23:40 tester: /tmp
26/02/2020 01:23:40 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:23:42 pktgen: test port 0 map gen port 0
26/02/2020 01:23:42 pktgen: test port 0 map gen port 0
26/02/2020 01:23:42 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:23:42 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:23:42 pktgen: begin traffic ......
26/02/2020 01:23:42 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:23:47 pktgen: traffic completed.
26/02/2020 01:23:47 pktgen: begin traffic ......
26/02/2020 01:23:47 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:23:57 pktgen: begin get port statistic ...
26/02/2020 01:23:57 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:23:57 pktgen: {0: {'ibytes': 12042138112,
'ierrors': 0,
'ipackets': 23519800,
'obytes': 12042156544,
'oerrors': 0,
'opackets': 23519836,
'rx_bps': 9614433280.0,
'rx_bps_L1': 9990001000.0,
'rx_pps': 2347298.25,
'rx_util': 99.90001,
'tx_bps': 9614430208.0,
'tx_bps_L1': 9989997728.0,
'tx_pps': 2347297.0,
'tx_util': 99.89997728},
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': {'bw_per_core': 300.7132263183594,
'cpu_util': 1.598604440689087,
'queue_full': 0,
'rx_bps': 9614433280.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 2347298.25,
'tx_bps': 9614430208.0,
'tx_pps': 2347297.0},
'latency': {},
'total': {'ibytes': 12042138112,
'ierrors': 0,
'ipackets': 23519800,
'obytes': 12042156544,
'oerrors': 0,
'opackets': 23519836,
'rx_bps': 9614433280.0,
'rx_bps_L1': 9990001000.0,
'rx_pps': 2347298.25,
'rx_util': 99.90001,
'tx_bps': 9614430208.0,
'tx_bps_L1': 9989997728.0,
'tx_pps': 2347297.0,
'tx_util': 99.89997728}}
26/02/2020 01:23:57 pktgen: {'ibytes': 12042138112,
'ierrors': 0,
'ipackets': 23519800,
'obytes': 12042156544,
'oerrors': 0,
'opackets': 23519836,
'rx_bps': 9614433280.0,
'rx_bps_L1': 9990001000.0,
'rx_pps': 2347298.25,
'rx_util': 99.90001,
'tx_bps': 9614430208.0,
'tx_bps_L1': 9989997728.0,
'tx_pps': 2347297.0,
'tx_util': 99.89997728}
26/02/2020 01:23:57 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9614430208.000000, tx_pps: 2347297.000000
26/02/2020 01:23:57 pktgen: {'ibytes': 12042138112,
'ierrors': 0,
'ipackets': 23519800,
'obytes': 12042156544,
'oerrors': 0,
'opackets': 23519836,
'rx_bps': 9614433280.0,
'rx_bps_L1': 9990001000.0,
'rx_pps': 2347298.25,
'rx_util': 99.90001,
'tx_bps': 9614430208.0,
'tx_bps_L1': 9989997728.0,
'tx_pps': 2347297.0,
'tx_util': 99.89997728}
26/02/2020 01:23:57 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9614433280.000000, rx_pps: 2347298.250000
26/02/2020 01:23:57 pktgen: throughput: pps_rx 2347298.250000, bps_rx 9614433280.000000
26/02/2020 01:23:57 pktgen: traffic completed.
26/02/2020 01:23:57 tester: ls -d /tmp
26/02/2020 01:23:57 tester: /tmp
26/02/2020 01:23:57 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:23:59 pktgen: test port 0 map gen port 0
26/02/2020 01:23:59 pktgen: test port 0 map gen port 0
26/02/2020 01:23:59 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:23:59 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:23:59 pktgen: begin traffic ......
26/02/2020 01:23:59 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:24:04 pktgen: traffic completed.
26/02/2020 01:24:04 pktgen: begin traffic ......
26/02/2020 01:24:04 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:24:14 pktgen: begin get port statistic ...
26/02/2020 01:24:14 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:24:14 pktgen: {0: {'ibytes': 12272806912,
'ierrors': 0,
'ipackets': 11985162,
'obytes': 12272823296,
'oerrors': 0,
'opackets': 11985178,
'rx_bps': 9825551360.0,
'rx_bps_L1': 10017460040.0,
'rx_pps': 1199429.25,
'rx_util': 100.17460039999999,
'tx_bps': 9825554432.0,
'tx_bps_L1': 10017463072.0,
'tx_pps': 1199429.0,
'tx_util': 100.17463072},
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': {'bw_per_core': 651.8115844726562,
'cpu_util': 0.7537112236022949,
'queue_full': 0,
'rx_bps': 9825551360.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 1199429.25,
'tx_bps': 9825554432.0,
'tx_pps': 1199429.0},
'latency': {},
'total': {'ibytes': 12272806912,
'ierrors': 0,
'ipackets': 11985162,
'obytes': 12272823296,
'oerrors': 0,
'opackets': 11985178,
'rx_bps': 9825551360.0,
'rx_bps_L1': 10017460040.0,
'rx_pps': 1199429.25,
'rx_util': 100.17460039999999,
'tx_bps': 9825554432.0,
'tx_bps_L1': 10017463072.0,
'tx_pps': 1199429.0,
'tx_util': 100.17463072}}
26/02/2020 01:24:14 pktgen: {'ibytes': 12272806912,
'ierrors': 0,
'ipackets': 11985162,
'obytes': 12272823296,
'oerrors': 0,
'opackets': 11985178,
'rx_bps': 9825551360.0,
'rx_bps_L1': 10017460040.0,
'rx_pps': 1199429.25,
'rx_util': 100.17460039999999,
'tx_bps': 9825554432.0,
'tx_bps_L1': 10017463072.0,
'tx_pps': 1199429.0,
'tx_util': 100.17463072}
26/02/2020 01:24:14 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9825554432.000000, tx_pps: 1199429.000000
26/02/2020 01:24:14 pktgen: {'ibytes': 12272806912,
'ierrors': 0,
'ipackets': 11985162,
'obytes': 12272823296,
'oerrors': 0,
'opackets': 11985178,
'rx_bps': 9825551360.0,
'rx_bps_L1': 10017460040.0,
'rx_pps': 1199429.25,
'rx_util': 100.17460039999999,
'tx_bps': 9825554432.0,
'tx_bps_L1': 10017463072.0,
'tx_pps': 1199429.0,
'tx_util': 100.17463072}
26/02/2020 01:24:14 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9825551360.000000, rx_pps: 1199429.250000
26/02/2020 01:24:14 pktgen: throughput: pps_rx 1199429.250000, bps_rx 9825551360.000000
26/02/2020 01:24:14 pktgen: traffic completed.
26/02/2020 01:24:14 tester: ls -d /tmp
26/02/2020 01:24:15 tester: /tmp
26/02/2020 01:24:15 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:24:16 pktgen: test port 0 map gen port 0
26/02/2020 01:24:16 pktgen: test port 0 map gen port 0
26/02/2020 01:24:16 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:24:16 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:24:16 pktgen: begin traffic ......
26/02/2020 01:24:16 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:24:21 pktgen: traffic completed.
26/02/2020 01:24:21 pktgen: begin traffic ......
26/02/2020 01:24:21 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:24:31 pktgen: begin get port statistic ...
26/02/2020 01:24:31 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:24:31 pktgen: {0: {'ibytes': 12350183868,
'ierrors': 0,
'ipackets': 8135826,
'obytes': 12350200566,
'oerrors': 0,
'opackets': 8135837,
'rx_bps': 9888365568.0,
'rx_bps_L1': 10018648048.0,
'rx_pps': 814265.5,
'rx_util': 100.18648048,
'tx_bps': 9888366592.0,
'tx_bps_L1': 10018649032.0,
'tx_pps': 814265.25,
'tx_util': 100.18649032},
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': {'bw_per_core': 895.8121337890625,
'cpu_util': 0.5519219040870667,
'queue_full': 0,
'rx_bps': 9888365568.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 814265.5,
'tx_bps': 9888366592.0,
'tx_pps': 814265.25},
'latency': {},
'total': {'ibytes': 12350183868,
'ierrors': 0,
'ipackets': 8135826,
'obytes': 12350200566,
'oerrors': 0,
'opackets': 8135837,
'rx_bps': 9888365568.0,
'rx_bps_L1': 10018648048.0,
'rx_pps': 814265.5,
'rx_util': 100.18648048,
'tx_bps': 9888366592.0,
'tx_bps_L1': 10018649032.0,
'tx_pps': 814265.25,
'tx_util': 100.18649032}}
26/02/2020 01:24:31 pktgen: {'ibytes': 12350183868,
'ierrors': 0,
'ipackets': 8135826,
'obytes': 12350200566,
'oerrors': 0,
'opackets': 8135837,
'rx_bps': 9888365568.0,
'rx_bps_L1': 10018648048.0,
'rx_pps': 814265.5,
'rx_util': 100.18648048,
'tx_bps': 9888366592.0,
'tx_bps_L1': 10018649032.0,
'tx_pps': 814265.25,
'tx_util': 100.18649032}
26/02/2020 01:24:31 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9888366592.000000, tx_pps: 814265.250000
26/02/2020 01:24:31 pktgen: {'ibytes': 12350183868,
'ierrors': 0,
'ipackets': 8135826,
'obytes': 12350200566,
'oerrors': 0,
'opackets': 8135837,
'rx_bps': 9888365568.0,
'rx_bps_L1': 10018648048.0,
'rx_pps': 814265.5,
'rx_util': 100.18648048,
'tx_bps': 9888366592.0,
'tx_bps_L1': 10018649032.0,
'tx_pps': 814265.25,
'tx_util': 100.18649032}
26/02/2020 01:24:31 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9888365568.000000, rx_pps: 814265.500000
26/02/2020 01:24:31 pktgen: throughput: pps_rx 814265.500000, bps_rx 9888365568.000000
26/02/2020 01:24:31 pktgen: traffic completed.
26/02/2020 01:24:37 TestPVPMultiPathVhostPerformance:
+-------+---------------------+-------+------------+
| Frame | Mode | Mpps | % linerate |
+=======+=====================+=======+============+
| 64 | inoder mergeable on | 8.127 | 54.611 |
+-------+---------------------+-------+------------+
| 128 | inoder mergeable on | 7.371 | 87.274 |
+-------+---------------------+-------+------------+
| 256 | inoder mergeable on | 4.524 | 99.896 |
+-------+---------------------+-------+------------+
| 512 | inoder mergeable on | 2.347 | 99.901 |
+-------+---------------------+-------+------------+
| 1024 | inoder mergeable on | 1.199 | 100.176 |
+-------+---------------------+-------+------------+
| 1518 | inoder mergeable on | 0.814 | 100.187 |
+-------+---------------------+-------+------------+
26/02/2020 01:24:37 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_inorder_mergeable Result PASSED:
26/02/2020 01:24:37 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:24:37 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:24:37 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_inorder_no_mergeable Begin
26/02/2020 01:24:37 dut.10.238.54.213:
26/02/2020 01:24:37 tester:
26/02/2020 01:24:41 dut.10.238.54.213: rm -rf ./vhost.out
26/02/2020 01:24:41 dut.10.238.54.213:
26/02/2020 01:24:41 dut.10.238.54.213: rm -rf ./vhost-net*
26/02/2020 01:24:41 dut.10.238.54.213:
26/02/2020 01:24:41 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:24:42 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:24:42 dut.10.238.54.213: killall -s INT qemu-system-x86_64
26/02/2020 01:24:42 dut.10.238.54.213: qemu-system-x86_64: no process found
26/02/2020 01:24:50 dut.10.238.54.213: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
26/02/2020 01:24:50 dut.10.238.54.213: 2048
26/02/2020 01:24:59 tester: ls -d /tmp
26/02/2020 01:24:59 tester: /tmp
26/02/2020 01:24:59 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:25:01 pktgen: test port 0 map gen port 0
26/02/2020 01:25:01 pktgen: test port 0 map gen port 0
26/02/2020 01:25:01 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:25:01 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:25:01 pktgen: begin traffic ......
26/02/2020 01:25:01 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:25:06 pktgen: traffic completed.
26/02/2020 01:25:06 pktgen: begin traffic ......
26/02/2020 01:25:06 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:25:16 pktgen: begin get port statistic ...
26/02/2020 01:25:16 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:25:16 pktgen: {0: {'ibytes': 5326179264,
'ierrors': 0,
'ipackets': 83221543,
'obytes': 9533733440,
'oerrors': 0,
'opackets': 148964579,
'rx_bps': 4253038080.0,
'rx_bps_L1': 5582112400.0,
'rx_pps': 8306714.5,
'rx_util': 55.821124,
'tx_bps': 7614182912.0,
'tx_bps_L1': 9993615231.999998,
'tx_pps': 14871452.0,
'tx_util': 99.93615231999998},
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': {'bw_per_core': 34.030330657958984,
'cpu_util': 11.187347412109375,
'queue_full': 0,
'rx_bps': 4253038080.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 3361145088.0,
'rx_pps': 8306714.5,
'tx_bps': 7614182912.0,
'tx_pps': 14871452.0},
'latency': {},
'total': {'ibytes': 5326179264,
'ierrors': 0,
'ipackets': 83221543,
'obytes': 9533733440,
'oerrors': 0,
'opackets': 148964579,
'rx_bps': 4253038080.0,
'rx_bps_L1': 5582112400.0,
'rx_pps': 8306714.5,
'rx_util': 55.821124,
'tx_bps': 7614182912.0,
'tx_bps_L1': 9993615231.999998,
'tx_pps': 14871452.0,
'tx_util': 99.93615231999998}}
26/02/2020 01:25:16 pktgen: {'ibytes': 5326179264,
'ierrors': 0,
'ipackets': 83221543,
'obytes': 9533733440,
'oerrors': 0,
'opackets': 148964579,
'rx_bps': 4253038080.0,
'rx_bps_L1': 5582112400.0,
'rx_pps': 8306714.5,
'rx_util': 55.821124,
'tx_bps': 7614182912.0,
'tx_bps_L1': 9993615231.999998,
'tx_pps': 14871452.0,
'tx_util': 99.93615231999998}
26/02/2020 01:25:16 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 7614182912.000000, tx_pps: 14871452.000000
26/02/2020 01:25:16 pktgen: {'ibytes': 5326179264,
'ierrors': 0,
'ipackets': 83221543,
'obytes': 9533733440,
'oerrors': 0,
'opackets': 148964579,
'rx_bps': 4253038080.0,
'rx_bps_L1': 5582112400.0,
'rx_pps': 8306714.5,
'rx_util': 55.821124,
'tx_bps': 7614182912.0,
'tx_bps_L1': 9993615231.999998,
'tx_pps': 14871452.0,
'tx_util': 99.93615231999998}
26/02/2020 01:25:16 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 4253038080.000000, rx_pps: 8306714.500000
26/02/2020 01:25:16 pktgen: throughput: pps_rx 8306714.500000, bps_rx 4253038080.000000
26/02/2020 01:25:16 pktgen: traffic completed.
26/02/2020 01:25:16 tester: ls -d /tmp
26/02/2020 01:25:16 tester: /tmp
26/02/2020 01:25:16 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:25:18 pktgen: test port 0 map gen port 0
26/02/2020 01:25:18 pktgen: test port 0 map gen port 0
26/02/2020 01:25:18 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:25:18 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:25:18 pktgen: begin traffic ......
26/02/2020 01:25:18 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:25:23 pktgen: traffic completed.
26/02/2020 01:25:23 pktgen: begin traffic ......
26/02/2020 01:25:23 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:25:33 pktgen: begin get port statistic ...
26/02/2020 01:25:33 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:25:33 pktgen: {0: {'ibytes': 9706559104,
'ierrors': 0,
'ipackets': 75832490,
'obytes': 10821052544,
'oerrors': 0,
'opackets': 84539469,
'rx_bps': 7752550400.0,
'rx_bps_L1': 8963893120.0,
'rx_pps': 7570892.0,
'rx_util': 89.6389312,
'tx_bps': 8643631104.0,
'tx_bps_L1': 9994210624.0,
'tx_pps': 8441122.0,
'tx_util': 99.94210624},
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': {'bw_per_core': 75.24658203125,
'cpu_util': 5.743537425994873,
'queue_full': 0,
'rx_bps': 7752550400.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 891080576.0,
'rx_pps': 7570892.0,
'tx_bps': 8643631104.0,
'tx_pps': 8441122.0},
'latency': {},
'total': {'ibytes': 9706559104,
'ierrors': 0,
'ipackets': 75832490,
'obytes': 10821052544,
'oerrors': 0,
'opackets': 84539469,
'rx_bps': 7752550400.0,
'rx_bps_L1': 8963893120.0,
'rx_pps': 7570892.0,
'rx_util': 89.6389312,
'tx_bps': 8643631104.0,
'tx_bps_L1': 9994210624.0,
'tx_pps': 8441122.0,
'tx_util': 99.94210624}}
26/02/2020 01:25:33 pktgen: {'ibytes': 9706559104,
'ierrors': 0,
'ipackets': 75832490,
'obytes': 10821052544,
'oerrors': 0,
'opackets': 84539469,
'rx_bps': 7752550400.0,
'rx_bps_L1': 8963893120.0,
'rx_pps': 7570892.0,
'rx_util': 89.6389312,
'tx_bps': 8643631104.0,
'tx_bps_L1': 9994210624.0,
'tx_pps': 8441122.0,
'tx_util': 99.94210624}
26/02/2020 01:25:33 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 8643631104.000000, tx_pps: 8441122.000000
26/02/2020 01:25:33 pktgen: {'ibytes': 9706559104,
'ierrors': 0,
'ipackets': 75832490,
'obytes': 10821052544,
'oerrors': 0,
'opackets': 84539469,
'rx_bps': 7752550400.0,
'rx_bps_L1': 8963893120.0,
'rx_pps': 7570892.0,
'rx_util': 89.6389312,
'tx_bps': 8643631104.0,
'tx_bps_L1': 9994210624.0,
'tx_pps': 8441122.0,
'tx_util': 99.94210624}
26/02/2020 01:25:33 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 7752550400.000000, rx_pps: 7570892.000000
26/02/2020 01:25:33 pktgen: throughput: pps_rx 7570892.000000, bps_rx 7752550400.000000
26/02/2020 01:25:33 pktgen: traffic completed.
26/02/2020 01:25:33 tester: ls -d /tmp
26/02/2020 01:25:33 tester: /tmp
26/02/2020 01:25:33 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:25:35 pktgen: test port 0 map gen port 0
26/02/2020 01:25:35 pktgen: test port 0 map gen port 0
26/02/2020 01:25:35 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:25:35 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:25:35 pktgen: begin traffic ......
26/02/2020 01:25:35 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:25:40 pktgen: traffic completed.
26/02/2020 01:25:40 pktgen: begin traffic ......
26/02/2020 01:25:40 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:25:50 pktgen: begin get port statistic ...
26/02/2020 01:25:50 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:25:50 pktgen: {0: {'ibytes': 11605963008,
'ierrors': 0,
'ipackets': 45335791,
'obytes': 11605982464,
'oerrors': 0,
'opackets': 45335867,
'rx_bps': 9292285952.0,
'rx_bps_L1': 10018255792.0,
'rx_pps': 4537311.5,
'rx_util': 100.18255792,
'tx_bps': 9292303360.0,
'tx_bps_L1': 10018275680.0,
'tx_pps': 4537327.0,
'tx_util': 100.18275679999999},
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': {'bw_per_core': 143.7578125,
'cpu_util': 3.2319297790527344,
'queue_full': 0,
'rx_bps': 9292285952.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 4537311.5,
'tx_bps': 9292303360.0,
'tx_pps': 4537327.0},
'latency': {},
'total': {'ibytes': 11605963008,
'ierrors': 0,
'ipackets': 45335791,
'obytes': 11605982464,
'oerrors': 0,
'opackets': 45335867,
'rx_bps': 9292285952.0,
'rx_bps_L1': 10018255792.0,
'rx_pps': 4537311.5,
'rx_util': 100.18255792,
'tx_bps': 9292303360.0,
'tx_bps_L1': 10018275680.0,
'tx_pps': 4537327.0,
'tx_util': 100.18275679999999}}
26/02/2020 01:25:50 pktgen: {'ibytes': 11605963008,
'ierrors': 0,
'ipackets': 45335791,
'obytes': 11605982464,
'oerrors': 0,
'opackets': 45335867,
'rx_bps': 9292285952.0,
'rx_bps_L1': 10018255792.0,
'rx_pps': 4537311.5,
'rx_util': 100.18255792,
'tx_bps': 9292303360.0,
'tx_bps_L1': 10018275680.0,
'tx_pps': 4537327.0,
'tx_util': 100.18275679999999}
26/02/2020 01:25:50 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9292303360.000000, tx_pps: 4537327.000000
26/02/2020 01:25:50 pktgen: {'ibytes': 11605963008,
'ierrors': 0,
'ipackets': 45335791,
'obytes': 11605982464,
'oerrors': 0,
'opackets': 45335867,
'rx_bps': 9292285952.0,
'rx_bps_L1': 10018255792.0,
'rx_pps': 4537311.5,
'rx_util': 100.18255792,
'tx_bps': 9292303360.0,
'tx_bps_L1': 10018275680.0,
'tx_pps': 4537327.0,
'tx_util': 100.18275679999999}
26/02/2020 01:25:50 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9292285952.000000, rx_pps: 4537311.500000
26/02/2020 01:25:50 pktgen: throughput: pps_rx 4537311.500000, bps_rx 9292285952.000000
26/02/2020 01:25:50 pktgen: traffic completed.
26/02/2020 01:25:50 tester: ls -d /tmp
26/02/2020 01:25:50 tester: /tmp
26/02/2020 01:25:50 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:25:52 pktgen: test port 0 map gen port 0
26/02/2020 01:25:52 pktgen: test port 0 map gen port 0
26/02/2020 01:25:52 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:25:52 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:25:52 pktgen: begin traffic ......
26/02/2020 01:25:52 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:25:57 pktgen: traffic completed.
26/02/2020 01:25:57 pktgen: begin traffic ......
26/02/2020 01:25:57 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:26:07 pktgen: begin get port statistic ...
26/02/2020 01:26:07 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:26:07 pktgen: {0: {'ibytes': 12042354176,
'ierrors': 0,
'ipackets': 23520222,
'obytes': 12042371072,
'oerrors': 0,
'opackets': 23520254,
'rx_bps': 9642237952.0,
'rx_bps_L1': 10018892832.0,
'rx_pps': 2354093.0,
'rx_util': 100.18892831999999,
'tx_bps': 9642227712.0,
'tx_bps_L1': 10018882272.0,
'tx_pps': 2354091.0,
'tx_util': 100.18882272},
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': {'bw_per_core': 328.8130187988281,
'cpu_util': 1.4662173986434937,
'queue_full': 0,
'rx_bps': 9642237952.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 2354093.0,
'tx_bps': 9642227712.0,
'tx_pps': 2354091.0},
'latency': {},
'total': {'ibytes': 12042354176,
'ierrors': 0,
'ipackets': 23520222,
'obytes': 12042371072,
'oerrors': 0,
'opackets': 23520254,
'rx_bps': 9642237952.0,
'rx_bps_L1': 10018892832.0,
'rx_pps': 2354093.0,
'rx_util': 100.18892831999999,
'tx_bps': 9642227712.0,
'tx_bps_L1': 10018882272.0,
'tx_pps': 2354091.0,
'tx_util': 100.18882272}}
26/02/2020 01:26:07 pktgen: {'ibytes': 12042354176,
'ierrors': 0,
'ipackets': 23520222,
'obytes': 12042371072,
'oerrors': 0,
'opackets': 23520254,
'rx_bps': 9642237952.0,
'rx_bps_L1': 10018892832.0,
'rx_pps': 2354093.0,
'rx_util': 100.18892831999999,
'tx_bps': 9642227712.0,
'tx_bps_L1': 10018882272.0,
'tx_pps': 2354091.0,
'tx_util': 100.18882272}
26/02/2020 01:26:07 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9642227712.000000, tx_pps: 2354091.000000
26/02/2020 01:26:07 pktgen: {'ibytes': 12042354176,
'ierrors': 0,
'ipackets': 23520222,
'obytes': 12042371072,
'oerrors': 0,
'opackets': 23520254,
'rx_bps': 9642237952.0,
'rx_bps_L1': 10018892832.0,
'rx_pps': 2354093.0,
'rx_util': 100.18892831999999,
'tx_bps': 9642227712.0,
'tx_bps_L1': 10018882272.0,
'tx_pps': 2354091.0,
'tx_util': 100.18882272}
26/02/2020 01:26:07 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9642237952.000000, rx_pps: 2354093.000000
26/02/2020 01:26:07 pktgen: throughput: pps_rx 2354093.000000, bps_rx 9642237952.000000
26/02/2020 01:26:07 pktgen: traffic completed.
26/02/2020 01:26:07 tester: ls -d /tmp
26/02/2020 01:26:07 tester: /tmp
26/02/2020 01:26:07 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:26:09 pktgen: test port 0 map gen port 0
26/02/2020 01:26:09 pktgen: test port 0 map gen port 0
26/02/2020 01:26:09 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:26:09 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:26:09 pktgen: begin traffic ......
26/02/2020 01:26:09 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:26:14 pktgen: traffic completed.
26/02/2020 01:26:14 pktgen: begin traffic ......
26/02/2020 01:26:14 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:26:24 pktgen: begin get port statistic ...
26/02/2020 01:26:24 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:26:24 pktgen: {0: {'ibytes': 12272864256,
'ierrors': 0,
'ipackets': 11985218,
'obytes': 12272881664,
'oerrors': 0,
'opackets': 11985236,
'rx_bps': 9832147968.0,
'rx_bps_L1': 10024184248.0,
'rx_pps': 1200226.75,
'rx_util': 100.24184248,
'tx_bps': 9832148992.0,
'tx_bps_L1': 10024185312.0,
'tx_pps': 1200227.0,
'tx_util': 100.24185312},
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': {'bw_per_core': 683.884033203125,
'cpu_util': 0.7188462018966675,
'queue_full': 0,
'rx_bps': 9832147968.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 1200226.75,
'tx_bps': 9832148992.0,
'tx_pps': 1200227.0},
'latency': {},
'total': {'ibytes': 12272864256,
'ierrors': 0,
'ipackets': 11985218,
'obytes': 12272881664,
'oerrors': 0,
'opackets': 11985236,
'rx_bps': 9832147968.0,
'rx_bps_L1': 10024184248.0,
'rx_pps': 1200226.75,
'rx_util': 100.24184248,
'tx_bps': 9832148992.0,
'tx_bps_L1': 10024185312.0,
'tx_pps': 1200227.0,
'tx_util': 100.24185312}}
26/02/2020 01:26:24 pktgen: {'ibytes': 12272864256,
'ierrors': 0,
'ipackets': 11985218,
'obytes': 12272881664,
'oerrors': 0,
'opackets': 11985236,
'rx_bps': 9832147968.0,
'rx_bps_L1': 10024184248.0,
'rx_pps': 1200226.75,
'rx_util': 100.24184248,
'tx_bps': 9832148992.0,
'tx_bps_L1': 10024185312.0,
'tx_pps': 1200227.0,
'tx_util': 100.24185312}
26/02/2020 01:26:24 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9832148992.000000, tx_pps: 1200227.000000
26/02/2020 01:26:24 pktgen: {'ibytes': 12272864256,
'ierrors': 0,
'ipackets': 11985218,
'obytes': 12272881664,
'oerrors': 0,
'opackets': 11985236,
'rx_bps': 9832147968.0,
'rx_bps_L1': 10024184248.0,
'rx_pps': 1200226.75,
'rx_util': 100.24184248,
'tx_bps': 9832148992.0,
'tx_bps_L1': 10024185312.0,
'tx_pps': 1200227.0,
'tx_util': 100.24185312}
26/02/2020 01:26:24 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9832147968.000000, rx_pps: 1200226.750000
26/02/2020 01:26:24 pktgen: throughput: pps_rx 1200226.750000, bps_rx 9832147968.000000
26/02/2020 01:26:24 pktgen: traffic completed.
26/02/2020 01:26:24 tester: ls -d /tmp
26/02/2020 01:26:24 tester: /tmp
26/02/2020 01:26:24 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:26:26 pktgen: test port 0 map gen port 0
26/02/2020 01:26:26 pktgen: test port 0 map gen port 0
26/02/2020 01:26:26 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:26:26 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:26:26 pktgen: begin traffic ......
26/02/2020 01:26:26 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:26:31 pktgen: traffic completed.
26/02/2020 01:26:31 pktgen: begin traffic ......
26/02/2020 01:26:31 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:26:41 pktgen: begin get port statistic ...
26/02/2020 01:26:41 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:26:41 pktgen: {0: {'ibytes': 12350180832,
'ierrors': 0,
'ipackets': 8135823,
'obytes': 12350197530,
'oerrors': 0,
'opackets': 8135835,
'rx_bps': 9864050688.0,
'rx_bps_L1': 9994012428.0,
'rx_pps': 812260.875,
'rx_util': 99.94012427999999,
'tx_bps': 9864050688.0,
'tx_bps_L1': 9994012448.0,
'tx_pps': 812261.0,
'tx_util': 99.94012448000001},
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': {'bw_per_core': 918.2515258789062,
'cpu_util': 0.5371105074882507,
'queue_full': 0,
'rx_bps': 9864050688.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 812260.875,
'tx_bps': 9864050688.0,
'tx_pps': 812261.0},
'latency': {},
'total': {'ibytes': 12350180832,
'ierrors': 0,
'ipackets': 8135823,
'obytes': 12350197530,
'oerrors': 0,
'opackets': 8135835,
'rx_bps': 9864050688.0,
'rx_bps_L1': 9994012428.0,
'rx_pps': 812260.875,
'rx_util': 99.94012427999999,
'tx_bps': 9864050688.0,
'tx_bps_L1': 9994012448.0,
'tx_pps': 812261.0,
'tx_util': 99.94012448000001}}
26/02/2020 01:26:41 pktgen: {'ibytes': 12350180832,
'ierrors': 0,
'ipackets': 8135823,
'obytes': 12350197530,
'oerrors': 0,
'opackets': 8135835,
'rx_bps': 9864050688.0,
'rx_bps_L1': 9994012428.0,
'rx_pps': 812260.875,
'rx_util': 99.94012427999999,
'tx_bps': 9864050688.0,
'tx_bps_L1': 9994012448.0,
'tx_pps': 812261.0,
'tx_util': 99.94012448000001}
26/02/2020 01:26:41 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9864050688.000000, tx_pps: 812261.000000
26/02/2020 01:26:41 pktgen: {'ibytes': 12350180832,
'ierrors': 0,
'ipackets': 8135823,
'obytes': 12350197530,
'oerrors': 0,
'opackets': 8135835,
'rx_bps': 9864050688.0,
'rx_bps_L1': 9994012428.0,
'rx_pps': 812260.875,
'rx_util': 99.94012427999999,
'tx_bps': 9864050688.0,
'tx_bps_L1': 9994012448.0,
'tx_pps': 812261.0,
'tx_util': 99.94012448000001}
26/02/2020 01:26:41 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9864050688.000000, rx_pps: 812260.875000
26/02/2020 01:26:41 pktgen: throughput: pps_rx 812260.875000, bps_rx 9864050688.000000
26/02/2020 01:26:41 pktgen: traffic completed.
26/02/2020 01:26:47 TestPVPMultiPathVhostPerformance:
+-------+----------------------+-------+------------+
| Frame | Mode | Mpps | % linerate |
+=======+======================+=======+============+
| 64 | inoder mergeable off | 8.307 | 55.821 |
+-------+----------------------+-------+------------+
| 128 | inoder mergeable off | 7.571 | 89.639 |
+-------+----------------------+-------+------------+
| 256 | inoder mergeable off | 4.537 | 100.184 |
+-------+----------------------+-------+------------+
| 512 | inoder mergeable off | 2.354 | 100.190 |
+-------+----------------------+-------+------------+
| 1024 | inoder mergeable off | 1.200 | 100.243 |
+-------+----------------------+-------+------------+
| 1518 | inoder mergeable off | 0.812 | 99.941 |
+-------+----------------------+-------+------------+
26/02/2020 01:26:47 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_inorder_no_mergeable Result PASSED:
26/02/2020 01:26:47 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:26:47 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:26:47 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_mergeable Begin
26/02/2020 01:26:47 dut.10.238.54.213:
26/02/2020 01:26:47 tester:
26/02/2020 01:26:51 dut.10.238.54.213: rm -rf ./vhost.out
26/02/2020 01:26:51 dut.10.238.54.213:
26/02/2020 01:26:51 dut.10.238.54.213: rm -rf ./vhost-net*
26/02/2020 01:26:51 dut.10.238.54.213:
26/02/2020 01:26:51 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:26:51 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:26:51 dut.10.238.54.213: killall -s INT qemu-system-x86_64
26/02/2020 01:26:51 dut.10.238.54.213: qemu-system-x86_64: no process found
26/02/2020 01:27:00 dut.10.238.54.213: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
26/02/2020 01:27:00 dut.10.238.54.213: 2048
26/02/2020 01:27:09 tester: ls -d /tmp
26/02/2020 01:27:09 tester: /tmp
26/02/2020 01:27:09 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:27:11 pktgen: test port 0 map gen port 0
26/02/2020 01:27:11 pktgen: test port 0 map gen port 0
26/02/2020 01:27:11 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:27:11 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:27:11 pktgen: begin traffic ......
26/02/2020 01:27:11 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:27:16 pktgen: traffic completed.
26/02/2020 01:27:16 pktgen: begin traffic ......
26/02/2020 01:27:16 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:27:26 pktgen: begin get port statistic ...
26/02/2020 01:27:26 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:27:26 pktgen: {0: {'ibytes': 5156837184,
'ierrors': 0,
'ipackets': 80575573,
'obytes': 9533397120,
'oerrors': 0,
'opackets': 148959322,
'rx_bps': 4118052352.0,
'rx_bps_L1': 5404943392.0,
'rx_pps': 8043069.0,
'rx_util': 54.04943392,
'tx_bps': 7613810176.0,
'tx_bps_L1': 9993125696.0,
'tx_pps': 14870722.0,
'tx_util': 99.93125696},
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': {'bw_per_core': 34.74821853637695,
'cpu_util': 10.955684661865234,
'queue_full': 0,
'rx_bps': 4118052352.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 3495757824.0,
'rx_pps': 8043069.0,
'tx_bps': 7613810176.0,
'tx_pps': 14870722.0},
'latency': {},
'total': {'ibytes': 5156837184,
'ierrors': 0,
'ipackets': 80575573,
'obytes': 9533397120,
'oerrors': 0,
'opackets': 148959322,
'rx_bps': 4118052352.0,
'rx_bps_L1': 5404943392.0,
'rx_pps': 8043069.0,
'rx_util': 54.04943392,
'tx_bps': 7613810176.0,
'tx_bps_L1': 9993125696.0,
'tx_pps': 14870722.0,
'tx_util': 99.93125696}}
26/02/2020 01:27:26 pktgen: {'ibytes': 5156837184,
'ierrors': 0,
'ipackets': 80575573,
'obytes': 9533397120,
'oerrors': 0,
'opackets': 148959322,
'rx_bps': 4118052352.0,
'rx_bps_L1': 5404943392.0,
'rx_pps': 8043069.0,
'rx_util': 54.04943392,
'tx_bps': 7613810176.0,
'tx_bps_L1': 9993125696.0,
'tx_pps': 14870722.0,
'tx_util': 99.93125696}
26/02/2020 01:27:26 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 7613810176.000000, tx_pps: 14870722.000000
26/02/2020 01:27:26 pktgen: {'ibytes': 5156837184,
'ierrors': 0,
'ipackets': 80575573,
'obytes': 9533397120,
'oerrors': 0,
'opackets': 148959322,
'rx_bps': 4118052352.0,
'rx_bps_L1': 5404943392.0,
'rx_pps': 8043069.0,
'rx_util': 54.04943392,
'tx_bps': 7613810176.0,
'tx_bps_L1': 9993125696.0,
'tx_pps': 14870722.0,
'tx_util': 99.93125696}
26/02/2020 01:27:26 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 4118052352.000000, rx_pps: 8043069.000000
26/02/2020 01:27:26 pktgen: throughput: pps_rx 8043069.000000, bps_rx 4118052352.000000
26/02/2020 01:27:26 pktgen: traffic completed.
26/02/2020 01:27:26 tester: ls -d /tmp
26/02/2020 01:27:26 tester: /tmp
26/02/2020 01:27:26 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:27:28 pktgen: test port 0 map gen port 0
26/02/2020 01:27:28 pktgen: test port 0 map gen port 0
26/02/2020 01:27:28 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:27:28 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:27:28 pktgen: begin traffic ......
26/02/2020 01:27:28 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:27:33 pktgen: traffic completed.
26/02/2020 01:27:33 pktgen: begin traffic ......
26/02/2020 01:27:33 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:27:43 pktgen: begin get port statistic ...
26/02/2020 01:27:43 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:27:43 pktgen: {0: {'ibytes': 9349240192,
'ierrors': 0,
'ipackets': 73040939,
'obytes': 10820721536,
'oerrors': 0,
'opackets': 84536883,
'rx_bps': 7485478912.0,
'rx_bps_L1': 8655096112.0,
'rx_pps': 7310107.5,
'rx_util': 86.55096112,
'tx_bps': 8663789568.0,
'tx_bps_L1': 10017527488.0,
'tx_pps': 8460862.0,
'tx_util': 100.17527488},
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': {'bw_per_core': 75.19393920898438,
'cpu_util': 5.760962963104248,
'queue_full': 0,
'rx_bps': 7485478912.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 1178311040.0,
'rx_pps': 7310107.5,
'tx_bps': 8663789568.0,
'tx_pps': 8460862.0},
'latency': {},
'total': {'ibytes': 9349240192,
'ierrors': 0,
'ipackets': 73040939,
'obytes': 10820721536,
'oerrors': 0,
'opackets': 84536883,
'rx_bps': 7485478912.0,
'rx_bps_L1': 8655096112.0,
'rx_pps': 7310107.5,
'rx_util': 86.55096112,
'tx_bps': 8663789568.0,
'tx_bps_L1': 10017527488.0,
'tx_pps': 8460862.0,
'tx_util': 100.17527488}}
26/02/2020 01:27:43 pktgen: {'ibytes': 9349240192,
'ierrors': 0,
'ipackets': 73040939,
'obytes': 10820721536,
'oerrors': 0,
'opackets': 84536883,
'rx_bps': 7485478912.0,
'rx_bps_L1': 8655096112.0,
'rx_pps': 7310107.5,
'rx_util': 86.55096112,
'tx_bps': 8663789568.0,
'tx_bps_L1': 10017527488.0,
'tx_pps': 8460862.0,
'tx_util': 100.17527488}
26/02/2020 01:27:43 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 8663789568.000000, tx_pps: 8460862.000000
26/02/2020 01:27:43 pktgen: {'ibytes': 9349240192,
'ierrors': 0,
'ipackets': 73040939,
'obytes': 10820721536,
'oerrors': 0,
'opackets': 84536883,
'rx_bps': 7485478912.0,
'rx_bps_L1': 8655096112.0,
'rx_pps': 7310107.5,
'rx_util': 86.55096112,
'tx_bps': 8663789568.0,
'tx_bps_L1': 10017527488.0,
'tx_pps': 8460862.0,
'tx_util': 100.17527488}
26/02/2020 01:27:43 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 7485478912.000000, rx_pps: 7310107.500000
26/02/2020 01:27:43 pktgen: throughput: pps_rx 7310107.500000, bps_rx 7485478912.000000
26/02/2020 01:27:43 pktgen: traffic completed.
26/02/2020 01:27:43 tester: ls -d /tmp
26/02/2020 01:27:43 tester: /tmp
26/02/2020 01:27:43 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:27:45 pktgen: test port 0 map gen port 0
26/02/2020 01:27:45 pktgen: test port 0 map gen port 0
26/02/2020 01:27:45 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:27:45 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:27:45 pktgen: begin traffic ......
26/02/2020 01:27:45 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:27:50 pktgen: traffic completed.
26/02/2020 01:27:50 pktgen: begin traffic ......
26/02/2020 01:27:50 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:28:00 pktgen: begin get port statistic ...
26/02/2020 01:28:00 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:28:00 pktgen: {0: {'ibytes': 11604971776,
'ierrors': 0,
'ipackets': 45331919,
'obytes': 11604995840,
'oerrors': 0,
'opackets': 45332013,
'rx_bps': 9269296128.0,
'rx_bps_L1': 9993468128.0,
'rx_pps': 4526075.0,
'rx_util': 99.93468128,
'tx_bps': 9269308416.0,
'tx_bps_L1': 9993482656.0,
'tx_pps': 4526089.0,
'tx_util': 99.93482656},
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': {'bw_per_core': 161.89779663085938,
'cpu_util': 2.862703561782837,
'queue_full': 0,
'rx_bps': 9269296128.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 4526075.0,
'tx_bps': 9269308416.0,
'tx_pps': 4526089.0},
'latency': {},
'total': {'ibytes': 11604971776,
'ierrors': 0,
'ipackets': 45331919,
'obytes': 11604995840,
'oerrors': 0,
'opackets': 45332013,
'rx_bps': 9269296128.0,
'rx_bps_L1': 9993468128.0,
'rx_pps': 4526075.0,
'rx_util': 99.93468128,
'tx_bps': 9269308416.0,
'tx_bps_L1': 9993482656.0,
'tx_pps': 4526089.0,
'tx_util': 99.93482656}}
26/02/2020 01:28:00 pktgen: {'ibytes': 11604971776,
'ierrors': 0,
'ipackets': 45331919,
'obytes': 11604995840,
'oerrors': 0,
'opackets': 45332013,
'rx_bps': 9269296128.0,
'rx_bps_L1': 9993468128.0,
'rx_pps': 4526075.0,
'rx_util': 99.93468128,
'tx_bps': 9269308416.0,
'tx_bps_L1': 9993482656.0,
'tx_pps': 4526089.0,
'tx_util': 99.93482656}
26/02/2020 01:28:00 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9269308416.000000, tx_pps: 4526089.000000
26/02/2020 01:28:00 pktgen: {'ibytes': 11604971776,
'ierrors': 0,
'ipackets': 45331919,
'obytes': 11604995840,
'oerrors': 0,
'opackets': 45332013,
'rx_bps': 9269296128.0,
'rx_bps_L1': 9993468128.0,
'rx_pps': 4526075.0,
'rx_util': 99.93468128,
'tx_bps': 9269308416.0,
'tx_bps_L1': 9993482656.0,
'tx_pps': 4526089.0,
'tx_util': 99.93482656}
26/02/2020 01:28:00 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9269296128.000000, rx_pps: 4526075.000000
26/02/2020 01:28:00 pktgen: throughput: pps_rx 4526075.000000, bps_rx 9269296128.000000
26/02/2020 01:28:00 pktgen: traffic completed.
26/02/2020 01:28:00 tester: ls -d /tmp
26/02/2020 01:28:00 tester: /tmp
26/02/2020 01:28:00 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:28:02 pktgen: test port 0 map gen port 0
26/02/2020 01:28:02 pktgen: test port 0 map gen port 0
26/02/2020 01:28:02 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:28:02 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:28:02 pktgen: begin traffic ......
26/02/2020 01:28:02 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:28:07 pktgen: traffic completed.
26/02/2020 01:28:07 pktgen: begin traffic ......
26/02/2020 01:28:07 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:28:17 pktgen: begin get port statistic ...
26/02/2020 01:28:17 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:28:17 pktgen: {0: {'ibytes': 12043350016,
'ierrors': 0,
'ipackets': 23522167,
'obytes': 12043366912,
'oerrors': 0,
'opackets': 23522200,
'rx_bps': 9601442816.0,
'rx_bps_L1': 9976503615.999998,
'rx_pps': 2344130.0,
'rx_util': 99.76503615999998,
'tx_bps': 9601441792.0,
'tx_bps_L1': 9976502552.0,
'tx_pps': 2344129.75,
'tx_util': 99.76502552},
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': {'bw_per_core': 313.6974182128906,
'cpu_util': 1.5303666591644287,
'queue_full': 0,
'rx_bps': 9601442816.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 2344130.0,
'tx_bps': 9601441792.0,
'tx_pps': 2344129.75},
'latency': {},
'total': {'ibytes': 12043350016,
'ierrors': 0,
'ipackets': 23522167,
'obytes': 12043366912,
'oerrors': 0,
'opackets': 23522200,
'rx_bps': 9601442816.0,
'rx_bps_L1': 9976503615.999998,
'rx_pps': 2344130.0,
'rx_util': 99.76503615999998,
'tx_bps': 9601441792.0,
'tx_bps_L1': 9976502552.0,
'tx_pps': 2344129.75,
'tx_util': 99.76502552}}
26/02/2020 01:28:17 pktgen: {'ibytes': 12043350016,
'ierrors': 0,
'ipackets': 23522167,
'obytes': 12043366912,
'oerrors': 0,
'opackets': 23522200,
'rx_bps': 9601442816.0,
'rx_bps_L1': 9976503615.999998,
'rx_pps': 2344130.0,
'rx_util': 99.76503615999998,
'tx_bps': 9601441792.0,
'tx_bps_L1': 9976502552.0,
'tx_pps': 2344129.75,
'tx_util': 99.76502552}
26/02/2020 01:28:17 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9601441792.000000, tx_pps: 2344129.750000
26/02/2020 01:28:17 pktgen: {'ibytes': 12043350016,
'ierrors': 0,
'ipackets': 23522167,
'obytes': 12043366912,
'oerrors': 0,
'opackets': 23522200,
'rx_bps': 9601442816.0,
'rx_bps_L1': 9976503615.999998,
'rx_pps': 2344130.0,
'rx_util': 99.76503615999998,
'tx_bps': 9601441792.0,
'tx_bps_L1': 9976502552.0,
'tx_pps': 2344129.75,
'tx_util': 99.76502552}
26/02/2020 01:28:17 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9601442816.000000, rx_pps: 2344130.000000
26/02/2020 01:28:17 pktgen: throughput: pps_rx 2344130.000000, bps_rx 9601442816.000000
26/02/2020 01:28:17 pktgen: traffic completed.
26/02/2020 01:28:17 tester: ls -d /tmp
26/02/2020 01:28:17 tester: /tmp
26/02/2020 01:28:17 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:28:19 pktgen: test port 0 map gen port 0
26/02/2020 01:28:19 pktgen: test port 0 map gen port 0
26/02/2020 01:28:19 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:28:19 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:28:19 pktgen: begin traffic ......
26/02/2020 01:28:19 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:28:24 pktgen: traffic completed.
26/02/2020 01:28:24 pktgen: begin traffic ......
26/02/2020 01:28:24 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:28:34 pktgen: begin get port statistic ...
26/02/2020 01:28:34 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:28:34 pktgen: {0: {'ibytes': 12272976896,
'ierrors': 0,
'ipackets': 11985328,
'obytes': 12272994304,
'oerrors': 0,
'opackets': 11985345,
'rx_bps': 9785686016.0,
'rx_bps_L1': 9976814656.0,
'rx_pps': 1194554.0,
'rx_util': 99.76814656,
'tx_bps': 9785678848.0,
'tx_bps_L1': 9976807348.0,
'tx_pps': 1194553.125,
'tx_util': 99.76807348},
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': {'bw_per_core': 651.6607666015625,
'cpu_util': 0.7508261799812317,
'queue_full': 0,
'rx_bps': 9785686016.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 1194554.0,
'tx_bps': 9785678848.0,
'tx_pps': 1194553.125},
'latency': {},
'total': {'ibytes': 12272976896,
'ierrors': 0,
'ipackets': 11985328,
'obytes': 12272994304,
'oerrors': 0,
'opackets': 11985345,
'rx_bps': 9785686016.0,
'rx_bps_L1': 9976814656.0,
'rx_pps': 1194554.0,
'rx_util': 99.76814656,
'tx_bps': 9785678848.0,
'tx_bps_L1': 9976807348.0,
'tx_pps': 1194553.125,
'tx_util': 99.76807348}}
26/02/2020 01:28:34 pktgen: {'ibytes': 12272976896,
'ierrors': 0,
'ipackets': 11985328,
'obytes': 12272994304,
'oerrors': 0,
'opackets': 11985345,
'rx_bps': 9785686016.0,
'rx_bps_L1': 9976814656.0,
'rx_pps': 1194554.0,
'rx_util': 99.76814656,
'tx_bps': 9785678848.0,
'tx_bps_L1': 9976807348.0,
'tx_pps': 1194553.125,
'tx_util': 99.76807348}
26/02/2020 01:28:34 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9785678848.000000, tx_pps: 1194553.125000
26/02/2020 01:28:34 pktgen: {'ibytes': 12272976896,
'ierrors': 0,
'ipackets': 11985328,
'obytes': 12272994304,
'oerrors': 0,
'opackets': 11985345,
'rx_bps': 9785686016.0,
'rx_bps_L1': 9976814656.0,
'rx_pps': 1194554.0,
'rx_util': 99.76814656,
'tx_bps': 9785678848.0,
'tx_bps_L1': 9976807348.0,
'tx_pps': 1194553.125,
'tx_util': 99.76807348}
26/02/2020 01:28:34 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9785686016.000000, rx_pps: 1194554.000000
26/02/2020 01:28:34 pktgen: throughput: pps_rx 1194554.000000, bps_rx 9785686016.000000
26/02/2020 01:28:34 pktgen: traffic completed.
26/02/2020 01:28:34 tester: ls -d /tmp
26/02/2020 01:28:34 tester: /tmp
26/02/2020 01:28:34 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:28:36 pktgen: test port 0 map gen port 0
26/02/2020 01:28:36 pktgen: test port 0 map gen port 0
26/02/2020 01:28:36 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:28:36 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:28:36 pktgen: begin traffic ......
26/02/2020 01:28:36 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:28:41 pktgen: traffic completed.
26/02/2020 01:28:41 pktgen: begin traffic ......
26/02/2020 01:28:41 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:28:51 pktgen: begin get port statistic ...
26/02/2020 01:28:51 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:28:51 pktgen: {0: {'ibytes': 12349931880,
'ierrors': 0,
'ipackets': 8135659,
'obytes': 12349948578,
'oerrors': 0,
'opackets': 8135671,
'rx_bps': 9862086656.0,
'rx_bps_L1': 9992022956.0,
'rx_pps': 812101.875,
'rx_util': 99.92022956,
'tx_bps': 9862090752.0,
'tx_bps_L1': 9992027132.0,
'tx_pps': 812102.375,
'tx_util': 99.92027132},
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': {'bw_per_core': 908.1961669921875,
'cpu_util': 0.542949378490448,
'queue_full': 0,
'rx_bps': 9862086656.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 812101.875,
'tx_bps': 9862090752.0,
'tx_pps': 812102.375},
'latency': {},
'total': {'ibytes': 12349931880,
'ierrors': 0,
'ipackets': 8135659,
'obytes': 12349948578,
'oerrors': 0,
'opackets': 8135671,
'rx_bps': 9862086656.0,
'rx_bps_L1': 9992022956.0,
'rx_pps': 812101.875,
'rx_util': 99.92022956,
'tx_bps': 9862090752.0,
'tx_bps_L1': 9992027132.0,
'tx_pps': 812102.375,
'tx_util': 99.92027132}}
26/02/2020 01:28:51 pktgen: {'ibytes': 12349931880,
'ierrors': 0,
'ipackets': 8135659,
'obytes': 12349948578,
'oerrors': 0,
'opackets': 8135671,
'rx_bps': 9862086656.0,
'rx_bps_L1': 9992022956.0,
'rx_pps': 812101.875,
'rx_util': 99.92022956,
'tx_bps': 9862090752.0,
'tx_bps_L1': 9992027132.0,
'tx_pps': 812102.375,
'tx_util': 99.92027132}
26/02/2020 01:28:51 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9862090752.000000, tx_pps: 812102.375000
26/02/2020 01:28:51 pktgen: {'ibytes': 12349931880,
'ierrors': 0,
'ipackets': 8135659,
'obytes': 12349948578,
'oerrors': 0,
'opackets': 8135671,
'rx_bps': 9862086656.0,
'rx_bps_L1': 9992022956.0,
'rx_pps': 812101.875,
'rx_util': 99.92022956,
'tx_bps': 9862090752.0,
'tx_bps_L1': 9992027132.0,
'tx_pps': 812102.375,
'tx_util': 99.92027132}
26/02/2020 01:28:51 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9862086656.000000, rx_pps: 812101.875000
26/02/2020 01:28:51 pktgen: throughput: pps_rx 812101.875000, bps_rx 9862086656.000000
26/02/2020 01:28:51 pktgen: traffic completed.
26/02/2020 01:28:56 TestPVPMultiPathVhostPerformance:
+-------+--------------+-------+------------+
| Frame | Mode | Mpps | % linerate |
+=======+==============+=======+============+
| 64 | mergeable on | 8.043 | 54.049 |
+-------+--------------+-------+------------+
| 128 | mergeable on | 7.310 | 86.552 |
+-------+--------------+-------+------------+
| 256 | mergeable on | 4.526 | 99.936 |
+-------+--------------+-------+------------+
| 512 | mergeable on | 2.344 | 99.766 |
+-------+--------------+-------+------------+
| 1024 | mergeable on | 1.195 | 99.769 |
+-------+--------------+-------+------------+
| 1518 | mergeable on | 0.812 | 99.921 |
+-------+--------------+-------+------------+
26/02/2020 01:28:56 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_mergeable Result PASSED:
26/02/2020 01:28:56 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:28:57 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:28:57 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_normal Begin
26/02/2020 01:28:57 dut.10.238.54.213:
26/02/2020 01:28:57 tester:
26/02/2020 01:29:01 dut.10.238.54.213: rm -rf ./vhost.out
26/02/2020 01:29:01 dut.10.238.54.213:
26/02/2020 01:29:01 dut.10.238.54.213: rm -rf ./vhost-net*
26/02/2020 01:29:01 dut.10.238.54.213:
26/02/2020 01:29:01 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:29:01 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:29:01 dut.10.238.54.213: killall -s INT qemu-system-x86_64
26/02/2020 01:29:01 dut.10.238.54.213: qemu-system-x86_64: no process found
26/02/2020 01:29:09 dut.10.238.54.213: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
26/02/2020 01:29:09 dut.10.238.54.213: 2048
26/02/2020 01:29:18 tester: ls -d /tmp
26/02/2020 01:29:19 tester: /tmp
26/02/2020 01:29:19 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:29:20 pktgen: test port 0 map gen port 0
26/02/2020 01:29:20 pktgen: test port 0 map gen port 0
26/02/2020 01:29:20 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:29:20 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:29:20 pktgen: begin traffic ......
26/02/2020 01:29:20 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:29:25 pktgen: traffic completed.
26/02/2020 01:29:25 pktgen: begin traffic ......
26/02/2020 01:29:25 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:29:35 pktgen: begin get port statistic ...
26/02/2020 01:29:35 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:29:35 pktgen: {0: {'ibytes': 5237027200,
'ierrors': 0,
'ipackets': 81828545,
'obytes': 9532521600,
'oerrors': 0,
'opackets': 148945641,
'rx_bps': 4183580672.0,
'rx_bps_L1': 5490950032.0,
'rx_pps': 8171058.5,
'rx_util': 54.90950032000001,
'tx_bps': 7613162496.0,
'tx_bps_L1': 9992275776.0,
'tx_pps': 14869458.0,
'tx_util': 99.92275776},
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': {'bw_per_core': 33.986446380615234,
'cpu_util': 11.200291633605957,
'queue_full': 0,
'rx_bps': 4183580672.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 3429582080.0,
'rx_pps': 8171058.5,
'tx_bps': 7613162496.0,
'tx_pps': 14869458.0},
'latency': {},
'total': {'ibytes': 5237027200,
'ierrors': 0,
'ipackets': 81828545,
'obytes': 9532521600,
'oerrors': 0,
'opackets': 148945641,
'rx_bps': 4183580672.0,
'rx_bps_L1': 5490950032.0,
'rx_pps': 8171058.5,
'rx_util': 54.90950032000001,
'tx_bps': 7613162496.0,
'tx_bps_L1': 9992275776.0,
'tx_pps': 14869458.0,
'tx_util': 99.92275776}}
26/02/2020 01:29:35 pktgen: {'ibytes': 5237027200,
'ierrors': 0,
'ipackets': 81828545,
'obytes': 9532521600,
'oerrors': 0,
'opackets': 148945641,
'rx_bps': 4183580672.0,
'rx_bps_L1': 5490950032.0,
'rx_pps': 8171058.5,
'rx_util': 54.90950032000001,
'tx_bps': 7613162496.0,
'tx_bps_L1': 9992275776.0,
'tx_pps': 14869458.0,
'tx_util': 99.92275776}
26/02/2020 01:29:35 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 7613162496.000000, tx_pps: 14869458.000000
26/02/2020 01:29:35 pktgen: {'ibytes': 5237027200,
'ierrors': 0,
'ipackets': 81828545,
'obytes': 9532521600,
'oerrors': 0,
'opackets': 148945641,
'rx_bps': 4183580672.0,
'rx_bps_L1': 5490950032.0,
'rx_pps': 8171058.5,
'rx_util': 54.90950032000001,
'tx_bps': 7613162496.0,
'tx_bps_L1': 9992275776.0,
'tx_pps': 14869458.0,
'tx_util': 99.92275776}
26/02/2020 01:29:35 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 4183580672.000000, rx_pps: 8171058.500000
26/02/2020 01:29:35 pktgen: throughput: pps_rx 8171058.500000, bps_rx 4183580672.000000
26/02/2020 01:29:35 pktgen: traffic completed.
26/02/2020 01:29:35 tester: ls -d /tmp
26/02/2020 01:29:36 tester: /tmp
26/02/2020 01:29:36 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:29:37 pktgen: test port 0 map gen port 0
26/02/2020 01:29:37 pktgen: test port 0 map gen port 0
26/02/2020 01:29:37 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:29:37 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:29:37 pktgen: begin traffic ......
26/02/2020 01:29:37 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:29:42 pktgen: traffic completed.
26/02/2020 01:29:42 pktgen: begin traffic ......
26/02/2020 01:29:42 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:29:52 pktgen: begin get port statistic ...
26/02/2020 01:29:52 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:29:52 pktgen: {0: {'ibytes': 9456953088,
'ierrors': 0,
'ipackets': 73882442,
'obytes': 10821711360,
'oerrors': 0,
'opackets': 84544615,
'rx_bps': 7540589568.0,
'rx_bps_L1': 8718813888.0,
'rx_pps': 7363902.0,
'rx_util': 87.18813888,
'tx_bps': 8628734976.0,
'tx_bps_L1': 9976988096.000002,
'tx_pps': 8426582.0,
'tx_util': 99.76988096000002},
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': {'bw_per_core': 72.52971649169922,
'cpu_util': 5.948413848876953,
'queue_full': 0,
'rx_bps': 7540589568.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 1088146048.0,
'rx_pps': 7363902.0,
'tx_bps': 8628734976.0,
'tx_pps': 8426582.0},
'latency': {},
'total': {'ibytes': 9456953088,
'ierrors': 0,
'ipackets': 73882442,
'obytes': 10821711360,
'oerrors': 0,
'opackets': 84544615,
'rx_bps': 7540589568.0,
'rx_bps_L1': 8718813888.0,
'rx_pps': 7363902.0,
'rx_util': 87.18813888,
'tx_bps': 8628734976.0,
'tx_bps_L1': 9976988096.000002,
'tx_pps': 8426582.0,
'tx_util': 99.76988096000002}}
26/02/2020 01:29:52 pktgen: {'ibytes': 9456953088,
'ierrors': 0,
'ipackets': 73882442,
'obytes': 10821711360,
'oerrors': 0,
'opackets': 84544615,
'rx_bps': 7540589568.0,
'rx_bps_L1': 8718813888.0,
'rx_pps': 7363902.0,
'rx_util': 87.18813888,
'tx_bps': 8628734976.0,
'tx_bps_L1': 9976988096.000002,
'tx_pps': 8426582.0,
'tx_util': 99.76988096000002}
26/02/2020 01:29:52 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 8628734976.000000, tx_pps: 8426582.000000
26/02/2020 01:29:52 pktgen: {'ibytes': 9456953088,
'ierrors': 0,
'ipackets': 73882442,
'obytes': 10821711360,
'oerrors': 0,
'opackets': 84544615,
'rx_bps': 7540589568.0,
'rx_bps_L1': 8718813888.0,
'rx_pps': 7363902.0,
'rx_util': 87.18813888,
'tx_bps': 8628734976.0,
'tx_bps_L1': 9976988096.000002,
'tx_pps': 8426582.0,
'tx_util': 99.76988096000002}
26/02/2020 01:29:52 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 7540589568.000000, rx_pps: 7363902.000000
26/02/2020 01:29:52 pktgen: throughput: pps_rx 7363902.000000, bps_rx 7540589568.000000
26/02/2020 01:29:52 pktgen: traffic completed.
26/02/2020 01:29:52 tester: ls -d /tmp
26/02/2020 01:29:53 tester: /tmp
26/02/2020 01:29:53 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:29:54 pktgen: test port 0 map gen port 0
26/02/2020 01:29:54 pktgen: test port 0 map gen port 0
26/02/2020 01:29:54 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:29:54 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:29:54 pktgen: begin traffic ......
26/02/2020 01:29:54 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:29:59 pktgen: traffic completed.
26/02/2020 01:29:59 pktgen: begin traffic ......
26/02/2020 01:29:59 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:30:09 pktgen: begin get port statistic ...
26/02/2020 01:30:09 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:30:09 pktgen: {0: {'ibytes': 11605946624,
'ierrors': 0,
'ipackets': 45335727,
'obytes': 11605971712,
'oerrors': 0,
'opackets': 45335824,
'rx_bps': 9269795840.0,
'rx_bps_L1': 9994009440.0,
'rx_pps': 4526335.0,
'rx_util': 99.9400944,
'tx_bps': 9269813248.0,
'tx_bps_L1': 9994029728.0,
'tx_pps': 4526353.0,
'tx_util': 99.94029728},
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': {'bw_per_core': 201.7244873046875,
'cpu_util': 2.2976419925689697,
'queue_full': 0,
'rx_bps': 9269795840.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 4526335.0,
'tx_bps': 9269813248.0,
'tx_pps': 4526353.0},
'latency': {},
'total': {'ibytes': 11605946624,
'ierrors': 0,
'ipackets': 45335727,
'obytes': 11605971712,
'oerrors': 0,
'opackets': 45335824,
'rx_bps': 9269795840.0,
'rx_bps_L1': 9994009440.0,
'rx_pps': 4526335.0,
'rx_util': 99.9400944,
'tx_bps': 9269813248.0,
'tx_bps_L1': 9994029728.0,
'tx_pps': 4526353.0,
'tx_util': 99.94029728}}
26/02/2020 01:30:09 pktgen: {'ibytes': 11605946624,
'ierrors': 0,
'ipackets': 45335727,
'obytes': 11605971712,
'oerrors': 0,
'opackets': 45335824,
'rx_bps': 9269795840.0,
'rx_bps_L1': 9994009440.0,
'rx_pps': 4526335.0,
'rx_util': 99.9400944,
'tx_bps': 9269813248.0,
'tx_bps_L1': 9994029728.0,
'tx_pps': 4526353.0,
'tx_util': 99.94029728}
26/02/2020 01:30:09 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9269813248.000000, tx_pps: 4526353.000000
26/02/2020 01:30:09 pktgen: {'ibytes': 11605946624,
'ierrors': 0,
'ipackets': 45335727,
'obytes': 11605971712,
'oerrors': 0,
'opackets': 45335824,
'rx_bps': 9269795840.0,
'rx_bps_L1': 9994009440.0,
'rx_pps': 4526335.0,
'rx_util': 99.9400944,
'tx_bps': 9269813248.0,
'tx_bps_L1': 9994029728.0,
'tx_pps': 4526353.0,
'tx_util': 99.94029728}
26/02/2020 01:30:09 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9269795840.000000, rx_pps: 4526335.000000
26/02/2020 01:30:09 pktgen: throughput: pps_rx 4526335.000000, bps_rx 9269795840.000000
26/02/2020 01:30:09 pktgen: traffic completed.
26/02/2020 01:30:09 tester: ls -d /tmp
26/02/2020 01:30:10 tester: /tmp
26/02/2020 01:30:10 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:30:11 pktgen: test port 0 map gen port 0
26/02/2020 01:30:11 pktgen: test port 0 map gen port 0
26/02/2020 01:30:11 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:30:11 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:30:11 pktgen: begin traffic ......
26/02/2020 01:30:11 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:30:16 pktgen: traffic completed.
26/02/2020 01:30:16 pktgen: begin traffic ......
26/02/2020 01:30:16 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:30:26 pktgen: begin get port statistic ...
26/02/2020 01:30:26 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:30:26 pktgen: {0: {'ibytes': 12042088448,
'ierrors': 0,
'ipackets': 23519703,
'obytes': 12042107904,
'oerrors': 0,
'opackets': 23519741,
'rx_bps': 9614432256.0,
'rx_bps_L1': 9990001376.0,
'rx_pps': 2347307.0,
'rx_util': 99.90001376,
'tx_bps': 9614422016.0,
'tx_bps_L1': 9989990736.0,
'tx_pps': 2347304.5,
'tx_util': 99.89990736},
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': {'bw_per_core': 313.95318603515625,
'cpu_util': 1.5311871767044067,
'queue_full': 0,
'rx_bps': 9614432256.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 2347307.0,
'tx_bps': 9614422016.0,
'tx_pps': 2347304.5},
'latency': {},
'total': {'ibytes': 12042088448,
'ierrors': 0,
'ipackets': 23519703,
'obytes': 12042107904,
'oerrors': 0,
'opackets': 23519741,
'rx_bps': 9614432256.0,
'rx_bps_L1': 9990001376.0,
'rx_pps': 2347307.0,
'rx_util': 99.90001376,
'tx_bps': 9614422016.0,
'tx_bps_L1': 9989990736.0,
'tx_pps': 2347304.5,
'tx_util': 99.89990736}}
26/02/2020 01:30:26 pktgen: {'ibytes': 12042088448,
'ierrors': 0,
'ipackets': 23519703,
'obytes': 12042107904,
'oerrors': 0,
'opackets': 23519741,
'rx_bps': 9614432256.0,
'rx_bps_L1': 9990001376.0,
'rx_pps': 2347307.0,
'rx_util': 99.90001376,
'tx_bps': 9614422016.0,
'tx_bps_L1': 9989990736.0,
'tx_pps': 2347304.5,
'tx_util': 99.89990736}
26/02/2020 01:30:26 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9614422016.000000, tx_pps: 2347304.500000
26/02/2020 01:30:26 pktgen: {'ibytes': 12042088448,
'ierrors': 0,
'ipackets': 23519703,
'obytes': 12042107904,
'oerrors': 0,
'opackets': 23519741,
'rx_bps': 9614432256.0,
'rx_bps_L1': 9990001376.0,
'rx_pps': 2347307.0,
'rx_util': 99.90001376,
'tx_bps': 9614422016.0,
'tx_bps_L1': 9989990736.0,
'tx_pps': 2347304.5,
'tx_util': 99.89990736}
26/02/2020 01:30:26 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9614432256.000000, rx_pps: 2347307.000000
26/02/2020 01:30:26 pktgen: throughput: pps_rx 2347307.000000, bps_rx 9614432256.000000
26/02/2020 01:30:26 pktgen: traffic completed.
26/02/2020 01:30:26 tester: ls -d /tmp
26/02/2020 01:30:27 tester: /tmp
26/02/2020 01:30:27 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:30:28 pktgen: test port 0 map gen port 0
26/02/2020 01:30:28 pktgen: test port 0 map gen port 0
26/02/2020 01:30:28 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:30:28 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:30:28 pktgen: begin traffic ......
26/02/2020 01:30:28 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:30:33 pktgen: traffic completed.
26/02/2020 01:30:33 pktgen: begin traffic ......
26/02/2020 01:30:33 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:30:43 pktgen: begin get port statistic ...
26/02/2020 01:30:43 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:30:43 pktgen: {0: {'ibytes': 12272577536,
'ierrors': 0,
'ipackets': 11984939,
'obytes': 12272594944,
'oerrors': 0,
'opackets': 11984956,
'rx_bps': 9793739776.0,
'rx_bps_L1': 9985026135.999998,
'rx_pps': 1195539.75,
'rx_util': 99.85026135999998,
'tx_bps': 9793739776.0,
'tx_bps_L1': 9985026216.0,
'tx_pps': 1195540.25,
'tx_util': 99.85026216},
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': {'bw_per_core': 685.2960205078125,
'cpu_util': 0.714562714099884,
'queue_full': 0,
'rx_bps': 9793739776.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 1195539.75,
'tx_bps': 9793739776.0,
'tx_pps': 1195540.25},
'latency': {},
'total': {'ibytes': 12272577536,
'ierrors': 0,
'ipackets': 11984939,
'obytes': 12272594944,
'oerrors': 0,
'opackets': 11984956,
'rx_bps': 9793739776.0,
'rx_bps_L1': 9985026135.999998,
'rx_pps': 1195539.75,
'rx_util': 99.85026135999998,
'tx_bps': 9793739776.0,
'tx_bps_L1': 9985026216.0,
'tx_pps': 1195540.25,
'tx_util': 99.85026216}}
26/02/2020 01:30:43 pktgen: {'ibytes': 12272577536,
'ierrors': 0,
'ipackets': 11984939,
'obytes': 12272594944,
'oerrors': 0,
'opackets': 11984956,
'rx_bps': 9793739776.0,
'rx_bps_L1': 9985026135.999998,
'rx_pps': 1195539.75,
'rx_util': 99.85026135999998,
'tx_bps': 9793739776.0,
'tx_bps_L1': 9985026216.0,
'tx_pps': 1195540.25,
'tx_util': 99.85026216}
26/02/2020 01:30:43 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9793739776.000000, tx_pps: 1195540.250000
26/02/2020 01:30:43 pktgen: {'ibytes': 12272577536,
'ierrors': 0,
'ipackets': 11984939,
'obytes': 12272594944,
'oerrors': 0,
'opackets': 11984956,
'rx_bps': 9793739776.0,
'rx_bps_L1': 9985026135.999998,
'rx_pps': 1195539.75,
'rx_util': 99.85026135999998,
'tx_bps': 9793739776.0,
'tx_bps_L1': 9985026216.0,
'tx_pps': 1195540.25,
'tx_util': 99.85026216}
26/02/2020 01:30:43 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9793739776.000000, rx_pps: 1195539.750000
26/02/2020 01:30:43 pktgen: throughput: pps_rx 1195539.750000, bps_rx 9793739776.000000
26/02/2020 01:30:43 pktgen: traffic completed.
26/02/2020 01:30:44 tester: ls -d /tmp
26/02/2020 01:30:44 tester: /tmp
26/02/2020 01:30:44 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:30:45 pktgen: test port 0 map gen port 0
26/02/2020 01:30:45 pktgen: test port 0 map gen port 0
26/02/2020 01:30:45 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:30:45 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:30:45 pktgen: begin traffic ......
26/02/2020 01:30:45 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:30:50 pktgen: traffic completed.
26/02/2020 01:30:50 pktgen: begin traffic ......
26/02/2020 01:30:50 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:31:01 pktgen: begin get port statistic ...
26/02/2020 01:31:01 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:31:01 pktgen: {0: {'ibytes': 12349532646,
'ierrors': 0,
'ipackets': 8135397,
'obytes': 12349550862,
'oerrors': 0,
'opackets': 8135408,
'rx_bps': 9858869248.0,
'rx_bps_L1': 9988762848.0,
'rx_pps': 811835.0,
'rx_util': 99.88762848,
'tx_bps': 9858875392.0,
'tx_bps_L1': 9988769062.0,
'tx_pps': 811835.4375,
'tx_util': 99.88769062},
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': {'bw_per_core': 932.0645141601562,
'cpu_util': 0.5288730263710022,
'queue_full': 0,
'rx_bps': 9858869248.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 811835.0,
'tx_bps': 9858875392.0,
'tx_pps': 811835.4375},
'latency': {},
'total': {'ibytes': 12349532646,
'ierrors': 0,
'ipackets': 8135397,
'obytes': 12349550862,
'oerrors': 0,
'opackets': 8135408,
'rx_bps': 9858869248.0,
'rx_bps_L1': 9988762848.0,
'rx_pps': 811835.0,
'rx_util': 99.88762848,
'tx_bps': 9858875392.0,
'tx_bps_L1': 9988769062.0,
'tx_pps': 811835.4375,
'tx_util': 99.88769062}}
26/02/2020 01:31:01 pktgen: {'ibytes': 12349532646,
'ierrors': 0,
'ipackets': 8135397,
'obytes': 12349550862,
'oerrors': 0,
'opackets': 8135408,
'rx_bps': 9858869248.0,
'rx_bps_L1': 9988762848.0,
'rx_pps': 811835.0,
'rx_util': 99.88762848,
'tx_bps': 9858875392.0,
'tx_bps_L1': 9988769062.0,
'tx_pps': 811835.4375,
'tx_util': 99.88769062}
26/02/2020 01:31:01 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9858875392.000000, tx_pps: 811835.437500
26/02/2020 01:31:01 pktgen: {'ibytes': 12349532646,
'ierrors': 0,
'ipackets': 8135397,
'obytes': 12349550862,
'oerrors': 0,
'opackets': 8135408,
'rx_bps': 9858869248.0,
'rx_bps_L1': 9988762848.0,
'rx_pps': 811835.0,
'rx_util': 99.88762848,
'tx_bps': 9858875392.0,
'tx_bps_L1': 9988769062.0,
'tx_pps': 811835.4375,
'tx_util': 99.88769062}
26/02/2020 01:31:01 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9858869248.000000, rx_pps: 811835.000000
26/02/2020 01:31:01 pktgen: throughput: pps_rx 811835.000000, bps_rx 9858869248.000000
26/02/2020 01:31:01 pktgen: traffic completed.
26/02/2020 01:31:06 TestPVPMultiPathVhostPerformance:
+-------+--------+-------+------------+
| Frame | Mode | Mpps | % linerate |
+=======+========+=======+============+
| 64 | normal | 8.171 | 54.910 |
+-------+--------+-------+------------+
| 128 | normal | 7.364 | 87.189 |
+-------+--------+-------+------------+
| 256 | normal | 4.526 | 99.941 |
+-------+--------+-------+------------+
| 512 | normal | 2.347 | 99.901 |
+-------+--------+-------+------------+
| 1024 | normal | 1.196 | 99.851 |
+-------+--------+-------+------------+
| 1518 | normal | 0.812 | 99.888 |
+-------+--------+-------+------------+
26/02/2020 01:31:06 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_normal Result PASSED:
26/02/2020 01:31:06 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:31:06 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:31:06 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_vector_rx Begin
26/02/2020 01:31:06 dut.10.238.54.213:
26/02/2020 01:31:06 tester:
26/02/2020 01:31:11 dut.10.238.54.213: rm -rf ./vhost.out
26/02/2020 01:31:11 dut.10.238.54.213:
26/02/2020 01:31:11 dut.10.238.54.213: rm -rf ./vhost-net*
26/02/2020 01:31:11 dut.10.238.54.213:
26/02/2020 01:31:11 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:31:11 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:31:11 dut.10.238.54.213: killall -s INT qemu-system-x86_64
26/02/2020 01:31:11 dut.10.238.54.213: qemu-system-x86_64: no process found
26/02/2020 01:31:19 dut.10.238.54.213: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
26/02/2020 01:31:19 dut.10.238.54.213: 2048
26/02/2020 01:31:28 tester: ls -d /tmp
26/02/2020 01:31:28 tester: /tmp
26/02/2020 01:31:28 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:31:30 pktgen: test port 0 map gen port 0
26/02/2020 01:31:30 pktgen: test port 0 map gen port 0
26/02/2020 01:31:30 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:31:30 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:31:30 pktgen: begin traffic ......
26/02/2020 01:31:30 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:31:35 pktgen: traffic completed.
26/02/2020 01:31:35 pktgen: begin traffic ......
26/02/2020 01:31:35 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:31:45 pktgen: begin get port statistic ...
26/02/2020 01:31:45 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:31:45 pktgen: {0: {'ibytes': 5257010816,
'ierrors': 0,
'ipackets': 82140794,
'obytes': 9533554944,
'oerrors': 0,
'opackets': 148961788,
'rx_bps': 4194307584.0,
'rx_bps_L1': 5505028704.0,
'rx_pps': 8192007.0,
'rx_util': 55.05028704,
'tx_bps': 7613270528.0,
'tx_bps_L1': 9992417408.0,
'tx_pps': 14869668.0,
'tx_util': 99.92417408},
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': {'bw_per_core': 34.243072509765625,
'cpu_util': 11.116512298583984,
'queue_full': 0,
'rx_bps': 4194307584.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 3418962944.0,
'rx_pps': 8192007.0,
'tx_bps': 7613270528.0,
'tx_pps': 14869668.0},
'latency': {},
'total': {'ibytes': 5257010816,
'ierrors': 0,
'ipackets': 82140794,
'obytes': 9533554944,
'oerrors': 0,
'opackets': 148961788,
'rx_bps': 4194307584.0,
'rx_bps_L1': 5505028704.0,
'rx_pps': 8192007.0,
'rx_util': 55.05028704,
'tx_bps': 7613270528.0,
'tx_bps_L1': 9992417408.0,
'tx_pps': 14869668.0,
'tx_util': 99.92417408}}
26/02/2020 01:31:45 pktgen: {'ibytes': 5257010816,
'ierrors': 0,
'ipackets': 82140794,
'obytes': 9533554944,
'oerrors': 0,
'opackets': 148961788,
'rx_bps': 4194307584.0,
'rx_bps_L1': 5505028704.0,
'rx_pps': 8192007.0,
'rx_util': 55.05028704,
'tx_bps': 7613270528.0,
'tx_bps_L1': 9992417408.0,
'tx_pps': 14869668.0,
'tx_util': 99.92417408}
26/02/2020 01:31:45 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 7613270528.000000, tx_pps: 14869668.000000
26/02/2020 01:31:45 pktgen: {'ibytes': 5257010816,
'ierrors': 0,
'ipackets': 82140794,
'obytes': 9533554944,
'oerrors': 0,
'opackets': 148961788,
'rx_bps': 4194307584.0,
'rx_bps_L1': 5505028704.0,
'rx_pps': 8192007.0,
'rx_util': 55.05028704,
'tx_bps': 7613270528.0,
'tx_bps_L1': 9992417408.0,
'tx_pps': 14869668.0,
'tx_util': 99.92417408}
26/02/2020 01:31:45 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 4194307584.000000, rx_pps: 8192007.000000
26/02/2020 01:31:45 pktgen: throughput: pps_rx 8192007.000000, bps_rx 4194307584.000000
26/02/2020 01:31:45 pktgen: traffic completed.
26/02/2020 01:31:45 tester: ls -d /tmp
26/02/2020 01:31:45 tester: /tmp
26/02/2020 01:31:45 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:31:47 pktgen: test port 0 map gen port 0
26/02/2020 01:31:47 pktgen: test port 0 map gen port 0
26/02/2020 01:31:47 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:31:47 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:31:47 pktgen: begin traffic ......
26/02/2020 01:31:47 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:31:52 pktgen: traffic completed.
26/02/2020 01:31:52 pktgen: begin traffic ......
26/02/2020 01:31:52 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:32:02 pktgen: begin get port statistic ...
26/02/2020 01:32:02 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:32:02 pktgen: {0: {'ibytes': 9388292608,
'ierrors': 0,
'ipackets': 73346032,
'obytes': 10821422848,
'oerrors': 0,
'opackets': 84542362,
'rx_bps': 7498200576.0,
'rx_bps_L1': 8669801216.0,
'rx_pps': 7322504.0,
'rx_util': 86.69801216,
'tx_bps': 8642625536.0,
'tx_bps_L1': 9993048256.0,
'tx_pps': 8440142.0,
'tx_util': 99.93048256},
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': {'bw_per_core': 67.17572021484375,
'cpu_util': 6.432849407196045,
'queue_full': 0,
'rx_bps': 7498200576.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 1144425344.0,
'rx_pps': 7322504.0,
'tx_bps': 8642625536.0,
'tx_pps': 8440142.0},
'latency': {},
'total': {'ibytes': 9388292608,
'ierrors': 0,
'ipackets': 73346032,
'obytes': 10821422848,
'oerrors': 0,
'opackets': 84542362,
'rx_bps': 7498200576.0,
'rx_bps_L1': 8669801216.0,
'rx_pps': 7322504.0,
'rx_util': 86.69801216,
'tx_bps': 8642625536.0,
'tx_bps_L1': 9993048256.0,
'tx_pps': 8440142.0,
'tx_util': 99.93048256}}
26/02/2020 01:32:02 pktgen: {'ibytes': 9388292608,
'ierrors': 0,
'ipackets': 73346032,
'obytes': 10821422848,
'oerrors': 0,
'opackets': 84542362,
'rx_bps': 7498200576.0,
'rx_bps_L1': 8669801216.0,
'rx_pps': 7322504.0,
'rx_util': 86.69801216,
'tx_bps': 8642625536.0,
'tx_bps_L1': 9993048256.0,
'tx_pps': 8440142.0,
'tx_util': 99.93048256}
26/02/2020 01:32:02 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 8642625536.000000, tx_pps: 8440142.000000
26/02/2020 01:32:02 pktgen: {'ibytes': 9388292608,
'ierrors': 0,
'ipackets': 73346032,
'obytes': 10821422848,
'oerrors': 0,
'opackets': 84542362,
'rx_bps': 7498200576.0,
'rx_bps_L1': 8669801216.0,
'rx_pps': 7322504.0,
'rx_util': 86.69801216,
'tx_bps': 8642625536.0,
'tx_bps_L1': 9993048256.0,
'tx_pps': 8440142.0,
'tx_util': 99.93048256}
26/02/2020 01:32:02 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 7498200576.000000, rx_pps: 7322504.000000
26/02/2020 01:32:02 pktgen: throughput: pps_rx 7322504.000000, bps_rx 7498200576.000000
26/02/2020 01:32:02 pktgen: traffic completed.
26/02/2020 01:32:02 tester: ls -d /tmp
26/02/2020 01:32:02 tester: /tmp
26/02/2020 01:32:02 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:32:04 pktgen: test port 0 map gen port 0
26/02/2020 01:32:04 pktgen: test port 0 map gen port 0
26/02/2020 01:32:04 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:32:04 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:32:04 pktgen: begin traffic ......
26/02/2020 01:32:04 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:32:09 pktgen: traffic completed.
26/02/2020 01:32:09 pktgen: begin traffic ......
26/02/2020 01:32:09 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:32:19 pktgen: begin get port statistic ...
26/02/2020 01:32:19 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:32:19 pktgen: {0: {'ibytes': 11606939648,
'ierrors': 0,
'ipackets': 45339606,
'obytes': 11606957568,
'oerrors': 0,
'opackets': 45339675,
'rx_bps': 9264516096.0,
'rx_bps_L1': 9988316496.0,
'rx_pps': 4523752.5,
'rx_util': 99.88316496,
'tx_bps': 9264543744.0,
'tx_bps_L1': 9988347744.0,
'tx_pps': 4523775.0,
'tx_util': 99.88347744000001},
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': {'bw_per_core': 192.02334594726562,
'cpu_util': 2.4123482704162598,
'queue_full': 0,
'rx_bps': 9264516096.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 4523752.5,
'tx_bps': 9264543744.0,
'tx_pps': 4523775.0},
'latency': {},
'total': {'ibytes': 11606939648,
'ierrors': 0,
'ipackets': 45339606,
'obytes': 11606957568,
'oerrors': 0,
'opackets': 45339675,
'rx_bps': 9264516096.0,
'rx_bps_L1': 9988316496.0,
'rx_pps': 4523752.5,
'rx_util': 99.88316496,
'tx_bps': 9264543744.0,
'tx_bps_L1': 9988347744.0,
'tx_pps': 4523775.0,
'tx_util': 99.88347744000001}}
26/02/2020 01:32:19 pktgen: {'ibytes': 11606939648,
'ierrors': 0,
'ipackets': 45339606,
'obytes': 11606957568,
'oerrors': 0,
'opackets': 45339675,
'rx_bps': 9264516096.0,
'rx_bps_L1': 9988316496.0,
'rx_pps': 4523752.5,
'rx_util': 99.88316496,
'tx_bps': 9264543744.0,
'tx_bps_L1': 9988347744.0,
'tx_pps': 4523775.0,
'tx_util': 99.88347744000001}
26/02/2020 01:32:19 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9264543744.000000, tx_pps: 4523775.000000
26/02/2020 01:32:19 pktgen: {'ibytes': 11606939648,
'ierrors': 0,
'ipackets': 45339606,
'obytes': 11606957568,
'oerrors': 0,
'opackets': 45339675,
'rx_bps': 9264516096.0,
'rx_bps_L1': 9988316496.0,
'rx_pps': 4523752.5,
'rx_util': 99.88316496,
'tx_bps': 9264543744.0,
'tx_bps_L1': 9988347744.0,
'tx_pps': 4523775.0,
'tx_util': 99.88347744000001}
26/02/2020 01:32:19 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9264516096.000000, rx_pps: 4523752.500000
26/02/2020 01:32:19 pktgen: throughput: pps_rx 4523752.500000, bps_rx 9264516096.000000
26/02/2020 01:32:19 pktgen: traffic completed.
26/02/2020 01:32:19 tester: ls -d /tmp
26/02/2020 01:32:19 tester: /tmp
26/02/2020 01:32:19 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:32:21 pktgen: test port 0 map gen port 0
26/02/2020 01:32:21 pktgen: test port 0 map gen port 0
26/02/2020 01:32:21 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:32:21 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:32:21 pktgen: begin traffic ......
26/02/2020 01:32:21 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:32:26 pktgen: traffic completed.
26/02/2020 01:32:26 pktgen: begin traffic ......
26/02/2020 01:32:26 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:32:36 pktgen: begin get port statistic ...
26/02/2020 01:32:36 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:32:36 pktgen: {0: {'ibytes': 12042629120,
'ierrors': 0,
'ipackets': 23520759,
'obytes': 12042646016,
'oerrors': 0,
'opackets': 23520792,
'rx_bps': 9601173504.0,
'rx_bps_L1': 9976224504.0,
'rx_pps': 2344068.75,
'rx_util': 99.76224504,
'tx_bps': 9601170432.0,
'tx_bps_L1': 9976221232.0,
'tx_pps': 2344067.5,
'tx_util': 99.76221232},
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': {'bw_per_core': 305.36175537109375,
'cpu_util': 1.572097659111023,
'queue_full': 0,
'rx_bps': 9601173504.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 2344068.75,
'tx_bps': 9601170432.0,
'tx_pps': 2344067.5},
'latency': {},
'total': {'ibytes': 12042629120,
'ierrors': 0,
'ipackets': 23520759,
'obytes': 12042646016,
'oerrors': 0,
'opackets': 23520792,
'rx_bps': 9601173504.0,
'rx_bps_L1': 9976224504.0,
'rx_pps': 2344068.75,
'rx_util': 99.76224504,
'tx_bps': 9601170432.0,
'tx_bps_L1': 9976221232.0,
'tx_pps': 2344067.5,
'tx_util': 99.76221232}}
26/02/2020 01:32:36 pktgen: {'ibytes': 12042629120,
'ierrors': 0,
'ipackets': 23520759,
'obytes': 12042646016,
'oerrors': 0,
'opackets': 23520792,
'rx_bps': 9601173504.0,
'rx_bps_L1': 9976224504.0,
'rx_pps': 2344068.75,
'rx_util': 99.76224504,
'tx_bps': 9601170432.0,
'tx_bps_L1': 9976221232.0,
'tx_pps': 2344067.5,
'tx_util': 99.76221232}
26/02/2020 01:32:36 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9601170432.000000, tx_pps: 2344067.500000
26/02/2020 01:32:36 pktgen: {'ibytes': 12042629120,
'ierrors': 0,
'ipackets': 23520759,
'obytes': 12042646016,
'oerrors': 0,
'opackets': 23520792,
'rx_bps': 9601173504.0,
'rx_bps_L1': 9976224504.0,
'rx_pps': 2344068.75,
'rx_util': 99.76224504,
'tx_bps': 9601170432.0,
'tx_bps_L1': 9976221232.0,
'tx_pps': 2344067.5,
'tx_util': 99.76221232}
26/02/2020 01:32:36 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9601173504.000000, rx_pps: 2344068.750000
26/02/2020 01:32:36 pktgen: throughput: pps_rx 2344068.750000, bps_rx 9601173504.000000
26/02/2020 01:32:36 pktgen: traffic completed.
26/02/2020 01:32:36 tester: ls -d /tmp
26/02/2020 01:32:36 tester: /tmp
26/02/2020 01:32:36 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:32:38 pktgen: test port 0 map gen port 0
26/02/2020 01:32:38 pktgen: test port 0 map gen port 0
26/02/2020 01:32:38 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:32:38 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:32:38 pktgen: begin traffic ......
26/02/2020 01:32:38 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:32:43 pktgen: traffic completed.
26/02/2020 01:32:43 pktgen: begin traffic ......
26/02/2020 01:32:43 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:32:53 pktgen: begin get port statistic ...
26/02/2020 01:32:53 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:32:53 pktgen: {0: {'ibytes': 12273347584,
'ierrors': 0,
'ipackets': 11985690,
'obytes': 12273367040,
'oerrors': 0,
'opackets': 11985709,
'rx_bps': 9786037248.0,
'rx_bps_L1': 9977173128.0,
'rx_pps': 1194599.25,
'rx_util': 99.77173128,
'tx_bps': 9786040320.0,
'tx_bps_L1': 9977176280.0,
'tx_pps': 1194599.75,
'tx_util': 99.77176279999999},
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': {'bw_per_core': 686.6964111328125,
'cpu_util': 0.712544858455658,
'queue_full': 0,
'rx_bps': 9786037248.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 1194599.25,
'tx_bps': 9786040320.0,
'tx_pps': 1194599.75},
'latency': {},
'total': {'ibytes': 12273347584,
'ierrors': 0,
'ipackets': 11985690,
'obytes': 12273367040,
'oerrors': 0,
'opackets': 11985709,
'rx_bps': 9786037248.0,
'rx_bps_L1': 9977173128.0,
'rx_pps': 1194599.25,
'rx_util': 99.77173128,
'tx_bps': 9786040320.0,
'tx_bps_L1': 9977176280.0,
'tx_pps': 1194599.75,
'tx_util': 99.77176279999999}}
26/02/2020 01:32:53 pktgen: {'ibytes': 12273347584,
'ierrors': 0,
'ipackets': 11985690,
'obytes': 12273367040,
'oerrors': 0,
'opackets': 11985709,
'rx_bps': 9786037248.0,
'rx_bps_L1': 9977173128.0,
'rx_pps': 1194599.25,
'rx_util': 99.77173128,
'tx_bps': 9786040320.0,
'tx_bps_L1': 9977176280.0,
'tx_pps': 1194599.75,
'tx_util': 99.77176279999999}
26/02/2020 01:32:53 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9786040320.000000, tx_pps: 1194599.750000
26/02/2020 01:32:53 pktgen: {'ibytes': 12273347584,
'ierrors': 0,
'ipackets': 11985690,
'obytes': 12273367040,
'oerrors': 0,
'opackets': 11985709,
'rx_bps': 9786037248.0,
'rx_bps_L1': 9977173128.0,
'rx_pps': 1194599.25,
'rx_util': 99.77173128,
'tx_bps': 9786040320.0,
'tx_bps_L1': 9977176280.0,
'tx_pps': 1194599.75,
'tx_util': 99.77176279999999}
26/02/2020 01:32:53 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9786037248.000000, rx_pps: 1194599.250000
26/02/2020 01:32:53 pktgen: throughput: pps_rx 1194599.250000, bps_rx 9786037248.000000
26/02/2020 01:32:53 pktgen: traffic completed.
26/02/2020 01:32:53 tester: ls -d /tmp
26/02/2020 01:32:53 tester: /tmp
26/02/2020 01:32:53 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:32:55 pktgen: test port 0 map gen port 0
26/02/2020 01:32:55 pktgen: test port 0 map gen port 0
26/02/2020 01:32:55 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:32:55 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:32:55 pktgen: begin traffic ......
26/02/2020 01:32:55 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:33:00 pktgen: traffic completed.
26/02/2020 01:33:00 pktgen: begin traffic ......
26/02/2020 01:33:00 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:33:10 pktgen: begin get port statistic ...
26/02/2020 01:33:10 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:33:10 pktgen: {0: {'ibytes': 12350985372,
'ierrors': 0,
'ipackets': 8136354,
'obytes': 12351005106,
'oerrors': 0,
'opackets': 8136366,
'rx_bps': 9846931456.0,
'rx_bps_L1': 9976667626.0,
'rx_pps': 810851.0625,
'rx_util': 99.76667626,
'tx_bps': 9846925312.0,
'tx_bps_L1': 9976661472.0,
'tx_pps': 810851.0,
'tx_util': 99.76661472},
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': {'bw_per_core': 901.9169921875,
'cpu_util': 0.5458886623382568,
'queue_full': 0,
'rx_bps': 9846931456.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 810851.0625,
'tx_bps': 9846925312.0,
'tx_pps': 810851.0},
'latency': {},
'total': {'ibytes': 12350985372,
'ierrors': 0,
'ipackets': 8136354,
'obytes': 12351005106,
'oerrors': 0,
'opackets': 8136366,
'rx_bps': 9846931456.0,
'rx_bps_L1': 9976667626.0,
'rx_pps': 810851.0625,
'rx_util': 99.76667626,
'tx_bps': 9846925312.0,
'tx_bps_L1': 9976661472.0,
'tx_pps': 810851.0,
'tx_util': 99.76661472}}
26/02/2020 01:33:10 pktgen: {'ibytes': 12350985372,
'ierrors': 0,
'ipackets': 8136354,
'obytes': 12351005106,
'oerrors': 0,
'opackets': 8136366,
'rx_bps': 9846931456.0,
'rx_bps_L1': 9976667626.0,
'rx_pps': 810851.0625,
'rx_util': 99.76667626,
'tx_bps': 9846925312.0,
'tx_bps_L1': 9976661472.0,
'tx_pps': 810851.0,
'tx_util': 99.76661472}
26/02/2020 01:33:10 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9846925312.000000, tx_pps: 810851.000000
26/02/2020 01:33:10 pktgen: {'ibytes': 12350985372,
'ierrors': 0,
'ipackets': 8136354,
'obytes': 12351005106,
'oerrors': 0,
'opackets': 8136366,
'rx_bps': 9846931456.0,
'rx_bps_L1': 9976667626.0,
'rx_pps': 810851.0625,
'rx_util': 99.76667626,
'tx_bps': 9846925312.0,
'tx_bps_L1': 9976661472.0,
'tx_pps': 810851.0,
'tx_util': 99.76661472}
26/02/2020 01:33:10 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9846931456.000000, rx_pps: 810851.062500
26/02/2020 01:33:10 pktgen: throughput: pps_rx 810851.062500, bps_rx 9846931456.000000
26/02/2020 01:33:10 pktgen: traffic completed.
26/02/2020 01:33:16 TestPVPMultiPathVhostPerformance:
+-------+-----------+-------+------------+
| Frame | Mode | Mpps | % linerate |
+=======+===========+=======+============+
| 64 | vector rx | 8.192 | 55.050 |
+-------+-----------+-------+------------+
| 128 | vector rx | 7.323 | 86.698 |
+-------+-----------+-------+------------+
| 256 | vector rx | 4.524 | 99.884 |
+-------+-----------+-------+------------+
| 512 | vector rx | 2.344 | 99.764 |
+-------+-----------+-------+------------+
| 1024 | vector rx | 1.195 | 99.773 |
+-------+-----------+-------+------------+
| 1518 | vector rx | 0.811 | 99.767 |
+-------+-----------+-------+------------+
26/02/2020 01:33:16 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_vector_rx Result PASSED:
26/02/2020 01:33:16 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:33:16 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:33:16 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_inorder_mergeable Begin
26/02/2020 01:33:16 dut.10.238.54.213:
26/02/2020 01:33:16 tester:
26/02/2020 01:33:20 dut.10.238.54.213: rm -rf ./vhost.out
26/02/2020 01:33:20 dut.10.238.54.213:
26/02/2020 01:33:20 dut.10.238.54.213: rm -rf ./vhost-net*
26/02/2020 01:33:20 dut.10.238.54.213:
26/02/2020 01:33:20 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:33:20 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:33:20 dut.10.238.54.213: killall -s INT qemu-system-x86_64
26/02/2020 01:33:20 dut.10.238.54.213: qemu-system-x86_64: no process found
26/02/2020 01:33:29 dut.10.238.54.213: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
26/02/2020 01:33:29 dut.10.238.54.213: 2048
26/02/2020 01:33:38 tester: ls -d /tmp
26/02/2020 01:33:38 tester: /tmp
26/02/2020 01:33:38 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:33:40 pktgen: test port 0 map gen port 0
26/02/2020 01:33:40 pktgen: test port 0 map gen port 0
26/02/2020 01:33:40 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:33:40 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:33:40 pktgen: begin traffic ......
26/02/2020 01:33:40 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:33:45 pktgen: traffic completed.
26/02/2020 01:33:45 pktgen: begin traffic ......
26/02/2020 01:33:45 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:33:55 pktgen: begin get port statistic ...
26/02/2020 01:33:55 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:33:55 pktgen: {0: {'ibytes': 7324899136,
'ierrors': 0,
'ipackets': 114451543,
'obytes': 9533051968,
'oerrors': 0,
'opackets': 148953930,
'rx_bps': 5880128512.0,
'rx_bps_L1': 7717668512.0,
'rx_pps': 11484625.0,
'rx_util': 77.17668512,
'tx_bps': 7637366272.0,
'tx_bps_L1': 10024043071.999998,
'tx_pps': 14916730.0,
'tx_util': 100.24043071999998},
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': {'bw_per_core': 34.71730422973633,
'cpu_util': 10.99936580657959,
'queue_full': 0,
'rx_bps': 5880128512.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 1757237760.0,
'rx_pps': 11484625.0,
'tx_bps': 7637366272.0,
'tx_pps': 14916730.0},
'latency': {},
'total': {'ibytes': 7324899136,
'ierrors': 0,
'ipackets': 114451543,
'obytes': 9533051968,
'oerrors': 0,
'opackets': 148953930,
'rx_bps': 5880128512.0,
'rx_bps_L1': 7717668512.0,
'rx_pps': 11484625.0,
'rx_util': 77.17668512,
'tx_bps': 7637366272.0,
'tx_bps_L1': 10024043071.999998,
'tx_pps': 14916730.0,
'tx_util': 100.24043071999998}}
26/02/2020 01:33:55 pktgen: {'ibytes': 7324899136,
'ierrors': 0,
'ipackets': 114451543,
'obytes': 9533051968,
'oerrors': 0,
'opackets': 148953930,
'rx_bps': 5880128512.0,
'rx_bps_L1': 7717668512.0,
'rx_pps': 11484625.0,
'rx_util': 77.17668512,
'tx_bps': 7637366272.0,
'tx_bps_L1': 10024043071.999998,
'tx_pps': 14916730.0,
'tx_util': 100.24043071999998}
26/02/2020 01:33:55 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 7637366272.000000, tx_pps: 14916730.000000
26/02/2020 01:33:55 pktgen: {'ibytes': 7324899136,
'ierrors': 0,
'ipackets': 114451543,
'obytes': 9533051968,
'oerrors': 0,
'opackets': 148953930,
'rx_bps': 5880128512.0,
'rx_bps_L1': 7717668512.0,
'rx_pps': 11484625.0,
'rx_util': 77.17668512,
'tx_bps': 7637366272.0,
'tx_bps_L1': 10024043071.999998,
'tx_pps': 14916730.0,
'tx_util': 100.24043071999998}
26/02/2020 01:33:55 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 5880128512.000000, rx_pps: 11484625.000000
26/02/2020 01:33:55 pktgen: throughput: pps_rx 11484625.000000, bps_rx 5880128512.000000
26/02/2020 01:33:55 pktgen: traffic completed.
26/02/2020 01:33:55 tester: ls -d /tmp
26/02/2020 01:33:55 tester: /tmp
26/02/2020 01:33:55 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:33:57 pktgen: test port 0 map gen port 0
26/02/2020 01:33:57 pktgen: test port 0 map gen port 0
26/02/2020 01:33:57 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:33:57 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:33:57 pktgen: begin traffic ......
26/02/2020 01:33:57 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:34:02 pktgen: traffic completed.
26/02/2020 01:34:02 pktgen: begin traffic ......
26/02/2020 01:34:02 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:34:12 pktgen: begin get port statistic ...
26/02/2020 01:34:12 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:34:12 pktgen: {0: {'ibytes': 10820213888,
'ierrors': 0,
'ipackets': 84532917,
'obytes': 10821540224,
'oerrors': 0,
'opackets': 84543279,
'rx_bps': 8641928192.0,
'rx_bps_L1': 9992238752.0,
'rx_pps': 8439441.0,
'rx_util': 99.92238752,
'tx_bps': 8642958336.0,
'tx_bps_L1': 9993432736.0,
'tx_pps': 8440465.0,
'tx_util': 99.93432736},
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': {'bw_per_core': 76.39971160888672,
'cpu_util': 5.656407833099365,
'queue_full': 0,
'rx_bps': 8641928192.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 8439441.0,
'tx_bps': 8642958336.0,
'tx_pps': 8440465.0},
'latency': {},
'total': {'ibytes': 10820213888,
'ierrors': 0,
'ipackets': 84532917,
'obytes': 10821540224,
'oerrors': 0,
'opackets': 84543279,
'rx_bps': 8641928192.0,
'rx_bps_L1': 9992238752.0,
'rx_pps': 8439441.0,
'rx_util': 99.92238752,
'tx_bps': 8642958336.0,
'tx_bps_L1': 9993432736.0,
'tx_pps': 8440465.0,
'tx_util': 99.93432736}}
26/02/2020 01:34:12 pktgen: {'ibytes': 10820213888,
'ierrors': 0,
'ipackets': 84532917,
'obytes': 10821540224,
'oerrors': 0,
'opackets': 84543279,
'rx_bps': 8641928192.0,
'rx_bps_L1': 9992238752.0,
'rx_pps': 8439441.0,
'rx_util': 99.92238752,
'tx_bps': 8642958336.0,
'tx_bps_L1': 9993432736.0,
'tx_pps': 8440465.0,
'tx_util': 99.93432736}
26/02/2020 01:34:12 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 8642958336.000000, tx_pps: 8440465.000000
26/02/2020 01:34:12 pktgen: {'ibytes': 10820213888,
'ierrors': 0,
'ipackets': 84532917,
'obytes': 10821540224,
'oerrors': 0,
'opackets': 84543279,
'rx_bps': 8641928192.0,
'rx_bps_L1': 9992238752.0,
'rx_pps': 8439441.0,
'rx_util': 99.92238752,
'tx_bps': 8642958336.0,
'tx_bps_L1': 9993432736.0,
'tx_pps': 8440465.0,
'tx_util': 99.93432736}
26/02/2020 01:34:12 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 8641928192.000000, rx_pps: 8439441.000000
26/02/2020 01:34:12 pktgen: throughput: pps_rx 8439441.000000, bps_rx 8641928192.000000
26/02/2020 01:34:12 pktgen: traffic completed.
26/02/2020 01:34:12 tester: ls -d /tmp
26/02/2020 01:34:12 tester: /tmp
26/02/2020 01:34:12 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:34:14 pktgen: test port 0 map gen port 0
26/02/2020 01:34:14 pktgen: test port 0 map gen port 0
26/02/2020 01:34:14 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:34:14 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:34:14 pktgen: begin traffic ......
26/02/2020 01:34:14 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:34:19 pktgen: traffic completed.
26/02/2020 01:34:19 pktgen: begin traffic ......
26/02/2020 01:34:19 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:34:29 pktgen: begin get port statistic ...
26/02/2020 01:34:29 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:34:29 pktgen: {0: {'ibytes': 11606082560,
'ierrors': 0,
'ipackets': 45336257,
'obytes': 11606099968,
'oerrors': 0,
'opackets': 45336326,
'rx_bps': 9292225536.0,
'rx_bps_L1': 10018191616.0,
'rx_pps': 4537288.0,
'rx_util': 100.18191616,
'tx_bps': 9292225536.0,
'tx_bps_L1': 10018191696.0,
'tx_pps': 4537288.5,
'tx_util': 100.18191696000001},
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': {'bw_per_core': 185.09115600585938,
'cpu_util': 2.5101754665374756,
'queue_full': 0,
'rx_bps': 9292225536.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 4537288.0,
'tx_bps': 9292225536.0,
'tx_pps': 4537288.5},
'latency': {},
'total': {'ibytes': 11606082560,
'ierrors': 0,
'ipackets': 45336257,
'obytes': 11606099968,
'oerrors': 0,
'opackets': 45336326,
'rx_bps': 9292225536.0,
'rx_bps_L1': 10018191616.0,
'rx_pps': 4537288.0,
'rx_util': 100.18191616,
'tx_bps': 9292225536.0,
'tx_bps_L1': 10018191696.0,
'tx_pps': 4537288.5,
'tx_util': 100.18191696000001}}
26/02/2020 01:34:29 pktgen: {'ibytes': 11606082560,
'ierrors': 0,
'ipackets': 45336257,
'obytes': 11606099968,
'oerrors': 0,
'opackets': 45336326,
'rx_bps': 9292225536.0,
'rx_bps_L1': 10018191616.0,
'rx_pps': 4537288.0,
'rx_util': 100.18191616,
'tx_bps': 9292225536.0,
'tx_bps_L1': 10018191696.0,
'tx_pps': 4537288.5,
'tx_util': 100.18191696000001}
26/02/2020 01:34:29 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9292225536.000000, tx_pps: 4537288.500000
26/02/2020 01:34:29 pktgen: {'ibytes': 11606082560,
'ierrors': 0,
'ipackets': 45336257,
'obytes': 11606099968,
'oerrors': 0,
'opackets': 45336326,
'rx_bps': 9292225536.0,
'rx_bps_L1': 10018191616.0,
'rx_pps': 4537288.0,
'rx_util': 100.18191616,
'tx_bps': 9292225536.0,
'tx_bps_L1': 10018191696.0,
'tx_pps': 4537288.5,
'tx_util': 100.18191696000001}
26/02/2020 01:34:29 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9292225536.000000, rx_pps: 4537288.000000
26/02/2020 01:34:29 pktgen: throughput: pps_rx 4537288.000000, bps_rx 9292225536.000000
26/02/2020 01:34:29 pktgen: traffic completed.
26/02/2020 01:34:29 tester: ls -d /tmp
26/02/2020 01:34:29 tester: /tmp
26/02/2020 01:34:29 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:34:31 pktgen: test port 0 map gen port 0
26/02/2020 01:34:31 pktgen: test port 0 map gen port 0
26/02/2020 01:34:31 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:34:31 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:34:31 pktgen: begin traffic ......
26/02/2020 01:34:31 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:34:36 pktgen: traffic completed.
26/02/2020 01:34:36 pktgen: begin traffic ......
26/02/2020 01:34:36 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:34:46 pktgen: begin get port statistic ...
26/02/2020 01:34:46 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:34:46 pktgen: {0: {'ibytes': 12042322944,
'ierrors': 0,
'ipackets': 23520161,
'obytes': 12042338816,
'oerrors': 0,
'opackets': 23520192,
'rx_bps': 9613887488.0,
'rx_bps_L1': 9989434968.0,
'rx_pps': 2347171.75,
'rx_util': 99.89434968,
'tx_bps': 9613891584.0,
'tx_bps_L1': 9989439223.999998,
'tx_pps': 2347172.75,
'tx_util': 99.89439223999999},
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': {'bw_per_core': 296.62347412109375,
'cpu_util': 1.620554804801941,
'queue_full': 0,
'rx_bps': 9613887488.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 2347171.75,
'tx_bps': 9613891584.0,
'tx_pps': 2347172.75},
'latency': {},
'total': {'ibytes': 12042322944,
'ierrors': 0,
'ipackets': 23520161,
'obytes': 12042338816,
'oerrors': 0,
'opackets': 23520192,
'rx_bps': 9613887488.0,
'rx_bps_L1': 9989434968.0,
'rx_pps': 2347171.75,
'rx_util': 99.89434968,
'tx_bps': 9613891584.0,
'tx_bps_L1': 9989439223.999998,
'tx_pps': 2347172.75,
'tx_util': 99.89439223999999}}
26/02/2020 01:34:46 pktgen: {'ibytes': 12042322944,
'ierrors': 0,
'ipackets': 23520161,
'obytes': 12042338816,
'oerrors': 0,
'opackets': 23520192,
'rx_bps': 9613887488.0,
'rx_bps_L1': 9989434968.0,
'rx_pps': 2347171.75,
'rx_util': 99.89434968,
'tx_bps': 9613891584.0,
'tx_bps_L1': 9989439223.999998,
'tx_pps': 2347172.75,
'tx_util': 99.89439223999999}
26/02/2020 01:34:46 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9613891584.000000, tx_pps: 2347172.750000
26/02/2020 01:34:46 pktgen: {'ibytes': 12042322944,
'ierrors': 0,
'ipackets': 23520161,
'obytes': 12042338816,
'oerrors': 0,
'opackets': 23520192,
'rx_bps': 9613887488.0,
'rx_bps_L1': 9989434968.0,
'rx_pps': 2347171.75,
'rx_util': 99.89434968,
'tx_bps': 9613891584.0,
'tx_bps_L1': 9989439223.999998,
'tx_pps': 2347172.75,
'tx_util': 99.89439223999999}
26/02/2020 01:34:46 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9613887488.000000, rx_pps: 2347171.750000
26/02/2020 01:34:46 pktgen: throughput: pps_rx 2347171.750000, bps_rx 9613887488.000000
26/02/2020 01:34:46 pktgen: traffic completed.
26/02/2020 01:34:46 tester: ls -d /tmp
26/02/2020 01:34:46 tester: /tmp
26/02/2020 01:34:46 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:34:48 pktgen: test port 0 map gen port 0
26/02/2020 01:34:48 pktgen: test port 0 map gen port 0
26/02/2020 01:34:48 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:34:48 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:34:48 pktgen: begin traffic ......
26/02/2020 01:34:48 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:34:53 pktgen: traffic completed.
26/02/2020 01:34:53 pktgen: begin traffic ......
26/02/2020 01:34:53 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:35:03 pktgen: begin get port statistic ...
26/02/2020 01:35:03 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:35:03 pktgen: {0: {'ibytes': 12271826944,
'ierrors': 0,
'ipackets': 11984205,
'obytes': 12271844352,
'oerrors': 0,
'opackets': 11984222,
'rx_bps': 9797073920.0,
'rx_bps_L1': 9988425280.0,
'rx_pps': 1195946.0,
'rx_util': 99.8842528,
'tx_bps': 9797074944.0,
'tx_bps_L1': 9988426304.0,
'tx_pps': 1195946.0,
'tx_util': 99.88426304},
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': {'bw_per_core': 696.1325073242188,
'cpu_util': 0.7036789059638977,
'queue_full': 0,
'rx_bps': 9797073920.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 1195946.0,
'tx_bps': 9797074944.0,
'tx_pps': 1195946.0},
'latency': {},
'total': {'ibytes': 12271826944,
'ierrors': 0,
'ipackets': 11984205,
'obytes': 12271844352,
'oerrors': 0,
'opackets': 11984222,
'rx_bps': 9797073920.0,
'rx_bps_L1': 9988425280.0,
'rx_pps': 1195946.0,
'rx_util': 99.8842528,
'tx_bps': 9797074944.0,
'tx_bps_L1': 9988426304.0,
'tx_pps': 1195946.0,
'tx_util': 99.88426304}}
26/02/2020 01:35:03 pktgen: {'ibytes': 12271826944,
'ierrors': 0,
'ipackets': 11984205,
'obytes': 12271844352,
'oerrors': 0,
'opackets': 11984222,
'rx_bps': 9797073920.0,
'rx_bps_L1': 9988425280.0,
'rx_pps': 1195946.0,
'rx_util': 99.8842528,
'tx_bps': 9797074944.0,
'tx_bps_L1': 9988426304.0,
'tx_pps': 1195946.0,
'tx_util': 99.88426304}
26/02/2020 01:35:03 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9797074944.000000, tx_pps: 1195946.000000
26/02/2020 01:35:03 pktgen: {'ibytes': 12271826944,
'ierrors': 0,
'ipackets': 11984205,
'obytes': 12271844352,
'oerrors': 0,
'opackets': 11984222,
'rx_bps': 9797073920.0,
'rx_bps_L1': 9988425280.0,
'rx_pps': 1195946.0,
'rx_util': 99.8842528,
'tx_bps': 9797074944.0,
'tx_bps_L1': 9988426304.0,
'tx_pps': 1195946.0,
'tx_util': 99.88426304}
26/02/2020 01:35:03 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9797073920.000000, rx_pps: 1195946.000000
26/02/2020 01:35:03 pktgen: throughput: pps_rx 1195946.000000, bps_rx 9797073920.000000
26/02/2020 01:35:03 pktgen: traffic completed.
26/02/2020 01:35:03 tester: ls -d /tmp
26/02/2020 01:35:03 tester: /tmp
26/02/2020 01:35:03 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:35:05 pktgen: test port 0 map gen port 0
26/02/2020 01:35:05 pktgen: test port 0 map gen port 0
26/02/2020 01:35:05 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:35:05 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:35:05 pktgen: begin traffic ......
26/02/2020 01:35:05 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:35:10 pktgen: traffic completed.
26/02/2020 01:35:10 pktgen: begin traffic ......
26/02/2020 01:35:10 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:35:20 pktgen: begin get port statistic ...
26/02/2020 01:35:20 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:35:20 pktgen: {0: {'ibytes': 12349130376,
'ierrors': 0,
'ipackets': 8135131,
'obytes': 12349147074,
'oerrors': 0,
'opackets': 8135143,
'rx_bps': 9846746112.0,
'rx_bps_L1': 9976479932.000002,
'rx_pps': 810836.375,
'rx_util': 99.76479932000002,
'tx_bps': 9846735872.0,
'tx_bps_L1': 9976469772.0,
'tx_pps': 810836.875,
'tx_util': 99.76469772},
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': {'bw_per_core': 893.02001953125,
'cpu_util': 0.5513166189193726,
'queue_full': 0,
'rx_bps': 9846746112.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 810836.375,
'tx_bps': 9846735872.0,
'tx_pps': 810836.875},
'latency': {},
'total': {'ibytes': 12349130376,
'ierrors': 0,
'ipackets': 8135131,
'obytes': 12349147074,
'oerrors': 0,
'opackets': 8135143,
'rx_bps': 9846746112.0,
'rx_bps_L1': 9976479932.000002,
'rx_pps': 810836.375,
'rx_util': 99.76479932000002,
'tx_bps': 9846735872.0,
'tx_bps_L1': 9976469772.0,
'tx_pps': 810836.875,
'tx_util': 99.76469772}}
26/02/2020 01:35:20 pktgen: {'ibytes': 12349130376,
'ierrors': 0,
'ipackets': 8135131,
'obytes': 12349147074,
'oerrors': 0,
'opackets': 8135143,
'rx_bps': 9846746112.0,
'rx_bps_L1': 9976479932.000002,
'rx_pps': 810836.375,
'rx_util': 99.76479932000002,
'tx_bps': 9846735872.0,
'tx_bps_L1': 9976469772.0,
'tx_pps': 810836.875,
'tx_util': 99.76469772}
26/02/2020 01:35:20 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9846735872.000000, tx_pps: 810836.875000
26/02/2020 01:35:20 pktgen: {'ibytes': 12349130376,
'ierrors': 0,
'ipackets': 8135131,
'obytes': 12349147074,
'oerrors': 0,
'opackets': 8135143,
'rx_bps': 9846746112.0,
'rx_bps_L1': 9976479932.000002,
'rx_pps': 810836.375,
'rx_util': 99.76479932000002,
'tx_bps': 9846735872.0,
'tx_bps_L1': 9976469772.0,
'tx_pps': 810836.875,
'tx_util': 99.76469772}
26/02/2020 01:35:20 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9846746112.000000, rx_pps: 810836.375000
26/02/2020 01:35:20 pktgen: throughput: pps_rx 810836.375000, bps_rx 9846746112.000000
26/02/2020 01:35:20 pktgen: traffic completed.
26/02/2020 01:35:26 TestPVPMultiPathVhostPerformance:
+-------+---------------------------------+--------+------------+
| Frame | Mode | Mpps | % linerate |
+=======+=================================+========+============+
| 64 | virtio_1.1_inorder_mergeable on | 11.485 | 77.177 |
+-------+---------------------------------+--------+------------+
| 128 | virtio_1.1_inorder_mergeable on | 8.439 | 99.923 |
+-------+---------------------------------+--------+------------+
| 256 | virtio_1.1_inorder_mergeable on | 4.537 | 100.183 |
+-------+---------------------------------+--------+------------+
| 512 | virtio_1.1_inorder_mergeable on | 2.347 | 99.896 |
+-------+---------------------------------+--------+------------+
| 1024 | virtio_1.1_inorder_mergeable on | 1.196 | 99.885 |
+-------+---------------------------------+--------+------------+
| 1518 | virtio_1.1_inorder_mergeable on | 0.811 | 99.765 |
+-------+---------------------------------+--------+------------+
26/02/2020 01:35:26 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_inorder_mergeable Result PASSED:
26/02/2020 01:35:26 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:35:26 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:35:26 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_inorder_normal Begin
26/02/2020 01:35:26 dut.10.238.54.213:
26/02/2020 01:35:26 tester:
26/02/2020 01:35:30 dut.10.238.54.213: rm -rf ./vhost.out
26/02/2020 01:35:30 dut.10.238.54.213:
26/02/2020 01:35:30 dut.10.238.54.213: rm -rf ./vhost-net*
26/02/2020 01:35:30 dut.10.238.54.213:
26/02/2020 01:35:30 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:35:30 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:35:30 dut.10.238.54.213: killall -s INT qemu-system-x86_64
26/02/2020 01:35:30 dut.10.238.54.213: qemu-system-x86_64: no process found
26/02/2020 01:35:39 dut.10.238.54.213: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
26/02/2020 01:35:39 dut.10.238.54.213: 2048
26/02/2020 01:35:48 tester: ls -d /tmp
26/02/2020 01:35:48 tester: /tmp
26/02/2020 01:35:48 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:35:50 pktgen: test port 0 map gen port 0
26/02/2020 01:35:50 pktgen: test port 0 map gen port 0
26/02/2020 01:35:50 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:35:50 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:35:50 pktgen: begin traffic ......
26/02/2020 01:35:50 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:35:55 pktgen: traffic completed.
26/02/2020 01:35:55 pktgen: begin traffic ......
26/02/2020 01:35:55 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:36:05 pktgen: begin get port statistic ...
26/02/2020 01:36:05 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:36:05 pktgen: {0: {'ibytes': 6652495552,
'ierrors': 0,
'ipackets': 103945237,
'obytes': 9534085632,
'oerrors': 0,
'opackets': 148970081,
'rx_bps': 5585080832.0,
'rx_bps_L1': 7330418752.0,
'rx_pps': 10908362.0,
'rx_util': 73.30418752,
'tx_bps': 7632917504.0,
'tx_bps_L1': 10018204224.0,
'tx_pps': 14908042.0,
'tx_util': 100.18204224},
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': {'bw_per_core': 34.52851104736328,
'cpu_util': 11.053065299987793,
'queue_full': 0,
'rx_bps': 5585080832.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 2047836416.0,
'rx_pps': 10908362.0,
'tx_bps': 7632917504.0,
'tx_pps': 14908042.0},
'latency': {},
'total': {'ibytes': 6652495552,
'ierrors': 0,
'ipackets': 103945237,
'obytes': 9534085632,
'oerrors': 0,
'opackets': 148970081,
'rx_bps': 5585080832.0,
'rx_bps_L1': 7330418752.0,
'rx_pps': 10908362.0,
'rx_util': 73.30418752,
'tx_bps': 7632917504.0,
'tx_bps_L1': 10018204224.0,
'tx_pps': 14908042.0,
'tx_util': 100.18204224}}
26/02/2020 01:36:05 pktgen: {'ibytes': 6652495552,
'ierrors': 0,
'ipackets': 103945237,
'obytes': 9534085632,
'oerrors': 0,
'opackets': 148970081,
'rx_bps': 5585080832.0,
'rx_bps_L1': 7330418752.0,
'rx_pps': 10908362.0,
'rx_util': 73.30418752,
'tx_bps': 7632917504.0,
'tx_bps_L1': 10018204224.0,
'tx_pps': 14908042.0,
'tx_util': 100.18204224}
26/02/2020 01:36:05 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 7632917504.000000, tx_pps: 14908042.000000
26/02/2020 01:36:05 pktgen: {'ibytes': 6652495552,
'ierrors': 0,
'ipackets': 103945237,
'obytes': 9534085632,
'oerrors': 0,
'opackets': 148970081,
'rx_bps': 5585080832.0,
'rx_bps_L1': 7330418752.0,
'rx_pps': 10908362.0,
'rx_util': 73.30418752,
'tx_bps': 7632917504.0,
'tx_bps_L1': 10018204224.0,
'tx_pps': 14908042.0,
'tx_util': 100.18204224}
26/02/2020 01:36:05 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 5585080832.000000, rx_pps: 10908362.000000
26/02/2020 01:36:05 pktgen: throughput: pps_rx 10908362.000000, bps_rx 5585080832.000000
26/02/2020 01:36:05 pktgen: traffic completed.
26/02/2020 01:36:05 tester: ls -d /tmp
26/02/2020 01:36:05 tester: /tmp
26/02/2020 01:36:05 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:36:07 pktgen: test port 0 map gen port 0
26/02/2020 01:36:07 pktgen: test port 0 map gen port 0
26/02/2020 01:36:07 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:36:07 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:36:07 pktgen: begin traffic ......
26/02/2020 01:36:07 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:36:12 pktgen: traffic completed.
26/02/2020 01:36:12 pktgen: begin traffic ......
26/02/2020 01:36:12 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:36:22 pktgen: begin get port statistic ...
26/02/2020 01:36:22 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:36:22 pktgen: {0: {'ibytes': 10819586176,
'ierrors': 0,
'ipackets': 84528013,
'obytes': 10820835200,
'oerrors': 0,
'opackets': 84537771,
'rx_bps': 8638872576.0,
'rx_bps_L1': 9988705536.0,
'rx_pps': 8436456.0,
'rx_util': 99.88705536,
'tx_bps': 8639918080.0,
'tx_bps_L1': 9989917760.0,
'tx_pps': 8437498.0,
'tx_util': 99.8991776},
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': {'bw_per_core': 69.1407470703125,
'cpu_util': 6.24806547164917,
'queue_full': 0,
'rx_bps': 8638872576.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 8436456.0,
'tx_bps': 8639918080.0,
'tx_pps': 8437498.0},
'latency': {},
'total': {'ibytes': 10819586176,
'ierrors': 0,
'ipackets': 84528013,
'obytes': 10820835200,
'oerrors': 0,
'opackets': 84537771,
'rx_bps': 8638872576.0,
'rx_bps_L1': 9988705536.0,
'rx_pps': 8436456.0,
'rx_util': 99.88705536,
'tx_bps': 8639918080.0,
'tx_bps_L1': 9989917760.0,
'tx_pps': 8437498.0,
'tx_util': 99.8991776}}
26/02/2020 01:36:22 pktgen: {'ibytes': 10819586176,
'ierrors': 0,
'ipackets': 84528013,
'obytes': 10820835200,
'oerrors': 0,
'opackets': 84537771,
'rx_bps': 8638872576.0,
'rx_bps_L1': 9988705536.0,
'rx_pps': 8436456.0,
'rx_util': 99.88705536,
'tx_bps': 8639918080.0,
'tx_bps_L1': 9989917760.0,
'tx_pps': 8437498.0,
'tx_util': 99.8991776}
26/02/2020 01:36:22 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 8639918080.000000, tx_pps: 8437498.000000
26/02/2020 01:36:22 pktgen: {'ibytes': 10819586176,
'ierrors': 0,
'ipackets': 84528013,
'obytes': 10820835200,
'oerrors': 0,
'opackets': 84537771,
'rx_bps': 8638872576.0,
'rx_bps_L1': 9988705536.0,
'rx_pps': 8436456.0,
'rx_util': 99.88705536,
'tx_bps': 8639918080.0,
'tx_bps_L1': 9989917760.0,
'tx_pps': 8437498.0,
'tx_util': 99.8991776}
26/02/2020 01:36:22 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 8638872576.000000, rx_pps: 8436456.000000
26/02/2020 01:36:22 pktgen: throughput: pps_rx 8436456.000000, bps_rx 8638872576.000000
26/02/2020 01:36:22 pktgen: traffic completed.
26/02/2020 01:36:22 tester: ls -d /tmp
26/02/2020 01:36:22 tester: /tmp
26/02/2020 01:36:22 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:36:24 pktgen: test port 0 map gen port 0
26/02/2020 01:36:24 pktgen: test port 0 map gen port 0
26/02/2020 01:36:24 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:36:24 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:36:24 pktgen: begin traffic ......
26/02/2020 01:36:24 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:36:29 pktgen: traffic completed.
26/02/2020 01:36:29 pktgen: begin traffic ......
26/02/2020 01:36:29 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:36:39 pktgen: begin get port statistic ...
26/02/2020 01:36:39 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:36:39 pktgen: {0: {'ibytes': 11606422016,
'ierrors': 0,
'ipackets': 45337584,
'obytes': 11606438656,
'oerrors': 0,
'opackets': 45337649,
'rx_bps': 9253810176.0,
'rx_bps_L1': 9976775456.0,
'rx_pps': 4518533.0,
'rx_util': 99.76775456,
'tx_bps': 9253809152.0,
'tx_bps_L1': 9976774432.0,
'tx_pps': 4518533.0,
'tx_util': 99.76774431999999},
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': {'bw_per_core': 163.92591857910156,
'cpu_util': 2.8225581645965576,
'queue_full': 0,
'rx_bps': 9253810176.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 4518533.0,
'tx_bps': 9253809152.0,
'tx_pps': 4518533.0},
'latency': {},
'total': {'ibytes': 11606422016,
'ierrors': 0,
'ipackets': 45337584,
'obytes': 11606438656,
'oerrors': 0,
'opackets': 45337649,
'rx_bps': 9253810176.0,
'rx_bps_L1': 9976775456.0,
'rx_pps': 4518533.0,
'rx_util': 99.76775456,
'tx_bps': 9253809152.0,
'tx_bps_L1': 9976774432.0,
'tx_pps': 4518533.0,
'tx_util': 99.76774431999999}}
26/02/2020 01:36:39 pktgen: {'ibytes': 11606422016,
'ierrors': 0,
'ipackets': 45337584,
'obytes': 11606438656,
'oerrors': 0,
'opackets': 45337649,
'rx_bps': 9253810176.0,
'rx_bps_L1': 9976775456.0,
'rx_pps': 4518533.0,
'rx_util': 99.76775456,
'tx_bps': 9253809152.0,
'tx_bps_L1': 9976774432.0,
'tx_pps': 4518533.0,
'tx_util': 99.76774431999999}
26/02/2020 01:36:39 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9253809152.000000, tx_pps: 4518533.000000
26/02/2020 01:36:39 pktgen: {'ibytes': 11606422016,
'ierrors': 0,
'ipackets': 45337584,
'obytes': 11606438656,
'oerrors': 0,
'opackets': 45337649,
'rx_bps': 9253810176.0,
'rx_bps_L1': 9976775456.0,
'rx_pps': 4518533.0,
'rx_util': 99.76775456,
'tx_bps': 9253809152.0,
'tx_bps_L1': 9976774432.0,
'tx_pps': 4518533.0,
'tx_util': 99.76774431999999}
26/02/2020 01:36:39 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9253810176.000000, rx_pps: 4518533.000000
26/02/2020 01:36:39 pktgen: throughput: pps_rx 4518533.000000, bps_rx 9253810176.000000
26/02/2020 01:36:39 pktgen: traffic completed.
26/02/2020 01:36:39 tester: ls -d /tmp
26/02/2020 01:36:39 tester: /tmp
26/02/2020 01:36:39 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:36:41 pktgen: test port 0 map gen port 0
26/02/2020 01:36:41 pktgen: test port 0 map gen port 0
26/02/2020 01:36:41 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:36:41 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:36:41 pktgen: begin traffic ......
26/02/2020 01:36:41 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:36:46 pktgen: traffic completed.
26/02/2020 01:36:46 pktgen: begin traffic ......
26/02/2020 01:36:46 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:36:56 pktgen: begin get port statistic ...
26/02/2020 01:36:56 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:36:56 pktgen: {0: {'ibytes': 12042299904,
'ierrors': 0,
'ipackets': 23520116,
'obytes': 12042316288,
'oerrors': 0,
'opackets': 23520148,
'rx_bps': 9601750016.0,
'rx_bps_L1': 9976823376.0,
'rx_pps': 2344208.5,
'rx_util': 99.76823376,
'tx_bps': 9601750016.0,
'tx_bps_L1': 9976823496.0,
'tx_pps': 2344209.25,
'tx_util': 99.76823496},
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': {'bw_per_core': 317.603759765625,
'cpu_util': 1.5115926265716553,
'queue_full': 0,
'rx_bps': 9601750016.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 2344208.5,
'tx_bps': 9601750016.0,
'tx_pps': 2344209.25},
'latency': {},
'total': {'ibytes': 12042299904,
'ierrors': 0,
'ipackets': 23520116,
'obytes': 12042316288,
'oerrors': 0,
'opackets': 23520148,
'rx_bps': 9601750016.0,
'rx_bps_L1': 9976823376.0,
'rx_pps': 2344208.5,
'rx_util': 99.76823376,
'tx_bps': 9601750016.0,
'tx_bps_L1': 9976823496.0,
'tx_pps': 2344209.25,
'tx_util': 99.76823496}}
26/02/2020 01:36:56 pktgen: {'ibytes': 12042299904,
'ierrors': 0,
'ipackets': 23520116,
'obytes': 12042316288,
'oerrors': 0,
'opackets': 23520148,
'rx_bps': 9601750016.0,
'rx_bps_L1': 9976823376.0,
'rx_pps': 2344208.5,
'rx_util': 99.76823376,
'tx_bps': 9601750016.0,
'tx_bps_L1': 9976823496.0,
'tx_pps': 2344209.25,
'tx_util': 99.76823496}
26/02/2020 01:36:56 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9601750016.000000, tx_pps: 2344209.250000
26/02/2020 01:36:56 pktgen: {'ibytes': 12042299904,
'ierrors': 0,
'ipackets': 23520116,
'obytes': 12042316288,
'oerrors': 0,
'opackets': 23520148,
'rx_bps': 9601750016.0,
'rx_bps_L1': 9976823376.0,
'rx_pps': 2344208.5,
'rx_util': 99.76823376,
'tx_bps': 9601750016.0,
'tx_bps_L1': 9976823496.0,
'tx_pps': 2344209.25,
'tx_util': 99.76823496}
26/02/2020 01:36:56 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9601750016.000000, rx_pps: 2344208.500000
26/02/2020 01:36:56 pktgen: throughput: pps_rx 2344208.500000, bps_rx 9601750016.000000
26/02/2020 01:36:56 pktgen: traffic completed.
26/02/2020 01:36:56 tester: ls -d /tmp
26/02/2020 01:36:56 tester: /tmp
26/02/2020 01:36:56 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:36:58 pktgen: test port 0 map gen port 0
26/02/2020 01:36:58 pktgen: test port 0 map gen port 0
26/02/2020 01:36:58 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:36:58 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:36:58 pktgen: begin traffic ......
26/02/2020 01:36:58 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:37:03 pktgen: traffic completed.
26/02/2020 01:37:03 pktgen: begin traffic ......
26/02/2020 01:37:03 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:37:13 pktgen: begin get port statistic ...
26/02/2020 01:37:13 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:37:13 pktgen: {0: {'ibytes': 12273037312,
'ierrors': 0,
'ipackets': 11985388,
'obytes': 12273053696,
'oerrors': 0,
'opackets': 11985403,
'rx_bps': 9785715712.0,
'rx_bps_L1': 9976845312.0,
'rx_pps': 1194560.0,
'rx_util': 99.76845312,
'tx_bps': 9785720832.0,
'tx_bps_L1': 9976850472.0,
'tx_pps': 1194560.25,
'tx_util': 99.76850472},
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': {'bw_per_core': 679.4146118164062,
'cpu_util': 0.7201582789421082,
'queue_full': 0,
'rx_bps': 9785715712.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 1194560.0,
'tx_bps': 9785720832.0,
'tx_pps': 1194560.25},
'latency': {},
'total': {'ibytes': 12273037312,
'ierrors': 0,
'ipackets': 11985388,
'obytes': 12273053696,
'oerrors': 0,
'opackets': 11985403,
'rx_bps': 9785715712.0,
'rx_bps_L1': 9976845312.0,
'rx_pps': 1194560.0,
'rx_util': 99.76845312,
'tx_bps': 9785720832.0,
'tx_bps_L1': 9976850472.0,
'tx_pps': 1194560.25,
'tx_util': 99.76850472}}
26/02/2020 01:37:13 pktgen: {'ibytes': 12273037312,
'ierrors': 0,
'ipackets': 11985388,
'obytes': 12273053696,
'oerrors': 0,
'opackets': 11985403,
'rx_bps': 9785715712.0,
'rx_bps_L1': 9976845312.0,
'rx_pps': 1194560.0,
'rx_util': 99.76845312,
'tx_bps': 9785720832.0,
'tx_bps_L1': 9976850472.0,
'tx_pps': 1194560.25,
'tx_util': 99.76850472}
26/02/2020 01:37:13 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9785720832.000000, tx_pps: 1194560.250000
26/02/2020 01:37:13 pktgen: {'ibytes': 12273037312,
'ierrors': 0,
'ipackets': 11985388,
'obytes': 12273053696,
'oerrors': 0,
'opackets': 11985403,
'rx_bps': 9785715712.0,
'rx_bps_L1': 9976845312.0,
'rx_pps': 1194560.0,
'rx_util': 99.76845312,
'tx_bps': 9785720832.0,
'tx_bps_L1': 9976850472.0,
'tx_pps': 1194560.25,
'tx_util': 99.76850472}
26/02/2020 01:37:13 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9785715712.000000, rx_pps: 1194560.000000
26/02/2020 01:37:13 pktgen: throughput: pps_rx 1194560.000000, bps_rx 9785715712.000000
26/02/2020 01:37:13 pktgen: traffic completed.
26/02/2020 01:37:13 tester: ls -d /tmp
26/02/2020 01:37:13 tester: /tmp
26/02/2020 01:37:13 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:37:15 pktgen: test port 0 map gen port 0
26/02/2020 01:37:15 pktgen: test port 0 map gen port 0
26/02/2020 01:37:15 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:37:15 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:37:15 pktgen: begin traffic ......
26/02/2020 01:37:15 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:37:20 pktgen: traffic completed.
26/02/2020 01:37:20 pktgen: begin traffic ......
26/02/2020 01:37:20 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:37:30 pktgen: begin get port statistic ...
26/02/2020 01:37:30 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:37:30 pktgen: {0: {'ibytes': 12349487106,
'ierrors': 0,
'ipackets': 8135367,
'obytes': 12349505322,
'oerrors': 0,
'opackets': 8135378,
'rx_bps': 9844928512.0,
'rx_bps_L1': 9974638391.999998,
'rx_pps': 810686.75,
'rx_util': 99.74638391999999,
'tx_bps': 9844941824.0,
'tx_bps_L1': 9974651764.0,
'tx_pps': 810687.125,
'tx_util': 99.74651764},
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': {'bw_per_core': 874.3078002929688,
'cpu_util': 0.56301349401474,
'queue_full': 0,
'rx_bps': 9844928512.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 810686.75,
'tx_bps': 9844941824.0,
'tx_pps': 810687.125},
'latency': {},
'total': {'ibytes': 12349487106,
'ierrors': 0,
'ipackets': 8135367,
'obytes': 12349505322,
'oerrors': 0,
'opackets': 8135378,
'rx_bps': 9844928512.0,
'rx_bps_L1': 9974638391.999998,
'rx_pps': 810686.75,
'rx_util': 99.74638391999999,
'tx_bps': 9844941824.0,
'tx_bps_L1': 9974651764.0,
'tx_pps': 810687.125,
'tx_util': 99.74651764}}
26/02/2020 01:37:30 pktgen: {'ibytes': 12349487106,
'ierrors': 0,
'ipackets': 8135367,
'obytes': 12349505322,
'oerrors': 0,
'opackets': 8135378,
'rx_bps': 9844928512.0,
'rx_bps_L1': 9974638391.999998,
'rx_pps': 810686.75,
'rx_util': 99.74638391999999,
'tx_bps': 9844941824.0,
'tx_bps_L1': 9974651764.0,
'tx_pps': 810687.125,
'tx_util': 99.74651764}
26/02/2020 01:37:30 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9844941824.000000, tx_pps: 810687.125000
26/02/2020 01:37:30 pktgen: {'ibytes': 12349487106,
'ierrors': 0,
'ipackets': 8135367,
'obytes': 12349505322,
'oerrors': 0,
'opackets': 8135378,
'rx_bps': 9844928512.0,
'rx_bps_L1': 9974638391.999998,
'rx_pps': 810686.75,
'rx_util': 99.74638391999999,
'tx_bps': 9844941824.0,
'tx_bps_L1': 9974651764.0,
'tx_pps': 810687.125,
'tx_util': 99.74651764}
26/02/2020 01:37:30 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9844928512.000000, rx_pps: 810686.750000
26/02/2020 01:37:30 pktgen: throughput: pps_rx 810686.750000, bps_rx 9844928512.000000
26/02/2020 01:37:30 pktgen: traffic completed.
26/02/2020 01:37:35 TestPVPMultiPathVhostPerformance:
+-------+---------------------------+--------+------------+
| Frame | Mode | Mpps | % linerate |
+=======+===========================+========+============+
| 64 | virtio_1.1 inorder normal | 10.908 | 73.304 |
+-------+---------------------------+--------+------------+
| 128 | virtio_1.1 inorder normal | 8.436 | 99.888 |
+-------+---------------------------+--------+------------+
| 256 | virtio_1.1 inorder normal | 4.519 | 99.769 |
+-------+---------------------------+--------+------------+
| 512 | virtio_1.1 inorder normal | 2.344 | 99.770 |
+-------+---------------------------+--------+------------+
| 1024 | virtio_1.1 inorder normal | 1.195 | 99.770 |
+-------+---------------------------+--------+------------+
| 1518 | virtio_1.1 inorder normal | 0.811 | 99.747 |
+-------+---------------------------+--------+------------+
26/02/2020 01:37:35 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_inorder_normal Result PASSED:
26/02/2020 01:37:35 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:37:35 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:37:35 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_mergeable Begin
26/02/2020 01:37:36 dut.10.238.54.213:
26/02/2020 01:37:36 tester:
26/02/2020 01:37:40 dut.10.238.54.213: rm -rf ./vhost.out
26/02/2020 01:37:40 dut.10.238.54.213:
26/02/2020 01:37:40 dut.10.238.54.213: rm -rf ./vhost-net*
26/02/2020 01:37:40 dut.10.238.54.213:
26/02/2020 01:37:40 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:37:40 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:37:40 dut.10.238.54.213: killall -s INT qemu-system-x86_64
26/02/2020 01:37:40 dut.10.238.54.213: qemu-system-x86_64: no process found
26/02/2020 01:37:48 dut.10.238.54.213: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
26/02/2020 01:37:48 dut.10.238.54.213: 2048
26/02/2020 01:37:57 tester: ls -d /tmp
26/02/2020 01:37:57 tester: /tmp
26/02/2020 01:37:57 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:37:59 pktgen: test port 0 map gen port 0
26/02/2020 01:37:59 pktgen: test port 0 map gen port 0
26/02/2020 01:37:59 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:37:59 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:37:59 pktgen: begin traffic ......
26/02/2020 01:37:59 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:38:04 pktgen: traffic completed.
26/02/2020 01:38:04 pktgen: begin traffic ......
26/02/2020 01:38:04 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:38:14 pktgen: begin get port statistic ...
26/02/2020 01:38:14 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:38:14 pktgen: {0: {'ibytes': 6225888448,
'ierrors': 0,
'ipackets': 97279500,
'obytes': 9533556480,
'oerrors': 0,
'opackets': 148961813,
'rx_bps': 4796084736.0,
'rx_bps_L1': 6294860896.0,
'rx_pps': 9367351.0,
'rx_util': 62.948608959999994,
'tx_bps': 7633244672.0,
'tx_bps_L1': 10018633472.0,
'tx_pps': 14908680.0,
'tx_util': 100.18633472},
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': {'bw_per_core': 35.02845764160156,
'cpu_util': 10.89577579498291,
'queue_full': 0,
'rx_bps': 4796084736.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 2837159680.0,
'rx_pps': 9367351.0,
'tx_bps': 7633244672.0,
'tx_pps': 14908680.0},
'latency': {},
'total': {'ibytes': 6225888448,
'ierrors': 0,
'ipackets': 97279500,
'obytes': 9533556480,
'oerrors': 0,
'opackets': 148961813,
'rx_bps': 4796084736.0,
'rx_bps_L1': 6294860896.0,
'rx_pps': 9367351.0,
'rx_util': 62.948608959999994,
'tx_bps': 7633244672.0,
'tx_bps_L1': 10018633472.0,
'tx_pps': 14908680.0,
'tx_util': 100.18633472}}
26/02/2020 01:38:14 pktgen: {'ibytes': 6225888448,
'ierrors': 0,
'ipackets': 97279500,
'obytes': 9533556480,
'oerrors': 0,
'opackets': 148961813,
'rx_bps': 4796084736.0,
'rx_bps_L1': 6294860896.0,
'rx_pps': 9367351.0,
'rx_util': 62.948608959999994,
'tx_bps': 7633244672.0,
'tx_bps_L1': 10018633472.0,
'tx_pps': 14908680.0,
'tx_util': 100.18633472}
26/02/2020 01:38:14 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 7633244672.000000, tx_pps: 14908680.000000
26/02/2020 01:38:14 pktgen: {'ibytes': 6225888448,
'ierrors': 0,
'ipackets': 97279500,
'obytes': 9533556480,
'oerrors': 0,
'opackets': 148961813,
'rx_bps': 4796084736.0,
'rx_bps_L1': 6294860896.0,
'rx_pps': 9367351.0,
'rx_util': 62.948608959999994,
'tx_bps': 7633244672.0,
'tx_bps_L1': 10018633472.0,
'tx_pps': 14908680.0,
'tx_util': 100.18633472}
26/02/2020 01:38:14 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 4796084736.000000, rx_pps: 9367351.000000
26/02/2020 01:38:14 pktgen: throughput: pps_rx 9367351.000000, bps_rx 4796084736.000000
26/02/2020 01:38:14 pktgen: traffic completed.
26/02/2020 01:38:14 tester: ls -d /tmp
26/02/2020 01:38:14 tester: /tmp
26/02/2020 01:38:14 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:38:16 pktgen: test port 0 map gen port 0
26/02/2020 01:38:16 pktgen: test port 0 map gen port 0
26/02/2020 01:38:16 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:38:16 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:38:16 pktgen: begin traffic ......
26/02/2020 01:38:16 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:38:21 pktgen: traffic completed.
26/02/2020 01:38:21 pktgen: begin traffic ......
26/02/2020 01:38:21 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:38:31 pktgen: begin get port statistic ...
26/02/2020 01:38:31 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:38:31 pktgen: {0: {'ibytes': 10732524672,
'ierrors': 0,
'ipackets': 83847845,
'obytes': 10821809536,
'oerrors': 0,
'opackets': 84545383,
'rx_bps': 8581165056.0,
'rx_bps_L1': 9921979696.0,
'rx_pps': 8380091.5,
'rx_util': 99.21979696,
'tx_bps': 8664599552.0,
'tx_bps_L1': 10018454912.0,
'tx_pps': 8461596.0,
'tx_util': 100.18454912000001},
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': {'bw_per_core': 66.48125457763672,
'cpu_util': 6.516573429107666,
'queue_full': 0,
'rx_bps': 8581165056.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 8380091.5,
'tx_bps': 8664599552.0,
'tx_pps': 8461596.0},
'latency': {},
'total': {'ibytes': 10732524672,
'ierrors': 0,
'ipackets': 83847845,
'obytes': 10821809536,
'oerrors': 0,
'opackets': 84545383,
'rx_bps': 8581165056.0,
'rx_bps_L1': 9921979696.0,
'rx_pps': 8380091.5,
'rx_util': 99.21979696,
'tx_bps': 8664599552.0,
'tx_bps_L1': 10018454912.0,
'tx_pps': 8461596.0,
'tx_util': 100.18454912000001}}
26/02/2020 01:38:31 pktgen: {'ibytes': 10732524672,
'ierrors': 0,
'ipackets': 83847845,
'obytes': 10821809536,
'oerrors': 0,
'opackets': 84545383,
'rx_bps': 8581165056.0,
'rx_bps_L1': 9921979696.0,
'rx_pps': 8380091.5,
'rx_util': 99.21979696,
'tx_bps': 8664599552.0,
'tx_bps_L1': 10018454912.0,
'tx_pps': 8461596.0,
'tx_util': 100.18454912000001}
26/02/2020 01:38:31 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 8664599552.000000, tx_pps: 8461596.000000
26/02/2020 01:38:31 pktgen: {'ibytes': 10732524672,
'ierrors': 0,
'ipackets': 83847845,
'obytes': 10821809536,
'oerrors': 0,
'opackets': 84545383,
'rx_bps': 8581165056.0,
'rx_bps_L1': 9921979696.0,
'rx_pps': 8380091.5,
'rx_util': 99.21979696,
'tx_bps': 8664599552.0,
'tx_bps_L1': 10018454912.0,
'tx_pps': 8461596.0,
'tx_util': 100.18454912000001}
26/02/2020 01:38:31 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 8581165056.000000, rx_pps: 8380091.500000
26/02/2020 01:38:31 pktgen: throughput: pps_rx 8380091.500000, bps_rx 8581165056.000000
26/02/2020 01:38:31 pktgen: traffic completed.
26/02/2020 01:38:31 tester: ls -d /tmp
26/02/2020 01:38:31 tester: /tmp
26/02/2020 01:38:31 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:38:33 pktgen: test port 0 map gen port 0
26/02/2020 01:38:33 pktgen: test port 0 map gen port 0
26/02/2020 01:38:33 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:38:33 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:38:33 pktgen: begin traffic ......
26/02/2020 01:38:33 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:38:38 pktgen: traffic completed.
26/02/2020 01:38:38 pktgen: begin traffic ......
26/02/2020 01:38:38 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:38:48 pktgen: begin get port statistic ...
26/02/2020 01:38:48 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:38:48 pktgen: {0: {'ibytes': 11606152448,
'ierrors': 0,
'ipackets': 45336530,
'obytes': 11606169856,
'oerrors': 0,
'opackets': 45336598,
'rx_bps': 9291751424.0,
'rx_bps_L1': 10017680544.0,
'rx_pps': 4537057.0,
'rx_util': 100.17680544000001,
'tx_bps': 9291747328.0,
'tx_bps_L1': 10017676288.0,
'tx_pps': 4537056.0,
'tx_util': 100.17676288},
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': {'bw_per_core': 188.03932189941406,
'cpu_util': 2.4706926345825195,
'queue_full': 0,
'rx_bps': 9291751424.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 4537057.0,
'tx_bps': 9291747328.0,
'tx_pps': 4537056.0},
'latency': {},
'total': {'ibytes': 11606152448,
'ierrors': 0,
'ipackets': 45336530,
'obytes': 11606169856,
'oerrors': 0,
'opackets': 45336598,
'rx_bps': 9291751424.0,
'rx_bps_L1': 10017680544.0,
'rx_pps': 4537057.0,
'rx_util': 100.17680544000001,
'tx_bps': 9291747328.0,
'tx_bps_L1': 10017676288.0,
'tx_pps': 4537056.0,
'tx_util': 100.17676288}}
26/02/2020 01:38:48 pktgen: {'ibytes': 11606152448,
'ierrors': 0,
'ipackets': 45336530,
'obytes': 11606169856,
'oerrors': 0,
'opackets': 45336598,
'rx_bps': 9291751424.0,
'rx_bps_L1': 10017680544.0,
'rx_pps': 4537057.0,
'rx_util': 100.17680544000001,
'tx_bps': 9291747328.0,
'tx_bps_L1': 10017676288.0,
'tx_pps': 4537056.0,
'tx_util': 100.17676288}
26/02/2020 01:38:48 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9291747328.000000, tx_pps: 4537056.000000
26/02/2020 01:38:48 pktgen: {'ibytes': 11606152448,
'ierrors': 0,
'ipackets': 45336530,
'obytes': 11606169856,
'oerrors': 0,
'opackets': 45336598,
'rx_bps': 9291751424.0,
'rx_bps_L1': 10017680544.0,
'rx_pps': 4537057.0,
'rx_util': 100.17680544000001,
'tx_bps': 9291747328.0,
'tx_bps_L1': 10017676288.0,
'tx_pps': 4537056.0,
'tx_util': 100.17676288}
26/02/2020 01:38:48 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9291751424.000000, rx_pps: 4537057.000000
26/02/2020 01:38:48 pktgen: throughput: pps_rx 4537057.000000, bps_rx 9291751424.000000
26/02/2020 01:38:48 pktgen: traffic completed.
26/02/2020 01:38:48 tester: ls -d /tmp
26/02/2020 01:38:48 tester: /tmp
26/02/2020 01:38:48 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:38:50 pktgen: test port 0 map gen port 0
26/02/2020 01:38:50 pktgen: test port 0 map gen port 0
26/02/2020 01:38:50 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:38:50 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:38:50 pktgen: begin traffic ......
26/02/2020 01:38:50 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:38:55 pktgen: traffic completed.
26/02/2020 01:38:55 pktgen: begin traffic ......
26/02/2020 01:38:55 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:39:05 pktgen: begin get port statistic ...
26/02/2020 01:39:05 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:39:05 pktgen: {0: {'ibytes': 12042552320,
'ierrors': 0,
'ipackets': 23520608,
'obytes': 12042569728,
'oerrors': 0,
'opackets': 23520643,
'rx_bps': 9601343488.0,
'rx_bps_L1': 9976401008.0,
'rx_pps': 2344109.5,
'rx_util': 99.76401007999999,
'tx_bps': 9601349632.0,
'tx_bps_L1': 9976407392.0,
'tx_pps': 2344111.0,
'tx_util': 99.76407392},
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': {'bw_per_core': 308.36248779296875,
'cpu_util': 1.5568283796310425,
'queue_full': 0,
'rx_bps': 9601343488.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 2344109.5,
'tx_bps': 9601349632.0,
'tx_pps': 2344111.0},
'latency': {},
'total': {'ibytes': 12042552320,
'ierrors': 0,
'ipackets': 23520608,
'obytes': 12042569728,
'oerrors': 0,
'opackets': 23520643,
'rx_bps': 9601343488.0,
'rx_bps_L1': 9976401008.0,
'rx_pps': 2344109.5,
'rx_util': 99.76401007999999,
'tx_bps': 9601349632.0,
'tx_bps_L1': 9976407392.0,
'tx_pps': 2344111.0,
'tx_util': 99.76407392}}
26/02/2020 01:39:05 pktgen: {'ibytes': 12042552320,
'ierrors': 0,
'ipackets': 23520608,
'obytes': 12042569728,
'oerrors': 0,
'opackets': 23520643,
'rx_bps': 9601343488.0,
'rx_bps_L1': 9976401008.0,
'rx_pps': 2344109.5,
'rx_util': 99.76401007999999,
'tx_bps': 9601349632.0,
'tx_bps_L1': 9976407392.0,
'tx_pps': 2344111.0,
'tx_util': 99.76407392}
26/02/2020 01:39:05 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9601349632.000000, tx_pps: 2344111.000000
26/02/2020 01:39:05 pktgen: {'ibytes': 12042552320,
'ierrors': 0,
'ipackets': 23520608,
'obytes': 12042569728,
'oerrors': 0,
'opackets': 23520643,
'rx_bps': 9601343488.0,
'rx_bps_L1': 9976401008.0,
'rx_pps': 2344109.5,
'rx_util': 99.76401007999999,
'tx_bps': 9601349632.0,
'tx_bps_L1': 9976407392.0,
'tx_pps': 2344111.0,
'tx_util': 99.76407392}
26/02/2020 01:39:05 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9601343488.000000, rx_pps: 2344109.500000
26/02/2020 01:39:05 pktgen: throughput: pps_rx 2344109.500000, bps_rx 9601343488.000000
26/02/2020 01:39:05 pktgen: traffic completed.
26/02/2020 01:39:05 tester: ls -d /tmp
26/02/2020 01:39:06 tester: /tmp
26/02/2020 01:39:06 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:39:07 pktgen: test port 0 map gen port 0
26/02/2020 01:39:07 pktgen: test port 0 map gen port 0
26/02/2020 01:39:07 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:39:07 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:39:07 pktgen: begin traffic ......
26/02/2020 01:39:07 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:39:12 pktgen: traffic completed.
26/02/2020 01:39:12 pktgen: begin traffic ......
26/02/2020 01:39:12 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:39:22 pktgen: begin get port statistic ...
26/02/2020 01:39:22 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:39:22 pktgen: {0: {'ibytes': 12272622592,
'ierrors': 0,
'ipackets': 11984983,
'obytes': 12272640000,
'oerrors': 0,
'opackets': 11984999,
'rx_bps': 9800695808.0,
'rx_bps_L1': 9992117888.0,
'rx_pps': 1196388.0,
'rx_util': 99.92117888,
'tx_bps': 9800696832.0,
'tx_bps_L1': 9992119032.0,
'tx_pps': 1196388.75,
'tx_util': 99.92119032},
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': {'bw_per_core': 695.833984375,
'cpu_util': 0.7042410373687744,
'queue_full': 0,
'rx_bps': 9800695808.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 1196388.0,
'tx_bps': 9800696832.0,
'tx_pps': 1196388.75},
'latency': {},
'total': {'ibytes': 12272622592,
'ierrors': 0,
'ipackets': 11984983,
'obytes': 12272640000,
'oerrors': 0,
'opackets': 11984999,
'rx_bps': 9800695808.0,
'rx_bps_L1': 9992117888.0,
'rx_pps': 1196388.0,
'rx_util': 99.92117888,
'tx_bps': 9800696832.0,
'tx_bps_L1': 9992119032.0,
'tx_pps': 1196388.75,
'tx_util': 99.92119032}}
26/02/2020 01:39:22 pktgen: {'ibytes': 12272622592,
'ierrors': 0,
'ipackets': 11984983,
'obytes': 12272640000,
'oerrors': 0,
'opackets': 11984999,
'rx_bps': 9800695808.0,
'rx_bps_L1': 9992117888.0,
'rx_pps': 1196388.0,
'rx_util': 99.92117888,
'tx_bps': 9800696832.0,
'tx_bps_L1': 9992119032.0,
'tx_pps': 1196388.75,
'tx_util': 99.92119032}
26/02/2020 01:39:22 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9800696832.000000, tx_pps: 1196388.750000
26/02/2020 01:39:22 pktgen: {'ibytes': 12272622592,
'ierrors': 0,
'ipackets': 11984983,
'obytes': 12272640000,
'oerrors': 0,
'opackets': 11984999,
'rx_bps': 9800695808.0,
'rx_bps_L1': 9992117888.0,
'rx_pps': 1196388.0,
'rx_util': 99.92117888,
'tx_bps': 9800696832.0,
'tx_bps_L1': 9992119032.0,
'tx_pps': 1196388.75,
'tx_util': 99.92119032}
26/02/2020 01:39:22 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9800695808.000000, rx_pps: 1196388.000000
26/02/2020 01:39:22 pktgen: throughput: pps_rx 1196388.000000, bps_rx 9800695808.000000
26/02/2020 01:39:22 pktgen: traffic completed.
26/02/2020 01:39:22 tester: ls -d /tmp
26/02/2020 01:39:23 tester: /tmp
26/02/2020 01:39:23 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:39:24 pktgen: test port 0 map gen port 0
26/02/2020 01:39:24 pktgen: test port 0 map gen port 0
26/02/2020 01:39:24 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:39:24 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:39:24 pktgen: begin traffic ......
26/02/2020 01:39:24 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:39:29 pktgen: traffic completed.
26/02/2020 01:39:29 pktgen: begin traffic ......
26/02/2020 01:39:29 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:39:39 pktgen: begin get port statistic ...
26/02/2020 01:39:39 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:39:39 pktgen: {0: {'ibytes': 12349859016,
'ierrors': 0,
'ipackets': 8135612,
'obytes': 12349877232,
'oerrors': 0,
'opackets': 8135623,
'rx_bps': 9894303744.0,
'rx_bps_L1': 10024664074.0,
'rx_pps': 814752.0625,
'rx_util': 100.24664074,
'tx_bps': 9894307840.0,
'tx_bps_L1': 10024668180.0,
'tx_pps': 814752.125,
'tx_util': 100.2466818},
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': {'bw_per_core': 869.5465698242188,
'cpu_util': 0.5689349174499512,
'queue_full': 0,
'rx_bps': 9894303744.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 814752.0625,
'tx_bps': 9894307840.0,
'tx_pps': 814752.125},
'latency': {},
'total': {'ibytes': 12349859016,
'ierrors': 0,
'ipackets': 8135612,
'obytes': 12349877232,
'oerrors': 0,
'opackets': 8135623,
'rx_bps': 9894303744.0,
'rx_bps_L1': 10024664074.0,
'rx_pps': 814752.0625,
'rx_util': 100.24664074,
'tx_bps': 9894307840.0,
'tx_bps_L1': 10024668180.0,
'tx_pps': 814752.125,
'tx_util': 100.2466818}}
26/02/2020 01:39:39 pktgen: {'ibytes': 12349859016,
'ierrors': 0,
'ipackets': 8135612,
'obytes': 12349877232,
'oerrors': 0,
'opackets': 8135623,
'rx_bps': 9894303744.0,
'rx_bps_L1': 10024664074.0,
'rx_pps': 814752.0625,
'rx_util': 100.24664074,
'tx_bps': 9894307840.0,
'tx_bps_L1': 10024668180.0,
'tx_pps': 814752.125,
'tx_util': 100.2466818}
26/02/2020 01:39:39 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9894307840.000000, tx_pps: 814752.125000
26/02/2020 01:39:39 pktgen: {'ibytes': 12349859016,
'ierrors': 0,
'ipackets': 8135612,
'obytes': 12349877232,
'oerrors': 0,
'opackets': 8135623,
'rx_bps': 9894303744.0,
'rx_bps_L1': 10024664074.0,
'rx_pps': 814752.0625,
'rx_util': 100.24664074,
'tx_bps': 9894307840.0,
'tx_bps_L1': 10024668180.0,
'tx_pps': 814752.125,
'tx_util': 100.2466818}
26/02/2020 01:39:39 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9894303744.000000, rx_pps: 814752.062500
26/02/2020 01:39:39 pktgen: throughput: pps_rx 814752.062500, bps_rx 9894303744.000000
26/02/2020 01:39:39 pktgen: traffic completed.
26/02/2020 01:39:45 TestPVPMultiPathVhostPerformance:
+-------+-------------------------+-------+------------+
| Frame | Mode | Mpps | % linerate |
+=======+=========================+=======+============+
| 64 | virtio_1.1_mergeable on | 9.367 | 62.949 |
+-------+-------------------------+-------+------------+
| 128 | virtio_1.1_mergeable on | 8.380 | 99.220 |
+-------+-------------------------+-------+------------+
| 256 | virtio_1.1_mergeable on | 4.537 | 100.178 |
+-------+-------------------------+-------+------------+
| 512 | virtio_1.1_mergeable on | 2.344 | 99.765 |
+-------+-------------------------+-------+------------+
| 1024 | virtio_1.1_mergeable on | 1.196 | 99.922 |
+-------+-------------------------+-------+------------+
| 1518 | virtio_1.1_mergeable on | 0.815 | 100.247 |
+-------+-------------------------+-------+------------+
26/02/2020 01:39:45 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_mergeable Result PASSED:
26/02/2020 01:39:45 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:39:45 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:39:45 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_normal Begin
26/02/2020 01:39:45 dut.10.238.54.213:
26/02/2020 01:39:45 tester:
26/02/2020 01:39:49 dut.10.238.54.213: rm -rf ./vhost.out
26/02/2020 01:39:49 dut.10.238.54.213:
26/02/2020 01:39:49 dut.10.238.54.213: rm -rf ./vhost-net*
26/02/2020 01:39:50 dut.10.238.54.213:
26/02/2020 01:39:50 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:39:50 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:39:50 dut.10.238.54.213: killall -s INT qemu-system-x86_64
26/02/2020 01:39:50 dut.10.238.54.213: qemu-system-x86_64: no process found
26/02/2020 01:39:58 dut.10.238.54.213: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
26/02/2020 01:39:58 dut.10.238.54.213: 2048
26/02/2020 01:40:07 tester: ls -d /tmp
26/02/2020 01:40:07 tester: /tmp
26/02/2020 01:40:07 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:40:09 pktgen: test port 0 map gen port 0
26/02/2020 01:40:09 pktgen: test port 0 map gen port 0
26/02/2020 01:40:09 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:40:09 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:40:09 pktgen: begin traffic ......
26/02/2020 01:40:09 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:40:14 pktgen: traffic completed.
26/02/2020 01:40:14 pktgen: begin traffic ......
26/02/2020 01:40:14 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:40:24 pktgen: begin get port statistic ...
26/02/2020 01:40:24 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:40:24 pktgen: {0: {'ibytes': 6595249536,
'ierrors': 0,
'ipackets': 103050767,
'obytes': 9533290176,
'oerrors': 0,
'opackets': 148957651,
'rx_bps': 5499441152.0,
'rx_bps_L1': 7218016512.0,
'rx_pps': 10741096.0,
'rx_util': 72.18016512,
'tx_bps': 7601885696.0,
'tx_bps_L1': 9977474976.0,
'tx_pps': 14847433.0,
'tx_util': 99.77474976},
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': {'bw_per_core': 35.26320266723633,
'cpu_util': 10.778779029846191,
'queue_full': 0,
'rx_bps': 5499441152.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 2102444288.0,
'rx_pps': 10741096.0,
'tx_bps': 7601885696.0,
'tx_pps': 14847433.0},
'latency': {},
'total': {'ibytes': 6595249536,
'ierrors': 0,
'ipackets': 103050767,
'obytes': 9533290176,
'oerrors': 0,
'opackets': 148957651,
'rx_bps': 5499441152.0,
'rx_bps_L1': 7218016512.0,
'rx_pps': 10741096.0,
'rx_util': 72.18016512,
'tx_bps': 7601885696.0,
'tx_bps_L1': 9977474976.0,
'tx_pps': 14847433.0,
'tx_util': 99.77474976}}
26/02/2020 01:40:24 pktgen: {'ibytes': 6595249536,
'ierrors': 0,
'ipackets': 103050767,
'obytes': 9533290176,
'oerrors': 0,
'opackets': 148957651,
'rx_bps': 5499441152.0,
'rx_bps_L1': 7218016512.0,
'rx_pps': 10741096.0,
'rx_util': 72.18016512,
'tx_bps': 7601885696.0,
'tx_bps_L1': 9977474976.0,
'tx_pps': 14847433.0,
'tx_util': 99.77474976}
26/02/2020 01:40:24 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 7601885696.000000, tx_pps: 14847433.000000
26/02/2020 01:40:24 pktgen: {'ibytes': 6595249536,
'ierrors': 0,
'ipackets': 103050767,
'obytes': 9533290176,
'oerrors': 0,
'opackets': 148957651,
'rx_bps': 5499441152.0,
'rx_bps_L1': 7218016512.0,
'rx_pps': 10741096.0,
'rx_util': 72.18016512,
'tx_bps': 7601885696.0,
'tx_bps_L1': 9977474976.0,
'tx_pps': 14847433.0,
'tx_util': 99.77474976}
26/02/2020 01:40:24 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 5499441152.000000, rx_pps: 10741096.000000
26/02/2020 01:40:24 pktgen: throughput: pps_rx 10741096.000000, bps_rx 5499441152.000000
26/02/2020 01:40:24 pktgen: traffic completed.
26/02/2020 01:40:24 tester: ls -d /tmp
26/02/2020 01:40:24 tester: /tmp
26/02/2020 01:40:24 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:40:26 pktgen: test port 0 map gen port 0
26/02/2020 01:40:26 pktgen: test port 0 map gen port 0
26/02/2020 01:40:26 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:40:26 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:40:26 pktgen: begin traffic ......
26/02/2020 01:40:26 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:40:31 pktgen: traffic completed.
26/02/2020 01:40:31 pktgen: begin traffic ......
26/02/2020 01:40:31 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:40:41 pktgen: begin get port statistic ...
26/02/2020 01:40:41 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:40:41 pktgen: {0: {'ibytes': 10731748608,
'ierrors': 0,
'ipackets': 83841782,
'obytes': 10821314688,
'oerrors': 0,
'opackets': 84541515,
'rx_bps': 8559504896.0,
'rx_bps_L1': 9896936256.0,
'rx_pps': 8358946.0,
'rx_util': 98.96936256,
'tx_bps': 8641641472.0,
'tx_bps_L1': 9991909472.0,
'tx_pps': 8439175.0,
'tx_util': 99.91909472},
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': {'bw_per_core': 73.68427276611328,
'cpu_util': 5.86396598815918,
'queue_full': 0,
'rx_bps': 8559504896.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 8358946.0,
'tx_bps': 8641641472.0,
'tx_pps': 8439175.0},
'latency': {},
'total': {'ibytes': 10731748608,
'ierrors': 0,
'ipackets': 83841782,
'obytes': 10821314688,
'oerrors': 0,
'opackets': 84541515,
'rx_bps': 8559504896.0,
'rx_bps_L1': 9896936256.0,
'rx_pps': 8358946.0,
'rx_util': 98.96936256,
'tx_bps': 8641641472.0,
'tx_bps_L1': 9991909472.0,
'tx_pps': 8439175.0,
'tx_util': 99.91909472}}
26/02/2020 01:40:41 pktgen: {'ibytes': 10731748608,
'ierrors': 0,
'ipackets': 83841782,
'obytes': 10821314688,
'oerrors': 0,
'opackets': 84541515,
'rx_bps': 8559504896.0,
'rx_bps_L1': 9896936256.0,
'rx_pps': 8358946.0,
'rx_util': 98.96936256,
'tx_bps': 8641641472.0,
'tx_bps_L1': 9991909472.0,
'tx_pps': 8439175.0,
'tx_util': 99.91909472}
26/02/2020 01:40:41 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 8641641472.000000, tx_pps: 8439175.000000
26/02/2020 01:40:41 pktgen: {'ibytes': 10731748608,
'ierrors': 0,
'ipackets': 83841782,
'obytes': 10821314688,
'oerrors': 0,
'opackets': 84541515,
'rx_bps': 8559504896.0,
'rx_bps_L1': 9896936256.0,
'rx_pps': 8358946.0,
'rx_util': 98.96936256,
'tx_bps': 8641641472.0,
'tx_bps_L1': 9991909472.0,
'tx_pps': 8439175.0,
'tx_util': 99.91909472}
26/02/2020 01:40:41 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 8559504896.000000, rx_pps: 8358946.000000
26/02/2020 01:40:41 pktgen: throughput: pps_rx 8358946.000000, bps_rx 8559504896.000000
26/02/2020 01:40:41 pktgen: traffic completed.
26/02/2020 01:40:41 tester: ls -d /tmp
26/02/2020 01:40:41 tester: /tmp
26/02/2020 01:40:41 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:40:43 pktgen: test port 0 map gen port 0
26/02/2020 01:40:43 pktgen: test port 0 map gen port 0
26/02/2020 01:40:43 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:40:43 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:40:43 pktgen: begin traffic ......
26/02/2020 01:40:43 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:40:48 pktgen: traffic completed.
26/02/2020 01:40:48 pktgen: begin traffic ......
26/02/2020 01:40:48 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:40:58 pktgen: begin get port statistic ...
26/02/2020 01:40:58 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:40:58 pktgen: {0: {'ibytes': 11605045248,
'ierrors': 0,
'ipackets': 45332206,
'obytes': 11605061632,
'oerrors': 0,
'opackets': 45332270,
'rx_bps': 9268369408.0,
'rx_bps_L1': 9992471088.0,
'rx_pps': 4525635.5,
'rx_util': 99.92471088,
'tx_bps': 9268373504.0,
'tx_bps_L1': 9992475424.0,
'tx_pps': 4525637.0,
'tx_util': 99.92475424},
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': {'bw_per_core': 191.11203002929688,
'cpu_util': 2.424853563308716,
'queue_full': 0,
'rx_bps': 9268369408.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 4525635.5,
'tx_bps': 9268373504.0,
'tx_pps': 4525637.0},
'latency': {},
'total': {'ibytes': 11605045248,
'ierrors': 0,
'ipackets': 45332206,
'obytes': 11605061632,
'oerrors': 0,
'opackets': 45332270,
'rx_bps': 9268369408.0,
'rx_bps_L1': 9992471088.0,
'rx_pps': 4525635.5,
'rx_util': 99.92471088,
'tx_bps': 9268373504.0,
'tx_bps_L1': 9992475424.0,
'tx_pps': 4525637.0,
'tx_util': 99.92475424}}
26/02/2020 01:40:58 pktgen: {'ibytes': 11605045248,
'ierrors': 0,
'ipackets': 45332206,
'obytes': 11605061632,
'oerrors': 0,
'opackets': 45332270,
'rx_bps': 9268369408.0,
'rx_bps_L1': 9992471088.0,
'rx_pps': 4525635.5,
'rx_util': 99.92471088,
'tx_bps': 9268373504.0,
'tx_bps_L1': 9992475424.0,
'tx_pps': 4525637.0,
'tx_util': 99.92475424}
26/02/2020 01:40:58 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9268373504.000000, tx_pps: 4525637.000000
26/02/2020 01:40:58 pktgen: {'ibytes': 11605045248,
'ierrors': 0,
'ipackets': 45332206,
'obytes': 11605061632,
'oerrors': 0,
'opackets': 45332270,
'rx_bps': 9268369408.0,
'rx_bps_L1': 9992471088.0,
'rx_pps': 4525635.5,
'rx_util': 99.92471088,
'tx_bps': 9268373504.0,
'tx_bps_L1': 9992475424.0,
'tx_pps': 4525637.0,
'tx_util': 99.92475424}
26/02/2020 01:40:58 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9268369408.000000, rx_pps: 4525635.500000
26/02/2020 01:40:58 pktgen: throughput: pps_rx 4525635.500000, bps_rx 9268369408.000000
26/02/2020 01:40:58 pktgen: traffic completed.
26/02/2020 01:40:58 tester: ls -d /tmp
26/02/2020 01:40:58 tester: /tmp
26/02/2020 01:40:58 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:41:00 pktgen: test port 0 map gen port 0
26/02/2020 01:41:00 pktgen: test port 0 map gen port 0
26/02/2020 01:41:00 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:41:00 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:41:00 pktgen: begin traffic ......
26/02/2020 01:41:00 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:41:05 pktgen: traffic completed.
26/02/2020 01:41:05 pktgen: begin traffic ......
26/02/2020 01:41:05 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:41:15 pktgen: begin get port statistic ...
26/02/2020 01:41:15 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:41:15 pktgen: {0: {'ibytes': 12043335168,
'ierrors': 0,
'ipackets': 23522138,
'obytes': 12043350528,
'oerrors': 0,
'opackets': 23522168,
'rx_bps': 9601350656.0,
'rx_bps_L1': 9976408256.0,
'rx_pps': 2344110.0,
'rx_util': 99.76408256,
'tx_bps': 9601352704.0,
'tx_bps_L1': 9976410304.0,
'tx_pps': 2344110.0,
'tx_util': 99.76410304},
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': {'bw_per_core': 309.3211975097656,
'cpu_util': 1.5520036220550537,
'queue_full': 0,
'rx_bps': 9601350656.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 2344110.0,
'tx_bps': 9601352704.0,
'tx_pps': 2344110.0},
'latency': {},
'total': {'ibytes': 12043335168,
'ierrors': 0,
'ipackets': 23522138,
'obytes': 12043350528,
'oerrors': 0,
'opackets': 23522168,
'rx_bps': 9601350656.0,
'rx_bps_L1': 9976408256.0,
'rx_pps': 2344110.0,
'rx_util': 99.76408256,
'tx_bps': 9601352704.0,
'tx_bps_L1': 9976410304.0,
'tx_pps': 2344110.0,
'tx_util': 99.76410304}}
26/02/2020 01:41:15 pktgen: {'ibytes': 12043335168,
'ierrors': 0,
'ipackets': 23522138,
'obytes': 12043350528,
'oerrors': 0,
'opackets': 23522168,
'rx_bps': 9601350656.0,
'rx_bps_L1': 9976408256.0,
'rx_pps': 2344110.0,
'rx_util': 99.76408256,
'tx_bps': 9601352704.0,
'tx_bps_L1': 9976410304.0,
'tx_pps': 2344110.0,
'tx_util': 99.76410304}
26/02/2020 01:41:15 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9601352704.000000, tx_pps: 2344110.000000
26/02/2020 01:41:15 pktgen: {'ibytes': 12043335168,
'ierrors': 0,
'ipackets': 23522138,
'obytes': 12043350528,
'oerrors': 0,
'opackets': 23522168,
'rx_bps': 9601350656.0,
'rx_bps_L1': 9976408256.0,
'rx_pps': 2344110.0,
'rx_util': 99.76408256,
'tx_bps': 9601352704.0,
'tx_bps_L1': 9976410304.0,
'tx_pps': 2344110.0,
'tx_util': 99.76410304}
26/02/2020 01:41:15 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9601350656.000000, rx_pps: 2344110.000000
26/02/2020 01:41:15 pktgen: throughput: pps_rx 2344110.000000, bps_rx 9601350656.000000
26/02/2020 01:41:15 pktgen: traffic completed.
26/02/2020 01:41:15 tester: ls -d /tmp
26/02/2020 01:41:15 tester: /tmp
26/02/2020 01:41:15 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:41:17 pktgen: test port 0 map gen port 0
26/02/2020 01:41:17 pktgen: test port 0 map gen port 0
26/02/2020 01:41:17 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:41:17 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:41:17 pktgen: begin traffic ......
26/02/2020 01:41:17 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:41:22 pktgen: traffic completed.
26/02/2020 01:41:22 pktgen: begin traffic ......
26/02/2020 01:41:22 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:41:32 pktgen: begin get port statistic ...
26/02/2020 01:41:32 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:41:32 pktgen: {0: {'ibytes': 12273057792,
'ierrors': 0,
'ipackets': 11985407,
'obytes': 12273074176,
'oerrors': 0,
'opackets': 11985424,
'rx_bps': 9786117120.0,
'rx_bps_L1': 9977254360.0,
'rx_pps': 1194607.75,
'rx_util': 99.77254359999999,
'tx_bps': 9786112000.0,
'tx_bps_L1': 9977249140.0,
'tx_pps': 1194607.125,
'tx_util': 99.77249139999999},
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': {'bw_per_core': 667.3594970703125,
'cpu_util': 0.7331964373588562,
'queue_full': 0,
'rx_bps': 9786117120.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 1194607.75,
'tx_bps': 9786112000.0,
'tx_pps': 1194607.125},
'latency': {},
'total': {'ibytes': 12273057792,
'ierrors': 0,
'ipackets': 11985407,
'obytes': 12273074176,
'oerrors': 0,
'opackets': 11985424,
'rx_bps': 9786117120.0,
'rx_bps_L1': 9977254360.0,
'rx_pps': 1194607.75,
'rx_util': 99.77254359999999,
'tx_bps': 9786112000.0,
'tx_bps_L1': 9977249140.0,
'tx_pps': 1194607.125,
'tx_util': 99.77249139999999}}
26/02/2020 01:41:32 pktgen: {'ibytes': 12273057792,
'ierrors': 0,
'ipackets': 11985407,
'obytes': 12273074176,
'oerrors': 0,
'opackets': 11985424,
'rx_bps': 9786117120.0,
'rx_bps_L1': 9977254360.0,
'rx_pps': 1194607.75,
'rx_util': 99.77254359999999,
'tx_bps': 9786112000.0,
'tx_bps_L1': 9977249140.0,
'tx_pps': 1194607.125,
'tx_util': 99.77249139999999}
26/02/2020 01:41:32 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9786112000.000000, tx_pps: 1194607.125000
26/02/2020 01:41:32 pktgen: {'ibytes': 12273057792,
'ierrors': 0,
'ipackets': 11985407,
'obytes': 12273074176,
'oerrors': 0,
'opackets': 11985424,
'rx_bps': 9786117120.0,
'rx_bps_L1': 9977254360.0,
'rx_pps': 1194607.75,
'rx_util': 99.77254359999999,
'tx_bps': 9786112000.0,
'tx_bps_L1': 9977249140.0,
'tx_pps': 1194607.125,
'tx_util': 99.77249139999999}
26/02/2020 01:41:32 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9786117120.000000, rx_pps: 1194607.750000
26/02/2020 01:41:32 pktgen: throughput: pps_rx 1194607.750000, bps_rx 9786117120.000000
26/02/2020 01:41:32 pktgen: traffic completed.
26/02/2020 01:41:32 tester: ls -d /tmp
26/02/2020 01:41:32 tester: /tmp
26/02/2020 01:41:32 tester: scp -v /home/autoregression/xqm/output/tmp/pcap/multi_path_0.pcap root@10.238.54.214:/tmp/multi_path_0.pcap
26/02/2020 01:41:34 pktgen: test port 0 map gen port 0
26/02/2020 01:41:34 pktgen: test port 0 map gen port 0
26/02/2020 01:41:34 pktgen: {'arp': '-',
'cores': [0, 1, 2, 3],
'description': '82599ES 10-Gigabit SFI/SFP+ Network Connection',
'dest': 'f8:f2:1e:5c:e8:90',
'driver': 'net_ixgbe',
'fc': 'none',
'fc_supported': 'yes',
'grat_arp': 'off',
'hw_mac': 'f8:f2:1e:5c:e6:d4',
'index': 0,
'ipv6': 'off',
'is_fc_supported': True,
'is_led_supported': True,
'is_link_supported': False,
'is_prom_supported': True,
'is_virtual': 'no',
'is_vxlan_supported': 'no',
'layer_mode': 'Ethernet',
'led_change_supported': 'yes',
'link': 'UP',
'link_change_supported': 'no',
'mult': 'off',
'numa': 0,
'pci_addr': '0000:18:00.0',
'prom': 'off',
'prom_supported': 'yes',
'rx': {'caps': ['flow_stats', 'latency', 'rx_bytes'], 'counters': 127},
'rx_filter_mode': 'hardware match',
'rx_queue': 'off',
'speed': 10.0,
'src_ipv4': '-',
'src_mac': 'f8:f2:1e:5c:e6:d4',
'status': 'IDLE',
'supp_speeds': [1000, 10000],
'vlan': '-',
'vxlan_fs': '-'}
26/02/2020 01:41:34 pktgen: trex packet generator: run traffic 5s to warm up ...
26/02/2020 01:41:34 pktgen: begin traffic ......
26/02/2020 01:41:34 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:41:39 pktgen: traffic completed.
26/02/2020 01:41:39 pktgen: begin traffic ......
26/02/2020 01:41:39 pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
26/02/2020 01:41:49 pktgen: begin get port statistic ...
26/02/2020 01:41:49 pktgen: {'options': {'pcap': '/tmp/multi_path_0.pcap',
'stream_config': {'rate': 100,
'transmit_mode': 'continuous',
'txmode': {}}},
'pcap_file': '/tmp/multi_path_0.pcap',
'rx_port': 0,
'tx_port': 0}
26/02/2020 01:41:49 pktgen: {0: {'ibytes': 12348804006,
'ierrors': 0,
'ipackets': 8134916,
'obytes': 12348820704,
'oerrors': 0,
'opackets': 8134928,
'rx_bps': 9894431744.0,
'rx_bps_L1': 10024793744.0,
'rx_pps': 814762.5,
'rx_util': 100.24793744,
'tx_bps': 9894436864.0,
'tx_bps_L1': 10024798924.0,
'tx_pps': 814762.875,
'tx_util': 100.24798924},
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': {'bw_per_core': 842.437255859375,
'cpu_util': 0.5872506499290466,
'queue_full': 0,
'rx_bps': 9894431744.0,
'rx_cpu_util': 0.0,
'rx_drop_bps': 0.0,
'rx_pps': 814762.5,
'tx_bps': 9894436864.0,
'tx_pps': 814762.875},
'latency': {},
'total': {'ibytes': 12348804006,
'ierrors': 0,
'ipackets': 8134916,
'obytes': 12348820704,
'oerrors': 0,
'opackets': 8134928,
'rx_bps': 9894431744.0,
'rx_bps_L1': 10024793744.0,
'rx_pps': 814762.5,
'rx_util': 100.24793744,
'tx_bps': 9894436864.0,
'tx_bps_L1': 10024798924.0,
'tx_pps': 814762.875,
'tx_util': 100.24798924}}
26/02/2020 01:41:49 pktgen: {'ibytes': 12348804006,
'ierrors': 0,
'ipackets': 8134916,
'obytes': 12348820704,
'oerrors': 0,
'opackets': 8134928,
'rx_bps': 9894431744.0,
'rx_bps_L1': 10024793744.0,
'rx_pps': 814762.5,
'rx_util': 100.24793744,
'tx_bps': 9894436864.0,
'tx_bps_L1': 10024798924.0,
'tx_pps': 814762.875,
'tx_util': 100.24798924}
26/02/2020 01:41:49 pktgen: Tx Port 0 stats:
tx_port: 0, tx_bps: 9894436864.000000, tx_pps: 814762.875000
26/02/2020 01:41:49 pktgen: {'ibytes': 12348804006,
'ierrors': 0,
'ipackets': 8134916,
'obytes': 12348820704,
'oerrors': 0,
'opackets': 8134928,
'rx_bps': 9894431744.0,
'rx_bps_L1': 10024793744.0,
'rx_pps': 814762.5,
'rx_util': 100.24793744,
'tx_bps': 9894436864.0,
'tx_bps_L1': 10024798924.0,
'tx_pps': 814762.875,
'tx_util': 100.24798924}
26/02/2020 01:41:49 pktgen: Rx Port 0 stats:
rx_port: 0, rx_bps: 9894431744.000000, rx_pps: 814762.500000
26/02/2020 01:41:49 pktgen: throughput: pps_rx 814762.500000, bps_rx 9894431744.000000
26/02/2020 01:41:49 pktgen: traffic completed.
26/02/2020 01:41:55 TestPVPMultiPathVhostPerformance:
+-------+-------------------+--------+------------+
| Frame | Mode | Mpps | % linerate |
+=======+===================+========+============+
| 64 | virtio_1.1 normal | 10.741 | 72.180 |
+-------+-------------------+--------+------------+
| 128 | virtio_1.1 normal | 8.359 | 98.970 |
+-------+-------------------+--------+------------+
| 256 | virtio_1.1 normal | 4.526 | 99.926 |
+-------+-------------------+--------+------------+
| 512 | virtio_1.1 normal | 2.344 | 99.765 |
+-------+-------------------+--------+------------+
| 1024 | virtio_1.1 normal | 1.195 | 99.774 |
+-------+-------------------+--------+------------+
| 1518 | virtio_1.1 normal | 0.815 | 100.248 |
+-------+-------------------+--------+------------+
26/02/2020 01:41:55 TestPVPMultiPathVhostPerformance: Test Case test_perf_vhost_single_core_virtio11_normal Result PASSED:
26/02/2020 01:41:55 dut.10.238.54.213: killall -s INT testpmd
26/02/2020 01:41:55 dut.10.238.54.213: testpmd: no process found
26/02/2020 01:41:55 dts:
TEST SUITE ENDED: TestPVPMultiPathVhostPerformance
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [dts] [PATCH V1 1/7]pvp_multi_paths_performance: remove unnecessary param --single-file-segments from vhost
2020-02-26 9:37 [dts] [PATCH V1 1/7]pvp_multi_paths_performance: remove unnecessary param --single-file-segments from vhost Xiao Qimai
` (5 preceding siblings ...)
2020-02-26 9:37 ` [dts] [PATCH V1 7/7]virtio_user_for_container_networking: " Xiao Qimai
@ 2020-03-03 5:49 ` Tu, Lijuan
6 siblings, 0 replies; 9+ messages in thread
From: Tu, Lijuan @ 2020-03-03 5:49 UTC (permalink / raw)
To: Xiao, QimaiX, dts; +Cc: Xiao, QimaiX
Applied the series.
> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xiao Qimai
> Sent: Wednesday, February 26, 2020 5:37 PM
> To: dts@dpdk.org
> Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
> Subject: [dts] [PATCH V1 1/7]pvp_multi_paths_performance: remove
> unnecessary param --single-file-segments from vhost
>
> Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
> ---
> tests/TestSuite_pvp_multi_paths_performance.py | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/tests/TestSuite_pvp_multi_paths_performance.py
> b/tests/TestSuite_pvp_multi_paths_performance.py
> index a884e1f..62fef12 100644
> --- a/tests/TestSuite_pvp_multi_paths_performance.py
> +++ b/tests/TestSuite_pvp_multi_paths_performance.py
> @@ -129,8 +129,6 @@ class TestPVPMultiPathPerformance(TestCase):
> eal_param = self.dut.create_eal_parameters(cores=self.core_list_host,
> prefix='vhost',
>
> ports=[self.dut.ports_info[self.dut_ports[0]]['pci']],
> vdevs=['net_vhost0,iface=vhost-
> net,queues=1,client=0'])
> - if self.check_2M_env:
> - eal_param += " --single-file-segments"
> command_line_client = "./%s/app/testpmd " % self.target + eal_param
> + " -- -i --nb-cores=1 --txd=1024 --rxd=1024"
> self.vhost.send_expect(command_line_client, "testpmd> ", 120)
> self.vhost.send_expect("set fwd mac", "testpmd> ", 120)
> --
> 1.8.3.1
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2020-03-03 5:49 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-26 9:37 [dts] [PATCH V1 1/7]pvp_multi_paths_performance: remove unnecessary param --single-file-segments from vhost Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 2/7]pvp_multi_paths_vhost_single_core_performance: " Xiao Qimai
2020-02-26 9:47 ` Xiao, QimaiX
2020-02-26 9:37 ` [dts] [PATCH V1 3/7]pvp_multi_paths_virtio_single_core_performance: " Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 4/7]pvp_share_lib: " Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 5/7]pvp_vhost_user_built_in_net_driver: " Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 6/7]pvp_virtio_user_multi_queues: " Xiao Qimai
2020-02-26 9:37 ` [dts] [PATCH V1 7/7]virtio_user_for_container_networking: " Xiao Qimai
2020-03-03 5:49 ` [dts] [PATCH V1 1/7]pvp_multi_paths_performance: " Tu, Lijuan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).