test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V2] tests/vswitch_sample_cbdma: fix script issues
@ 2021-07-29  1:32 Wei Ling
  2021-07-29  1:41 ` Ling, WeiX
  0 siblings, 1 reply; 3+ messages in thread
From: Wei Ling @ 2021-07-29  1:32 UTC (permalink / raw)
  To: dts; +Cc: Wei Ling

v1:
1.Move self.vm_dut and self.vm from set_up_all to setup.
2.Add bind_dev parameter in start_vms method to make diff
  case can bind the NIC into DPDK or not.
3.Add stop_all_apps and use it in tear_down to stop all apps.

v2:
Remove testcase 1 quit vhost and testpmd steps, because
tear_down already have these steps.

Signed-off-by: Wei Ling <weix.ling@intel.com>
---
 tests/TestSuite_vswitch_sample_cbdma.py | 34 +++++++++++--------------
 1 file changed, 15 insertions(+), 19 deletions(-)

diff --git a/tests/TestSuite_vswitch_sample_cbdma.py b/tests/TestSuite_vswitch_sample_cbdma.py
index 08422ea3..e8be13de 100644
--- a/tests/TestSuite_vswitch_sample_cbdma.py
+++ b/tests/TestSuite_vswitch_sample_cbdma.py
@@ -81,8 +81,6 @@ class TestVswitchSampleCBDMA(TestCase):
         self.vm_dst_mac0 = '52:54:00:00:00:01'
         self.vm_dst_mac1 = '52:54:00:00:00:02'
         self.vm_num = 2
-        self.vm_dut = []
-        self.vm = []
         self.app_testpmd_path = self.dut.apps_name['test-pmd']
         # create an instance to set stream field setting
         self.pktgen_helper = PacketGeneratorHelper()
@@ -107,6 +105,8 @@ class TestVswitchSampleCBDMA(TestCase):
         """
         self.dut.send_expect("rm -rf %s/vhost-net*" % self.base_dir, "#")
         self.dut.send_expect("killall -I qemu-system-x86_64", '#', 20)
+        self.vm_dut = []
+        self.vm = []
 
     def set_max_queues(self, max_queues=512):
         self.logger.info("Configure MAX_QUEUES to {}".format(max_queues))
@@ -172,7 +172,7 @@ class TestVswitchSampleCBDMA(TestCase):
         pmd_session.start_testpmd(cores=cores, param=params, eal_param=eal_params, no_pci=True, ports=[], prefix=prefix,
                                   fixed_prefix=True)
 
-    def start_vms(self, mode=0, mergeable=True, server_mode=False, set_target=True):
+    def start_vms(self, mode=0, mergeable=True, server_mode=False, set_target=True, bind_dev=True):
         """
         start two VM, each VM has one virtio device
         """
@@ -202,7 +202,7 @@ class TestVswitchSampleCBDMA(TestCase):
             vm_info.set_vm_device(**vm_params)
             time.sleep(3)
             try:
-                vm_dut = vm_info.start(set_target=set_target)
+                vm_dut = vm_info.start(set_target=set_target, bind_dev=bind_dev)
                 if vm_dut is None:
                     raise Exception("Set up VM ENV failed")
             except Exception as e:
@@ -358,8 +358,6 @@ class TestVswitchSampleCBDMA(TestCase):
         self.start_virtio_testpmd(pmd_session=self.virtio_user0_pmd, dev_mac=self.virtio_dst_mac0, dev_id=0,
                                   cores=self.vuser0_core_list, prefix='testpmd0', nb_cores=1, used_queues=1)
         split_ring_reult = self.pvp_test_with_cbdma()
-        self.virtio_user0_pmd.execute_cmd("quit", "#")
-        self.vhost_user.send_expect("^C", "# ", 20)
 
         self.table_header = ['Frame Size(Byte)', 'Mode', 'Throughput(Mpps)']
         self.result_table_create(self.table_header)
@@ -370,8 +368,6 @@ class TestVswitchSampleCBDMA(TestCase):
         for table_row in perf_result:
             self.result_table_add(table_row)
         self.result_table_print()
-        self.virtio_user0_pmd.execute_cmd("quit", "#")
-        self.vhost_user.send_expect("^C", "# ", 20)
 
     def config_stream_imix(self, frame_sizes, port_num, dst_mac_list):
         tgen_input = []
@@ -473,9 +469,6 @@ class TestVswitchSampleCBDMA(TestCase):
         for table_row in perf_result:
             self.result_table_add(table_row)
         self.result_table_print()
-        self.virtio_user0_pmd.execute_cmd("quit", "#")
-        self.virtio_user1_pmd.execute_cmd("quit", "#")
-        self.vhost_user.send_expect("^C", "# ", 20)
 
     def get_receive_throughput(self, pmd_session, count=10):
         i = 0
@@ -569,9 +562,6 @@ class TestVswitchSampleCBDMA(TestCase):
         for table_row in perf_result:
             self.result_table_add(table_row)
         self.result_table_print()
-        self.virtio_user0_pmd.execute_cmd("quit", "# ")
-        self.virtio_user1_pmd.execute_cmd("quit", "# ")
-        self.vhost_user.send_expect("^C", "# ", 20)
 
     def vm2vm_check_with_two_vhost_device(self):
         rx_throughput = {}
@@ -589,7 +579,7 @@ class TestVswitchSampleCBDMA(TestCase):
 
     def start_vms_testpmd_and_test(self, need_start_vm=True):
         if need_start_vm:
-            self.start_vms(mode=2, mergeable=True, server_mode=True)
+            self.start_vms(mode=2, mergeable=True, server_mode=True, set_target=True, bind_dev=True)
             self.vm0_pmd = PmdOutput(self.vm_dut[0])
             self.vm1_pmd = PmdOutput(self.vm_dut[1])
         self.start_vm_testpmd(self.vm0_pmd)
@@ -622,9 +612,6 @@ class TestVswitchSampleCBDMA(TestCase):
         # repeat bind 50 time from virtio-pci to vfio-pci
         self.repeat_bind_driver(dut=self.vm_dut[0], repeat_times=50)
         self.repeat_bind_driver(dut=self.vm_dut[1], repeat_times=50)
-        for i in range(len(self.vm)):
-            self.vm[i].stop()
-        self.vhost_user.send_expect("^C", "# ", 20)
 
         self.table_header = ['Frame Size(Byte)', 'Before/After Bind VM Driver', 'Throughput(Mpps)']
         self.result_table_create(self.table_header)
@@ -712,7 +699,7 @@ class TestVswitchSampleCBDMA(TestCase):
 
     def start_iperf_and_scp_test_in_vms(self, need_start_vm=True, mode=0, mergeable=False, server_mode=False):
         if need_start_vm:
-            self.start_vms(mode=mode, mergeable=mergeable, server_mode=server_mode, set_target=False)
+            self.start_vms(mode=mode, mergeable=mergeable, server_mode=server_mode, set_target=True, bind_dev=False)
             self.vm0_pmd = PmdOutput(self.vm_dut[0])
             self.vm1_pmd = PmdOutput(self.vm_dut[1])
             self.config_vm_env()
@@ -790,10 +777,19 @@ class TestVswitchSampleCBDMA(TestCase):
         if getattr(self, 'virtio-user1', None):
             self.dut.close_session(self.virtio_user1)
 
+    def stop_all_apps(self):
+        for i in range(len(self.vm)):
+            self.vm[i].stop()
+        self.virtio_user0_pmd.quit()
+        self.virtio_user1_pmd.quit()
+        self.vhost_user.send_expect("^C", "# ", 20)
+
     def tear_down(self):
         """
         Run after each test case.
         """
+        self.stop_all_apps()
+        self.dut.kill_all()
         self.bind_cbdma_device_to_kernel()
 
     def tear_down_all(self):
-- 
2.25.1


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

* Re: [dts] [PATCH V2] tests/vswitch_sample_cbdma: fix script issues
  2021-07-29  1:32 [dts] [PATCH V2] tests/vswitch_sample_cbdma: fix script issues Wei Ling
@ 2021-07-29  1:41 ` Ling, WeiX
  2021-07-29  5:03   ` Wang, Yinan
  0 siblings, 1 reply; 3+ messages in thread
From: Ling, WeiX @ 2021-07-29  1:41 UTC (permalink / raw)
  To: dts

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

> -----Original Message-----
> From: Ling, WeiX <weix.ling@intel.com>
> Sent: Thursday, July 29, 2021 09:32 AM
> To: dts@dpdk.org
> Cc: Ling, WeiX <weix.ling@intel.com>
> Subject: [dts][PATCH V2] tests/vswitch_sample_cbdma: fix script issues
> 
Tested-by: Wei Ling <weix.ling@intel.com>

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

29/07/2021 09:28:44                            dts: 
TEST SUITE : TestVswitchSampleCBDMA
29/07/2021 09:28:44                            dts: NIC :        fortville_spirit
29/07/2021 09:28:44             dut.10.240.183.214: 
29/07/2021 09:28:44                         tester: 
29/07/2021 09:28:44         TestVswitchSampleCBDMA: Configure MAX_QUEUES to 512
29/07/2021 09:28:44             dut.10.240.183.214: sed -i -e 's/#define MAX_QUEUES .*$/#define MAX_QUEUES 512/' ./examples/vhost/main.c
29/07/2021 09:28:44             dut.10.240.183.214: 
29/07/2021 09:28:44             dut.10.240.183.214: meson configure -Dexamples=vhost x86_64-native-linuxapp-gcc
29/07/2021 09:28:45             dut.10.240.183.214: 
29/07/2021 09:28:45             dut.10.240.183.214: ninja -C x86_64-native-linuxapp-gcc
29/07/2021 09:28:50             dut.10.240.183.214: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.56.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES (/usr/bin/cat)
Project name: DPDK
Project version: 21.08.0-rc2
C compiler for the host machine: gcc (gcc 9.3.0 "gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0")
C linker for the host machine: gcc ld.bfd 2.34
Host machine cpu family: x86_64
Host machine cpu: x86_64
Message: ## Building in Developer Mode ##
Program pkg-config found: YES (/usr/bin/pkg-config)
Program check-symbols.sh found: YES (/root/dpdk/buildtools/check-symbols.sh)
Program options-ibverbs-static.sh found: YES (/root/dpdk/buildtools/options-ibverbs-static.sh)
Program binutils-avx512-check.sh found: YES (/root/dpdk/buildtools/binutils-avx512-check.sh)
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES (/usr/bin/cat)
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh)
Checking for size of "void *" : 8
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES (cached)
Library libfdt found: YES
Has header "fdt.h" : YES (cached)
Library libexecinfo found: NO
Found pkg-config: /usr/bin/pkg-config (0.29.1)
Run-time dependency libarchive found: NO (tried pkgconfig)
Run-time dependency libbsd found: NO (tried pkgconfig)
Dependency libpcap found: YES 1.9.1 (cached)
Has header "pcap.h" with dependency libpcap: YES (cached)
Compiler for C supports arguments -Wextra: YES (cached)
../config/meson.build:284: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wdeprecated: YES (cached)
Compiler for C supports arguments -Wformat: YES (cached)
Compiler for C supports arguments -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wformat-security: YES (cached)
Compiler for C supports arguments -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wnested-externs: YES (cached)
Compiler for C supports arguments -Wold-style-definition: YES (cached)
Compiler for C supports arguments -Wpointer-arith: YES (cached)
Compiler for C supports arguments -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wundef: YES (cached)
Compiler for C supports arguments -Wwrite-strings: YES (cached)
Compiler for C supports arguments -Wno-address-of-packed-member: YES (cached)
Compiler for C supports arguments -Wno-packed-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers: YES (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Checking if "AVX512 checking" compiles: YES (cached)
Fetching value of define "__SSE4_2__" : 1 (cached)
Fetching value of define "__AES__" : 1 (cached)
Fetching value of define "__AVX__" : 1 (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Fetching value of define "__AVX512CD__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__RDRND__" : 1 (cached)
Fetching value of define "__RDSEED__" : 1 (cached)
Fetching value of define "__VPCLMULQDQ__" :  (cached)
Compiler for C supports arguments -Wno-format-truncation: YES (cached)
Message: lib/kvargs: Defining dependency "kvargs"
Message: lib/telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Message: lib/eal: Defining dependency "eal"
Message: lib/ring: Defining dependency "ring"
Message: lib/rcu: Defining dependency "rcu"
Message: lib/mempool: Defining dependency "mempool"
Message: lib/mbuf: Defining dependency "mbuf"
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__VPCLMULQDQ__" :  (cached)
Compiler for C supports arguments -mpclmul: YES (cached)
Compiler for C supports arguments -maes: YES (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -mavx512dq: YES (cached)
Compiler for C supports arguments -mavx512vl: YES (cached)
Compiler for C supports arguments -mvpclmulqdq: YES (cached)
Compiler for C supports arguments -mavx2: YES (cached)
Compiler for C supports arguments -mavx: YES (cached)
Message: lib/net: Defining dependency "net"
Message: lib/meter: Defining dependency "meter"
Message: lib/ethdev: Defining dependency "ethdev"
Message: lib/pci: Defining dependency "pci"
Message: lib/cmdline: Defining dependency "cmdline"
Run-time dependency jansson found: NO (tried pkgconfig)
Message: lib/metrics: Defining dependency "metrics"
Message: lib/hash: Defining dependency "hash"
Message: lib/timer: Defining dependency "timer"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__AVX512CD__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Message: lib/acl: Defining dependency "acl"
Message: lib/bbdev: Defining dependency "bbdev"
Message: lib/bitratestats: Defining dependency "bitratestats"
Message: lib/cfgfile: Defining dependency "cfgfile"
Message: lib/compressdev: Defining dependency "compressdev"
Message: lib/cryptodev: Defining dependency "cryptodev"
Message: lib/distributor: Defining dependency "distributor"
Message: lib/efd: Defining dependency "efd"
Message: lib/eventdev: Defining dependency "eventdev"
Message: lib/gro: Defining dependency "gro"
Message: lib/gso: Defining dependency "gso"
Message: lib/ip_frag: Defining dependency "ip_frag"
Message: lib/jobstats: Defining dependency "jobstats"
Message: lib/kni: Defining dependency "kni"
Message: lib/latencystats: Defining dependency "latencystats"
Message: lib/lpm: Defining dependency "lpm"
Message: lib/member: Defining dependency "member"
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Message: lib/power: Defining dependency "power"
Message: lib/pdump: Defining dependency "pdump"
Message: lib/rawdev: Defining dependency "rawdev"
Message: lib/regexdev: Defining dependency "regexdev"
Message: lib/rib: Defining dependency "rib"
Message: lib/reorder: Defining dependency "reorder"
Message: lib/sched: Defining dependency "sched"
Message: lib/security: Defining dependency "security"
Message: lib/stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/vhost: Defining dependency "vhost"
Message: lib/ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Message: lib/fib: Defining dependency "fib"
Message: lib/port: Defining dependency "port"
Message: lib/table: Defining dependency "table"
Message: lib/pipeline: Defining dependency "pipeline"
Message: lib/flow_classify: Defining dependency "flow_classify"
Dependency libelf found: YES 0.176 (cached)
Message: lib/bpf: Defining dependency "bpf"
Message: lib/graph: Defining dependency "graph"
Message: lib/node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast: YES (cached)
Message: drivers/common/iavf: Defining dependency "common_iavf"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Message: drivers/bus/auxiliary: Defining dependency "bus_auxiliary"
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/bus/dpaa: Defining dependency "bus_dpaa"
Message: drivers/bus/fslmc: Defining dependency "bus_fslmc"
Message: drivers/bus/ifpga: Defining dependency "bus_ifpga"
Message: drivers/bus/pci: Defining dependency "bus_pci"
Message: drivers/bus/vdev: Defining dependency "bus_vdev"
Message: drivers/bus/vmbus: Defining dependency "bus_vmbus"
Message: drivers/common/cnxk: Defining dependency "common_cnxk"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Run-time dependency libmlx5 found: NO (tried pkgconfig)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/common/qat: Defining dependency "common_qat"
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
Message: drivers/mempool/cnxk: Defining dependency "mempool_cnxk"
Message: drivers/mempool/dpaa: Defining dependency "mempool_dpaa"
Message: drivers/mempool/dpaa2: Defining dependency "mempool_dpaa2"
Message: drivers/mempool/octeontx: Defining dependency "mempool_octeontx"
Message: drivers/mempool/octeontx2: Defining dependency "mempool_octeontx2"
Message: drivers/mempool/ring: Defining dependency "mempool_ring"
Message: drivers/mempool/stack: Defining dependency "mempool_stack"
Message: drivers/raw/cnxk_bphy: Defining dependency "raw_cnxk_bphy"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "raw_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "raw_dpaa2_qdma"
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency librt found: NO (tried pkgconfig and cmake)
Library librt found: YES
Message: Disabling ifpga [drivers/raw/ifpga]: missing internal dependency "net_i40e"
Message: Disabling ifpga [drivers/raw/ifpga]: missing internal dependency "net_ipn3ke"
Message: drivers/raw/ioat: Defining dependency "raw_ioat"
Message: drivers/raw/ntb: Defining dependency "raw_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "raw_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "raw_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "raw_skeleton"
Message: drivers/net/af_packet: Defining dependency "net_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "net_ark"
Message: drivers/net/atlantic: Defining dependency "net_atlantic"
Message: drivers/net/avp: Defining dependency "net_avp"
Message: drivers/net/axgbe: Defining dependency "net_axgbe"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Compiler for C supports arguments -DRTE_LIBRTE_BNXT_TF: YES (cached)
Compiler for C supports arguments -DSUPPORT_CFA_HW_ALL=1: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/bonding: Defining dependency "net_bond"
Compiler for C supports arguments -flax-vector-conversions: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Message: drivers/net/cnxk: Defining dependency "net_cnxk"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "net_dpaa"
Message: drivers/net/dpaa2: Defining dependency "net_dpaa2"
Compiler for C supports arguments -Wno-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Message: drivers/net/e1000: Defining dependency "net_e1000"
Message: drivers/net/ena: Defining dependency "net_ena"
Message: drivers/net/enetc: Defining dependency "net_enetc"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/enic: Defining dependency "net_enic"
Message: drivers/net/failsafe: Defining dependency "net_failsafe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format: YES (cached)
Compiler for C supports arguments -Wno-format-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/i40e: Defining dependency "net_i40e"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/iavf: Defining dependency "net_iavf"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/ice: Defining dependency "net_ice"
Message: drivers/net/igc: Defining dependency "net_igc"
Message: drivers/net/ionic: Defining dependency "net_ionic"
Message: drivers/net/ipn3ke: Defining dependency "net_ipn3ke"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "net_ixgbe"
Message: drivers/net/kni: Defining dependency "net_kni"
Message: drivers/net/liquidio: Defining dependency "net_liquidio"
Message: drivers/net/memif: Defining dependency "net_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/net/mlx5]: missing internal dependency "common_mlx5"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig)
Message: drivers/net/nfp: Defining dependency "net_nfp"
Message: drivers/net/ngbe: Defining dependency "net_ngbe"
Message: drivers/net/null: Defining dependency "net_null"
Message: drivers/net/octeontx: Defining dependency "net_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES (cached)
Message: drivers/net/octeontx2: Defining dependency "net_octeontx2"
Message: drivers/net/octeontx_ep: Defining dependency "net_octeontx_ep"
Message: drivers/net/pcap: Defining dependency "net_pcap"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/net/qede: Defining dependency "net_qede"
Message: drivers/net/ring: Defining dependency "net_ring"
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Library atomic found: YES
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES (cached)
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : YES (cached)
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : YES (cached)
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : YES (cached)
Configuring tap_autoconf.h using configuration
Message: drivers/net/tap: Defining dependency "net_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "net_thunderx"
Message: drivers/net/txgbe: Defining dependency "net_txgbe"
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: drivers/net/vdev_netvsc: Defining dependency "net_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "net_vhost"
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512vl: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Message: drivers/net/virtio: Defining dependency "net_virtio"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "net_vmxnet3"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Run-time dependency libaarch64crypto found: NO (tried pkgconfig)
Message: drivers/crypto/bcmfs: Defining dependency "crypto_bcmfs"
Message: drivers/crypto/caam_jr: Defining dependency "crypto_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/crypto/cnxk: Defining dependency "crypto_cnxk"
Message: drivers/crypto/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/crypto/mlx5]: missing internal dependency "common_mlx5"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/crypto/nitrox: Defining dependency "crypto_nitrox"
Message: drivers/crypto/null: Defining dependency "crypto_null"
Message: drivers/crypto/octeontx: Defining dependency "crypto_octeontx"
Message: drivers/crypto/octeontx2: Defining dependency "crypto_octeontx2"
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/crypto/scheduler: Defining dependency "crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "crypto_virtio"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig)
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/compress/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/compress/octeontx: Defining dependency "compress_octeontx"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "compress_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/regex/mlx5]: missing internal dependency "common_mlx5"
Library librxp_compiler found: NO
Message: drivers/regex/octeontx2: Defining dependency "regex_octeontx2"
Message: drivers/vdpa/ifc: Defining dependency "vdpa_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
Compiler for C supports arguments -flax-vector-conversions: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Message: drivers/event/cnxk: Defining dependency "event_cnxk"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx2: Defining dependency "event_octeontx2"
Message: drivers/event/opdl: Defining dependency "event_opdl"
Message: drivers/event/skeleton: Defining dependency "event_skeleton"
Message: drivers/event/sw: Defining dependency "event_sw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/null: Defining dependency "baseband_null"
Library libturbo found: NO
Library libldpc_decoder_5gnr found: NO
Message: drivers/baseband/turbo_sw: Defining dependency "baseband_turbo_sw"
Compiler for C supports arguments -Wno-format-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Message: hugepage availability: true
Program get-coremask.sh found: YES (/root/dpdk/app/test/get-coremask.sh)
Program doxygen found: NO
Program sphinx-build found: NO
Compiler for C supports arguments -Wno-format-truncation: YES (cached)
Configuring rte_build_config.h using configuration
Message: 
=================
Libraries Enabled
=================

libs:
	kvargs, telemetry, eal, ring, rcu, mempool, mbuf, net, 
	meter, ethdev, pci, cmdline, metrics, hash, timer, acl, 
	bbdev, bitratestats, cfgfile, compressdev, cryptodev, distributor, efd, eventdev, 
	gro, gso, ip_frag, jobstats, kni, latencystats, lpm, member, 
	power, pdump, rawdev, regexdev, rib, reorder, sched, security, 
	stack, vhost, ipsec, fib, port, table, pipeline, flow_classify, 
	bpf, graph, node, 

Message: 
===============
Drivers Enabled
===============

common:
	cpt, dpaax, iavf, octeontx, octeontx2, cnxk, qat, sfc_efx, 
	
bus:
	auxiliary, dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, cnxk, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
	
raw:
	cnxk_bphy, dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
	
net:
	af_packet, ark, atlantic, avp, axgbe, bnx2x, bnxt, bond, 
	cnxk, cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, 
	failsafe, fm10k, hinic, hns3, i40e, iavf, ice, igc, 
	ionic, ipn3ke, ixgbe, kni, liquidio, memif, netvsc, nfp, 
	ngbe, null, octeontx, octeontx2, octeontx_ep, pcap, pfe, qede, 
	ring, sfc, softnic, tap, thunderx, txgbe, vdev_netvsc, vhost, 
	virtio, vmxnet3, 
crypto:
	bcmfs, caam_jr, cnxk, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, 
	octeontx2, scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	cnxk, dlb2, dpaa, dpaa2, dsw, octeontx2, opdl, skeleton, 
	sw, octeontx, 
baseband:
	acc100, fpga_5gnr_fec, fpga_lte_fec, null, turbo_sw, 

Message: 
=================
Content Skipped
=================

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	crypto/qat:	missing dependency, libcrypto
	raw/ifpga:	missing internal dependency, "net_ipn3ke"
	net/af_xdp:	missing dependency, "libbpf"
	net/mlx4:	missing dependency, "mlx4"
	net/mlx5:	missing internal dependency, "common_mlx5"
	net/mvneta:	missing dependency, "libmusdk"
	net/mvpp2:	missing dependency, "libmusdk"
	net/nfb:	missing dependency, "libnfb"
	net/szedata2:	missing dependency, "libsze2"
	crypto/aesni_gcm:	missing dependency, "libIPSec_MB"
	crypto/aesni_mb:	missing dependency, "libIPSec_MB"
	crypto/armv8:	missing dependency, "libAArch64crypto"
	crypto/ccp:	missing dependency, "libcrypto"
	crypto/kasumi:	missing dependency, "libIPSec_MB"
	crypto/mlx5:	missing internal dependency, "common_mlx5"
	crypto/mvsam:	missing dependency, "libmusdk"
	crypto/openssl:	missing dependency, "libcrypto"
	crypto/snow3g:	missing dependency, "libIPSec_MB"
	crypto/zuc:	missing dependency, "libIPSec_MB"
	compress/isal:	missing dependency, "libisal"
	compress/mlx5:	missing internal dependency, "common_mlx5"
	regex/mlx5:	missing internal dependency, "common_mlx5"
	vdpa/mlx5:	missing internal dependency, "common_mlx5"
	

Build targets in project: 1072

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
[1/4] Compiling C object examples/dpdk-vhost.p/vhost_ioat.c.o
[2/4] Compiling C object examples/dpdk-vhost.p/vhost_virtio_net.c.o
[3/4] Compiling C object examples/dpdk-vhost.p/vhost_main.c.o
[4/4] Linking target examples/dpdk-vhost
29/07/2021 09:28:50             dut.10.240.183.214: ls x86_64-native-linuxapp-gcc/examples/dpdk-vhost 
29/07/2021 09:28:51             dut.10.240.183.214: x86_64-native-linuxapp-gcc/examples/dpdk-vhost
29/07/2021 09:28:51                         tester: ls -d /tmp
29/07/2021 09:28:51                         tester: /tmp
29/07/2021 09:28:55             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
29/07/2021 09:28:56             dut.10.240.183.214: 2048
29/07/2021 09:28:56         TestVswitchSampleCBDMA: Test Case test_perf_pvp_check_with_cbdma_channel_using_vhost_async_driver Begin
29/07/2021 09:28:56             dut.10.240.183.214:  
29/07/2021 09:28:56                         tester:  
29/07/2021 09:28:56             dut.10.240.183.214: rm -rf /root/dpdk/vhost-net*
29/07/2021 09:28:56             dut.10.240.183.214: 
29/07/2021 09:28:56             dut.10.240.183.214: killall -I qemu-system-x86_64
29/07/2021 09:28:56             dut.10.240.183.214: qemu-system-x86_64: no process found
29/07/2021 09:28:56             dut.10.240.183.214: ./usertools/dpdk-devbind.py --status-dev misc
29/07/2021 09:28:56             dut.10.240.183.214: 
Misc (rawdev) devices using kernel driver
=========================================
0000:00:04.0 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.1 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.2 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.3 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.4 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.5 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.6 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.7 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.2 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.3 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.4 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.5 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.6 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.7 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 

Other Misc (rawdev) devices
===========================
0000:80:04.0 'Sky Lake-E CBDMA Registers 2021' unused=ioatdma,igb_uio,vfio-pci
0000:80:04.1 'Sky Lake-E CBDMA Registers 2021' unused=ioatdma,igb_uio,vfio-pci
29/07/2021 09:28:56             dut.10.240.183.214: ./usertools/dpdk-devbind.py --force --bind=igb_uio 0000:80:04.2
29/07/2021 09:28:57             dut.10.240.183.214: 
29/07/2021 09:29:01             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
29/07/2021 09:29:01             dut.10.240.183.214: 2048
29/07/2021 09:29:13         TestVswitchSampleCBDMA: Test running at parameters: framesize: 64
29/07/2021 09:29:13                         tester: ls -d /tmp
29/07/2021 09:29:13                         tester: /tmp
29/07/2021 09:29:13                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap
29/07/2021 09:29:14                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:14                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:14                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:14                         pktgen: trex port <0> not support flow control
29/07/2021 09:29:14                         pktgen: check the trex port link status
29/07/2021 09:29:14                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:14                         pktgen: begin traffic ......
29/07/2021 09:29:14                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:29:19                         pktgen: begin get port statistic ...
29/07/2021 09:29:19                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:29:19                         pktgen: {0: {'ibytes': 972285012,
     'ierrors': 0,
     'ipackets': 14298340,
     'obytes': 8902333952,
     'oerrors': 0,
     'opackets': 139098980,
     'rx_bps': 1476714240.0,
     'rx_bps_L1': 1911041919.9999998,
     'rx_pps': 2714548.0,
     'rx_util': 4.7776048,
     'tx_bps': 13521759232.0,
     'tx_bps_L1': 17747309952.0,
     'tx_pps': 26409692.0,
     'tx_util': 44.36827488},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.995063781738281,
            'cpu_util': 75.162109375,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12197892,
            'rx_bps': 1476714240.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 12045044736.0,
            'rx_pps': 2714548.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13521759232.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26409692.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 972285012,
           'ierrors': 0,
           'ipackets': 14298340,
           'obytes': 8902333952,
           'oerrors': 0,
           'opackets': 139098980,
           'rx_bps': 1476714240.0,
           'rx_bps_L1': 1911041919.9999998,
           'rx_pps': 2714548.0,
           'rx_util': 4.7776048,
           'tx_bps': 13521759232.0,
           'tx_bps_L1': 17747309952.0,
           'tx_pps': 26409692.0,
           'tx_util': 44.36827488}}
29/07/2021 09:29:19                         pktgen: {'ibytes': 972285012,
 'ierrors': 0,
 'ipackets': 14298340,
 'obytes': 8902333952,
 'oerrors': 0,
 'opackets': 139098980,
 'rx_bps': 1476714240.0,
 'rx_bps_L1': 1911041919.9999998,
 'rx_pps': 2714548.0,
 'rx_util': 4.7776048,
 'tx_bps': 13521759232.0,
 'tx_bps_L1': 17747309952.0,
 'tx_pps': 26409692.0,
 'tx_util': 44.36827488}
29/07/2021 09:29:19                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13521759232.000000, tx_pps: 26409692.000000 
29/07/2021 09:29:19                         pktgen: {'ibytes': 972285012,
 'ierrors': 0,
 'ipackets': 14298340,
 'obytes': 8902333952,
 'oerrors': 0,
 'opackets': 139098980,
 'rx_bps': 1476714240.0,
 'rx_bps_L1': 1911041919.9999998,
 'rx_pps': 2714548.0,
 'rx_util': 4.7776048,
 'tx_bps': 13521759232.0,
 'tx_bps_L1': 17747309952.0,
 'tx_pps': 26409692.0,
 'tx_util': 44.36827488}
29/07/2021 09:29:19                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 1476714240.000000, rx_pps: 2714548.000000
29/07/2021 09:29:19                         pktgen: throughput: pps_rx 2714548.000000, bps_rx 1476714240.000000
29/07/2021 09:29:19                         pktgen: traffic completed. 
29/07/2021 09:29:19         TestVswitchSampleCBDMA: Test running at parameters: framesize: 128
29/07/2021 09:29:19                         tester: ls -d /tmp
29/07/2021 09:29:19                         tester: /tmp
29/07/2021 09:29:19                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_128.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_128.pcap
29/07/2021 09:29:21                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:21                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:21                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:21                         pktgen: trex port <0> not support flow control
29/07/2021 09:29:21                         pktgen: check the trex port link status
29/07/2021 09:29:21                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:21                         pktgen: begin traffic ......
29/07/2021 09:29:21                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:29:26                         pktgen: begin get port statistic ...
29/07/2021 09:29:26                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_128.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_128.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:29:26                         pktgen: {0: {'ibytes': 1251234090,
     'ierrors': 0,
     'ipackets': 13902601,
     'obytes': 9510205320,
     'oerrors': 0,
     'opackets': 105668966,
     'rx_bps': 1943658752.0,
     'rx_bps_L1': 2376898432.0,
     'rx_pps': 2707748.0,
     'rx_util': 5.94224608,
     'tx_bps': 14787252224.0,
     'tx_bps_L1': 18088411904.0,
     'tx_pps': 20632248.0,
     'tx_util': 45.22102976},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.778076171875,
            'cpu_util': 84.22831726074219,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 13865680,
            'rx_bps': 1943658752.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 12843592704.0,
            'rx_pps': 2707748.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 14787252224.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 20632248.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 1251234090,
           'ierrors': 0,
           'ipackets': 13902601,
           'obytes': 9510205320,
           'oerrors': 0,
           'opackets': 105668966,
           'rx_bps': 1943658752.0,
           'rx_bps_L1': 2376898432.0,
           'rx_pps': 2707748.0,
           'rx_util': 5.94224608,
           'tx_bps': 14787252224.0,
           'tx_bps_L1': 18088411904.0,
           'tx_pps': 20632248.0,
           'tx_util': 45.22102976}}
29/07/2021 09:29:26                         pktgen: {'ibytes': 1251234090,
 'ierrors': 0,
 'ipackets': 13902601,
 'obytes': 9510205320,
 'oerrors': 0,
 'opackets': 105668966,
 'rx_bps': 1943658752.0,
 'rx_bps_L1': 2376898432.0,
 'rx_pps': 2707748.0,
 'rx_util': 5.94224608,
 'tx_bps': 14787252224.0,
 'tx_bps_L1': 18088411904.0,
 'tx_pps': 20632248.0,
 'tx_util': 45.22102976}
29/07/2021 09:29:26                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 14787252224.000000, tx_pps: 20632248.000000 
29/07/2021 09:29:26                         pktgen: {'ibytes': 1251234090,
 'ierrors': 0,
 'ipackets': 13902601,
 'obytes': 9510205320,
 'oerrors': 0,
 'opackets': 105668966,
 'rx_bps': 1943658752.0,
 'rx_bps_L1': 2376898432.0,
 'rx_pps': 2707748.0,
 'rx_util': 5.94224608,
 'tx_bps': 14787252224.0,
 'tx_bps_L1': 18088411904.0,
 'tx_pps': 20632248.0,
 'tx_util': 45.22102976}
29/07/2021 09:29:26                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 1943658752.000000, rx_pps: 2707748.000000
29/07/2021 09:29:26                         pktgen: throughput: pps_rx 2707748.000000, bps_rx 1943658752.000000
29/07/2021 09:29:26                         pktgen: traffic completed. 
29/07/2021 09:29:26         TestVswitchSampleCBDMA: Test running at parameters: framesize: 256
29/07/2021 09:29:26                         tester: ls -d /tmp
29/07/2021 09:29:26                         tester: /tmp
29/07/2021 09:29:26                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_256.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_256.pcap
29/07/2021 09:29:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:28                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:28                         pktgen: trex port <0> not support flow control
29/07/2021 09:29:28                         pktgen: check the trex port link status
29/07/2021 09:29:28                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:28                         pktgen: begin traffic ......
29/07/2021 09:29:28                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:29:33                         pktgen: begin get port statistic ...
29/07/2021 09:29:33                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_256.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_256.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:29:33                         pktgen: {0: {'ibytes': 2943713514,
     'ierrors': 0,
     'ipackets': 13503273,
     'obytes': 19317417744,
     'oerrors': 0,
     'opackets': 88612022,
     'rx_bps': 4465271808.0,
     'rx_bps_L1': 4879527968.0,
     'rx_pps': 2589101.0,
     'rx_util': 12.19881992,
     'tx_bps': 29356922880.0,
     'tx_bps_L1': 32085252479.999996,
     'tx_pps': 17052060.0,
     'tx_util': 80.21313119999999},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 16.719751358032227,
            'cpu_util': 87.79114532470703,
            'cpu_util_raw': 99.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14706483,
            'rx_bps': 4465271808.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 24891650048.0,
            'rx_pps': 2589101.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 29356922880.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 17052060.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 2943713514,
           'ierrors': 0,
           'ipackets': 13503273,
           'obytes': 19317417744,
           'oerrors': 0,
           'opackets': 88612022,
           'rx_bps': 4465271808.0,
           'rx_bps_L1': 4879527968.0,
           'rx_pps': 2589101.0,
           'rx_util': 12.19881992,
           'tx_bps': 29356922880.0,
           'tx_bps_L1': 32085252479.999996,
           'tx_pps': 17052060.0,
           'tx_util': 80.21313119999999}}
29/07/2021 09:29:33                         pktgen: {'ibytes': 2943713514,
 'ierrors': 0,
 'ipackets': 13503273,
 'obytes': 19317417744,
 'oerrors': 0,
 'opackets': 88612022,
 'rx_bps': 4465271808.0,
 'rx_bps_L1': 4879527968.0,
 'rx_pps': 2589101.0,
 'rx_util': 12.19881992,
 'tx_bps': 29356922880.0,
 'tx_bps_L1': 32085252479.999996,
 'tx_pps': 17052060.0,
 'tx_util': 80.21313119999999}
29/07/2021 09:29:33                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 29356922880.000000, tx_pps: 17052060.000000 
29/07/2021 09:29:33                         pktgen: {'ibytes': 2943713514,
 'ierrors': 0,
 'ipackets': 13503273,
 'obytes': 19317417744,
 'oerrors': 0,
 'opackets': 88612022,
 'rx_bps': 4465271808.0,
 'rx_bps_L1': 4879527968.0,
 'rx_pps': 2589101.0,
 'rx_util': 12.19881992,
 'tx_bps': 29356922880.0,
 'tx_bps_L1': 32085252479.999996,
 'tx_pps': 17052060.0,
 'tx_util': 80.21313119999999}
29/07/2021 09:29:33                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4465271808.000000, rx_pps: 2589101.000000
29/07/2021 09:29:33                         pktgen: throughput: pps_rx 2589101.000000, bps_rx 4465271808.000000
29/07/2021 09:29:33                         pktgen: traffic completed. 
29/07/2021 09:29:33         TestVswitchSampleCBDMA: Test running at parameters: framesize: 512
29/07/2021 09:29:33                         tester: ls -d /tmp
29/07/2021 09:29:33                         tester: /tmp
29/07/2021 09:29:33                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_512.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_512.pcap
29/07/2021 09:29:34                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:34                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:34                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:34                         pktgen: trex port <0> not support flow control
29/07/2021 09:29:34                         pktgen: check the trex port link status
29/07/2021 09:29:34                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:34                         pktgen: begin traffic ......
29/07/2021 09:29:34                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:29:39                         pktgen: begin get port statistic ...
29/07/2021 09:29:39                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_512.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_512.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:29:39                         pktgen: {0: {'ibytes': 9958682646,
     'ierrors': 0,
     'ipackets': 21009890,
     'obytes': 24012127578,
     'oerrors': 0,
     'opackets': 50658510,
     'rx_bps': 15296179200.0,
     'rx_bps_L1': 15944708920.0,
     'rx_pps': 4053310.75,
     'rx_util': 39.8617723,
     'tx_bps': 37129736192.0,
     'tx_bps_L1': 38716927072.0,
     'tx_pps': 9919943.0,
     'tx_util': 96.79231768},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 22.278526306152344,
            'cpu_util': 83.33077239990234,
            'cpu_util_raw': 98.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 15716075,
            'rx_bps': 15296179200.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 21833553920.0,
            'rx_pps': 4053310.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37129736192.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9919943.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9958682646,
           'ierrors': 0,
           'ipackets': 21009890,
           'obytes': 24012127578,
           'oerrors': 0,
           'opackets': 50658510,
           'rx_bps': 15296179200.0,
           'rx_bps_L1': 15944708920.0,
           'rx_pps': 4053310.75,
           'rx_util': 39.8617723,
           'tx_bps': 37129736192.0,
           'tx_bps_L1': 38716927072.0,
           'tx_pps': 9919943.0,
           'tx_util': 96.79231768}}
29/07/2021 09:29:39                         pktgen: {'ibytes': 9958682646,
 'ierrors': 0,
 'ipackets': 21009890,
 'obytes': 24012127578,
 'oerrors': 0,
 'opackets': 50658510,
 'rx_bps': 15296179200.0,
 'rx_bps_L1': 15944708920.0,
 'rx_pps': 4053310.75,
 'rx_util': 39.8617723,
 'tx_bps': 37129736192.0,
 'tx_bps_L1': 38716927072.0,
 'tx_pps': 9919943.0,
 'tx_util': 96.79231768}
29/07/2021 09:29:39                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37129736192.000000, tx_pps: 9919943.000000 
29/07/2021 09:29:39                         pktgen: {'ibytes': 9958682646,
 'ierrors': 0,
 'ipackets': 21009890,
 'obytes': 24012127578,
 'oerrors': 0,
 'opackets': 50658510,
 'rx_bps': 15296179200.0,
 'rx_bps_L1': 15944708920.0,
 'rx_pps': 4053310.75,
 'rx_util': 39.8617723,
 'tx_bps': 37129736192.0,
 'tx_bps_L1': 38716927072.0,
 'tx_pps': 9919943.0,
 'tx_util': 96.79231768}
29/07/2021 09:29:39                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 15296179200.000000, rx_pps: 4053310.750000
29/07/2021 09:29:39                         pktgen: throughput: pps_rx 4053310.750000, bps_rx 15296179200.000000
29/07/2021 09:29:39                         pktgen: traffic completed. 
29/07/2021 09:29:39         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1024
29/07/2021 09:29:39                         tester: ls -d /tmp
29/07/2021 09:29:40                         tester: /tmp
29/07/2021 09:29:40                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_1024.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1024.pcap
29/07/2021 09:29:41                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:41                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:41                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:41                         pktgen: trex port <0> not support flow control
29/07/2021 09:29:41                         pktgen: check the trex port link status
29/07/2021 09:29:41                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:41                         pktgen: begin traffic ......
29/07/2021 09:29:41                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:29:46                         pktgen: begin get port statistic ...
29/07/2021 09:29:46                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1024.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1024.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:29:46                         pktgen: {0: {'ibytes': 17059389432,
     'ierrors': 0,
     'ipackets': 17301612,
     'obytes': 24530629910,
     'oerrors': 0,
     'opackets': 24878941,
     'rx_bps': 25956671488.0,
     'rx_bps_L1': 26490311968.000004,
     'rx_pps': 3335253.0,
     'rx_util': 66.22577992000001,
     'tx_bps': 37647364096.0,
     'tx_bps_L1': 38428491456.0,
     'tx_pps': 4882046.0,
     'tx_util': 96.07122864},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 24.486793518066406,
            'cpu_util': 76.87279510498047,
            'cpu_util_raw': 88.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14847906,
            'rx_bps': 25956671488.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11690691584.0,
            'rx_pps': 3335253.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37647364096.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4882046.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 17059389432,
           'ierrors': 0,
           'ipackets': 17301612,
           'obytes': 24530629910,
           'oerrors': 0,
           'opackets': 24878941,
           'rx_bps': 25956671488.0,
           'rx_bps_L1': 26490311968.000004,
           'rx_pps': 3335253.0,
           'rx_util': 66.22577992000001,
           'tx_bps': 37647364096.0,
           'tx_bps_L1': 38428491456.0,
           'tx_pps': 4882046.0,
           'tx_util': 96.07122864}}
29/07/2021 09:29:46                         pktgen: {'ibytes': 17059389432,
 'ierrors': 0,
 'ipackets': 17301612,
 'obytes': 24530629910,
 'oerrors': 0,
 'opackets': 24878941,
 'rx_bps': 25956671488.0,
 'rx_bps_L1': 26490311968.000004,
 'rx_pps': 3335253.0,
 'rx_util': 66.22577992000001,
 'tx_bps': 37647364096.0,
 'tx_bps_L1': 38428491456.0,
 'tx_pps': 4882046.0,
 'tx_util': 96.07122864}
29/07/2021 09:29:46                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37647364096.000000, tx_pps: 4882046.000000 
29/07/2021 09:29:46                         pktgen: {'ibytes': 17059389432,
 'ierrors': 0,
 'ipackets': 17301612,
 'obytes': 24530629910,
 'oerrors': 0,
 'opackets': 24878941,
 'rx_bps': 25956671488.0,
 'rx_bps_L1': 26490311968.000004,
 'rx_pps': 3335253.0,
 'rx_util': 66.22577992000001,
 'tx_bps': 37647364096.0,
 'tx_bps_L1': 38428491456.0,
 'tx_pps': 4882046.0,
 'tx_util': 96.07122864}
29/07/2021 09:29:46                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 25956671488.000000, rx_pps: 3335253.000000
29/07/2021 09:29:46                         pktgen: throughput: pps_rx 3335253.000000, bps_rx 25956671488.000000
29/07/2021 09:29:46                         pktgen: traffic completed. 
29/07/2021 09:29:46         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1280
29/07/2021 09:29:46                         tester: ls -d /tmp
29/07/2021 09:29:46                         tester: /tmp
29/07/2021 09:29:46                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_1280.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1280.pcap
29/07/2021 09:29:48                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:48                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:48                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:48                         pktgen: trex port <0> not support flow control
29/07/2021 09:29:48                         pktgen: check the trex port link status
29/07/2021 09:29:48                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:48                         pktgen: begin traffic ......
29/07/2021 09:29:48                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:29:53                         pktgen: begin get port statistic ...
29/07/2021 09:29:53                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1280.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1280.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:29:53                         pktgen: {0: {'ibytes': 19681474716,
     'ierrors': 0,
     'ipackets': 15846602,
     'obytes': 24631096842,
     'oerrors': 0,
     'opackets': 19831806,
     'rx_bps': 30238658560.0,
     'rx_bps_L1': 30727328520.000004,
     'rx_pps': 3054187.25,
     'rx_util': 76.81832130000001,
     'tx_bps': 37914845184.0,
     'tx_bps_L1': 38527951744.0,
     'tx_pps': 3831916.0,
     'tx_util': 96.31987936},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 25.255817413330078,
            'cpu_util': 75.06160736083984,
            'cpu_util_raw': 88.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14396610,
            'rx_bps': 30238658560.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 7676185600.0,
            'rx_pps': 3054187.25,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37914845184.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3831916.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 19681474716,
           'ierrors': 0,
           'ipackets': 15846602,
           'obytes': 24631096842,
           'oerrors': 0,
           'opackets': 19831806,
           'rx_bps': 30238658560.0,
           'rx_bps_L1': 30727328520.000004,
           'rx_pps': 3054187.25,
           'rx_util': 76.81832130000001,
           'tx_bps': 37914845184.0,
           'tx_bps_L1': 38527951744.0,
           'tx_pps': 3831916.0,
           'tx_util': 96.31987936}}
29/07/2021 09:29:53                         pktgen: {'ibytes': 19681474716,
 'ierrors': 0,
 'ipackets': 15846602,
 'obytes': 24631096842,
 'oerrors': 0,
 'opackets': 19831806,
 'rx_bps': 30238658560.0,
 'rx_bps_L1': 30727328520.000004,
 'rx_pps': 3054187.25,
 'rx_util': 76.81832130000001,
 'tx_bps': 37914845184.0,
 'tx_bps_L1': 38527951744.0,
 'tx_pps': 3831916.0,
 'tx_util': 96.31987936}
29/07/2021 09:29:53                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37914845184.000000, tx_pps: 3831916.000000 
29/07/2021 09:29:53                         pktgen: {'ibytes': 19681474716,
 'ierrors': 0,
 'ipackets': 15846602,
 'obytes': 24631096842,
 'oerrors': 0,
 'opackets': 19831806,
 'rx_bps': 30238658560.0,
 'rx_bps_L1': 30727328520.000004,
 'rx_pps': 3054187.25,
 'rx_util': 76.81832130000001,
 'tx_bps': 37914845184.0,
 'tx_bps_L1': 38527951744.0,
 'tx_pps': 3831916.0,
 'tx_util': 96.31987936}
29/07/2021 09:29:53                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 30238658560.000000, rx_pps: 3054187.250000
29/07/2021 09:29:53                         pktgen: throughput: pps_rx 3054187.250000, bps_rx 30238658560.000000
29/07/2021 09:29:53                         pktgen: traffic completed. 
29/07/2021 09:29:53         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1518
29/07/2021 09:29:53                         tester: ls -d /tmp
29/07/2021 09:29:53                         tester: /tmp
29/07/2021 09:29:53                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_1518.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1518.pcap
29/07/2021 09:29:54                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:54                         pktgen: test port 0 map gen port 0
29/07/2021 09:29:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:54                         pktgen: trex port <0> not support flow control
29/07/2021 09:29:54                         pktgen: check the trex port link status
29/07/2021 09:29:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:29:54                         pktgen: begin traffic ......
29/07/2021 09:29:54                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:29:59                         pktgen: begin get port statistic ...
29/07/2021 09:29:59                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:29:59                         pktgen: {0: {'ibytes': 22348438474,
     'ierrors': 0,
     'ipackets': 15100303,
     'obytes': 24693506960,
     'oerrors': 0,
     'opackets': 16684806,
     'rx_bps': 34859270144.0,
     'rx_bps_L1': 35331306944.0,
     'rx_pps': 2950230.0,
     'rx_util': 88.32826736,
     'tx_bps': 38571413504.0,
     'tx_bps_L1': 39093861224.0,
     'tx_pps': 3265298.25,
     'tx_util': 97.73465306},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 26.99786376953125,
            'cpu_util': 71.43419647216797,
            'cpu_util_raw': 87.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14351797,
            'rx_bps': 34859270144.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 2950230.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38571413504.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3265298.25},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 22348438474,
           'ierrors': 0,
           'ipackets': 15100303,
           'obytes': 24693506960,
           'oerrors': 0,
           'opackets': 16684806,
           'rx_bps': 34859270144.0,
           'rx_bps_L1': 35331306944.0,
           'rx_pps': 2950230.0,
           'rx_util': 88.32826736,
           'tx_bps': 38571413504.0,
           'tx_bps_L1': 39093861224.0,
           'tx_pps': 3265298.25,
           'tx_util': 97.73465306}}
29/07/2021 09:29:59                         pktgen: {'ibytes': 22348438474,
 'ierrors': 0,
 'ipackets': 15100303,
 'obytes': 24693506960,
 'oerrors': 0,
 'opackets': 16684806,
 'rx_bps': 34859270144.0,
 'rx_bps_L1': 35331306944.0,
 'rx_pps': 2950230.0,
 'rx_util': 88.32826736,
 'tx_bps': 38571413504.0,
 'tx_bps_L1': 39093861224.0,
 'tx_pps': 3265298.25,
 'tx_util': 97.73465306}
29/07/2021 09:29:59                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38571413504.000000, tx_pps: 3265298.250000 
29/07/2021 09:29:59                         pktgen: {'ibytes': 22348438474,
 'ierrors': 0,
 'ipackets': 15100303,
 'obytes': 24693506960,
 'oerrors': 0,
 'opackets': 16684806,
 'rx_bps': 34859270144.0,
 'rx_bps_L1': 35331306944.0,
 'rx_pps': 2950230.0,
 'rx_util': 88.32826736,
 'tx_bps': 38571413504.0,
 'tx_bps_L1': 39093861224.0,
 'tx_pps': 3265298.25,
 'tx_util': 97.73465306}
29/07/2021 09:29:59                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 34859270144.000000, rx_pps: 2950230.000000
29/07/2021 09:29:59                         pktgen: throughput: pps_rx 2950230.000000, bps_rx 34859270144.000000
29/07/2021 09:29:59                         pktgen: traffic completed. 
29/07/2021 09:30:00         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| 64               | 2.715            |
+------------------+------------------+
| 128              | 2.708            |
+------------------+------------------+
| 256              | 2.589            |
+------------------+------------------+
| 512              | 4.053            |
+------------------+------------------+
| 1024             | 3.335            |
+------------------+------------------+
| 1280             | 3.054            |
+------------------+------------------+
| 1518             | 2.950            |
+------------------+------------------+
29/07/2021 09:30:00             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
29/07/2021 09:30:00             dut.10.240.183.214: 2048
29/07/2021 09:30:12         TestVswitchSampleCBDMA: Test running at parameters: framesize: 64
29/07/2021 09:30:12                         tester: ls -d /tmp
29/07/2021 09:30:12                         tester: /tmp
29/07/2021 09:30:12                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap
29/07/2021 09:30:13                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:13                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:13                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:13                         pktgen: trex port <0> not support flow control
29/07/2021 09:30:13                         pktgen: check the trex port link status
29/07/2021 09:30:13                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:13                         pktgen: begin traffic ......
29/07/2021 09:30:13                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:30:18                         pktgen: begin get port statistic ...
29/07/2021 09:30:18                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:30:18                         pktgen: {0: {'ibytes': 2313318180,
     'ierrors': 0,
     'ipackets': 34019385,
     'obytes': 8896855872,
     'oerrors': 0,
     'opackets': 139013406,
     'rx_bps': 3508478976.0,
     'rx_bps_L1': 4540340736.0,
     'rx_pps': 6449136.0,
     'rx_util': 11.350851839999999,
     'tx_bps': 13498313728.0,
     'tx_bps_L1': 17716486528.0,
     'tx_pps': 26363580.0,
     'tx_util': 44.29121632},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.896888732910156,
            'cpu_util': 75.8597412109375,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12182030,
            'rx_bps': 3508478976.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9989833728.0,
            'rx_pps': 6449136.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13498313728.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26363580.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 2313318180,
           'ierrors': 0,
           'ipackets': 34019385,
           'obytes': 8896855872,
           'oerrors': 0,
           'opackets': 139013406,
           'rx_bps': 3508478976.0,
           'rx_bps_L1': 4540340736.0,
           'rx_pps': 6449136.0,
           'rx_util': 11.350851839999999,
           'tx_bps': 13498313728.0,
           'tx_bps_L1': 17716486528.0,
           'tx_pps': 26363580.0,
           'tx_util': 44.29121632}}
29/07/2021 09:30:18                         pktgen: {'ibytes': 2313318180,
 'ierrors': 0,
 'ipackets': 34019385,
 'obytes': 8896855872,
 'oerrors': 0,
 'opackets': 139013406,
 'rx_bps': 3508478976.0,
 'rx_bps_L1': 4540340736.0,
 'rx_pps': 6449136.0,
 'rx_util': 11.350851839999999,
 'tx_bps': 13498313728.0,
 'tx_bps_L1': 17716486528.0,
 'tx_pps': 26363580.0,
 'tx_util': 44.29121632}
29/07/2021 09:30:18                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13498313728.000000, tx_pps: 26363580.000000 
29/07/2021 09:30:18                         pktgen: {'ibytes': 2313318180,
 'ierrors': 0,
 'ipackets': 34019385,
 'obytes': 8896855872,
 'oerrors': 0,
 'opackets': 139013406,
 'rx_bps': 3508478976.0,
 'rx_bps_L1': 4540340736.0,
 'rx_pps': 6449136.0,
 'rx_util': 11.350851839999999,
 'tx_bps': 13498313728.0,
 'tx_bps_L1': 17716486528.0,
 'tx_pps': 26363580.0,
 'tx_util': 44.29121632}
29/07/2021 09:30:18                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3508478976.000000, rx_pps: 6449136.000000
29/07/2021 09:30:18                         pktgen: throughput: pps_rx 6449136.000000, bps_rx 3508478976.000000
29/07/2021 09:30:18                         pktgen: traffic completed. 
29/07/2021 09:30:18         TestVswitchSampleCBDMA: Test running at parameters: framesize: 128
29/07/2021 09:30:18                         tester: ls -d /tmp
29/07/2021 09:30:18                         tester: /tmp
29/07/2021 09:30:18                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_128.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_128.pcap
29/07/2021 09:30:20                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:20                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:20                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:20                         pktgen: trex port <0> not support flow control
29/07/2021 09:30:20                         pktgen: check the trex port link status
29/07/2021 09:30:20                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:20                         pktgen: begin traffic ......
29/07/2021 09:30:20                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:30:25                         pktgen: begin get port statistic ...
29/07/2021 09:30:25                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_128.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_128.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:30:25                         pktgen: {0: {'ibytes': 2752558740,
     'ierrors': 0,
     'ipackets': 30584000,
     'obytes': 9467187030,
     'oerrors': 0,
     'opackets': 105190995,
     'rx_bps': 4275382272.0,
     'rx_bps_L1': 5228508032.0,
     'rx_pps': 5957036.0,
     'rx_util': 13.07127008,
     'tx_bps': 14709742592.0,
     'tx_bps_L1': 17993265792.0,
     'tx_pps': 20522020.0,
     'tx_util': 44.98316448},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 8.711043357849121,
            'cpu_util': 84.43157958984375,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 13905804,
            'rx_bps': 4275382272.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10434359296.0,
            'rx_pps': 5957036.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 14709742592.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 20522020.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 2752558740,
           'ierrors': 0,
           'ipackets': 30584000,
           'obytes': 9467187030,
           'oerrors': 0,
           'opackets': 105190995,
           'rx_bps': 4275382272.0,
           'rx_bps_L1': 5228508032.0,
           'rx_pps': 5957036.0,
           'rx_util': 13.07127008,
           'tx_bps': 14709742592.0,
           'tx_bps_L1': 17993265792.0,
           'tx_pps': 20522020.0,
           'tx_util': 44.98316448}}
29/07/2021 09:30:25                         pktgen: {'ibytes': 2752558740,
 'ierrors': 0,
 'ipackets': 30584000,
 'obytes': 9467187030,
 'oerrors': 0,
 'opackets': 105190995,
 'rx_bps': 4275382272.0,
 'rx_bps_L1': 5228508032.0,
 'rx_pps': 5957036.0,
 'rx_util': 13.07127008,
 'tx_bps': 14709742592.0,
 'tx_bps_L1': 17993265792.0,
 'tx_pps': 20522020.0,
 'tx_util': 44.98316448}
29/07/2021 09:30:25                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 14709742592.000000, tx_pps: 20522020.000000 
29/07/2021 09:30:25                         pktgen: {'ibytes': 2752558740,
 'ierrors': 0,
 'ipackets': 30584000,
 'obytes': 9467187030,
 'oerrors': 0,
 'opackets': 105190995,
 'rx_bps': 4275382272.0,
 'rx_bps_L1': 5228508032.0,
 'rx_pps': 5957036.0,
 'rx_util': 13.07127008,
 'tx_bps': 14709742592.0,
 'tx_bps_L1': 17993265792.0,
 'tx_pps': 20522020.0,
 'tx_util': 44.98316448}
29/07/2021 09:30:25                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4275382272.000000, rx_pps: 5957036.000000
29/07/2021 09:30:25                         pktgen: throughput: pps_rx 5957036.000000, bps_rx 4275382272.000000
29/07/2021 09:30:25                         pktgen: traffic completed. 
29/07/2021 09:30:25         TestVswitchSampleCBDMA: Test running at parameters: framesize: 256
29/07/2021 09:30:25                         tester: ls -d /tmp
29/07/2021 09:30:25                         tester: /tmp
29/07/2021 09:30:25                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_256.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_256.pcap
29/07/2021 09:30:27                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:27                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:27                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:27                         pktgen: trex port <0> not support flow control
29/07/2021 09:30:27                         pktgen: check the trex port link status
29/07/2021 09:30:27                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:27                         pktgen: begin traffic ......
29/07/2021 09:30:27                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:30:32                         pktgen: begin get port statistic ...
29/07/2021 09:30:32                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_256.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_256.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:30:32                         pktgen: {0: {'ibytes': 6244607166,
     'ierrors': 0,
     'ipackets': 28645008,
     'obytes': 17457408172,
     'oerrors': 0,
     'opackets': 80079868,
     'rx_bps': 9487370240.0,
     'rx_bps_L1': 10367529760.0,
     'rx_pps': 5500997.0,
     'rx_util': 25.918824400000002,
     'tx_bps': 26536495104.0,
     'tx_bps_L1': 29004670144.000004,
     'tx_pps': 15426094.0,
     'tx_util': 72.51167536},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 15.070942878723145,
            'cpu_util': 88.03860473632812,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 15144247,
            'rx_bps': 9487370240.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 17049124864.0,
            'rx_pps': 5500997.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 26536495104.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 15426094.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 6244607166,
           'ierrors': 0,
           'ipackets': 28645008,
           'obytes': 17457408172,
           'oerrors': 0,
           'opackets': 80079868,
           'rx_bps': 9487370240.0,
           'rx_bps_L1': 10367529760.0,
           'rx_pps': 5500997.0,
           'rx_util': 25.918824400000002,
           'tx_bps': 26536495104.0,
           'tx_bps_L1': 29004670144.000004,
           'tx_pps': 15426094.0,
           'tx_util': 72.51167536}}
29/07/2021 09:30:32                         pktgen: {'ibytes': 6244607166,
 'ierrors': 0,
 'ipackets': 28645008,
 'obytes': 17457408172,
 'oerrors': 0,
 'opackets': 80079868,
 'rx_bps': 9487370240.0,
 'rx_bps_L1': 10367529760.0,
 'rx_pps': 5500997.0,
 'rx_util': 25.918824400000002,
 'tx_bps': 26536495104.0,
 'tx_bps_L1': 29004670144.000004,
 'tx_pps': 15426094.0,
 'tx_util': 72.51167536}
29/07/2021 09:30:32                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 26536495104.000000, tx_pps: 15426094.000000 
29/07/2021 09:30:32                         pktgen: {'ibytes': 6244607166,
 'ierrors': 0,
 'ipackets': 28645008,
 'obytes': 17457408172,
 'oerrors': 0,
 'opackets': 80079868,
 'rx_bps': 9487370240.0,
 'rx_bps_L1': 10367529760.0,
 'rx_pps': 5500997.0,
 'rx_util': 25.918824400000002,
 'tx_bps': 26536495104.0,
 'tx_bps_L1': 29004670144.000004,
 'tx_pps': 15426094.0,
 'tx_util': 72.51167536}
29/07/2021 09:30:32                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 9487370240.000000, rx_pps: 5500997.000000
29/07/2021 09:30:32                         pktgen: throughput: pps_rx 5500997.000000, bps_rx 9487370240.000000
29/07/2021 09:30:32                         pktgen: traffic completed. 
29/07/2021 09:30:32         TestVswitchSampleCBDMA: Test running at parameters: framesize: 512
29/07/2021 09:30:32                         tester: ls -d /tmp
29/07/2021 09:30:32                         tester: /tmp
29/07/2021 09:30:32                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_512.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_512.pcap
29/07/2021 09:30:33                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:33                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:33                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:33                         pktgen: trex port <0> not support flow control
29/07/2021 09:30:33                         pktgen: check the trex port link status
29/07/2021 09:30:33                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:33                         pktgen: begin traffic ......
29/07/2021 09:30:33                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:30:38                         pktgen: begin get port statistic ...
29/07/2021 09:30:38                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_512.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_512.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:30:38                         pktgen: {0: {'ibytes': 10529795292,
     'ierrors': 0,
     'ipackets': 22214758,
     'obytes': 24014520330,
     'oerrors': 0,
     'opackets': 50663554,
     'rx_bps': 16207817728.0,
     'rx_bps_L1': 16898138528.0,
     'rx_pps': 4314505.0,
     'rx_util': 42.245346319999996,
     'tx_bps': 37040492544.0,
     'tx_bps_L1': 38621441024.0,
     'tx_pps': 9880928.0,
     'tx_util': 96.55360256},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 22.04761505126953,
            'cpu_util': 84.00112915039062,
            'cpu_util_raw': 98.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 15834973,
            'rx_bps': 16207817728.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 20832675840.0,
            'rx_pps': 4314505.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37040492544.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 9880928.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 10529795292,
           'ierrors': 0,
           'ipackets': 22214758,
           'obytes': 24014520330,
           'oerrors': 0,
           'opackets': 50663554,
           'rx_bps': 16207817728.0,
           'rx_bps_L1': 16898138528.0,
           'rx_pps': 4314505.0,
           'rx_util': 42.245346319999996,
           'tx_bps': 37040492544.0,
           'tx_bps_L1': 38621441024.0,
           'tx_pps': 9880928.0,
           'tx_util': 96.55360256}}
29/07/2021 09:30:38                         pktgen: {'ibytes': 10529795292,
 'ierrors': 0,
 'ipackets': 22214758,
 'obytes': 24014520330,
 'oerrors': 0,
 'opackets': 50663554,
 'rx_bps': 16207817728.0,
 'rx_bps_L1': 16898138528.0,
 'rx_pps': 4314505.0,
 'rx_util': 42.245346319999996,
 'tx_bps': 37040492544.0,
 'tx_bps_L1': 38621441024.0,
 'tx_pps': 9880928.0,
 'tx_util': 96.55360256}
29/07/2021 09:30:38                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37040492544.000000, tx_pps: 9880928.000000 
29/07/2021 09:30:38                         pktgen: {'ibytes': 10529795292,
 'ierrors': 0,
 'ipackets': 22214758,
 'obytes': 24014520330,
 'oerrors': 0,
 'opackets': 50663554,
 'rx_bps': 16207817728.0,
 'rx_bps_L1': 16898138528.0,
 'rx_pps': 4314505.0,
 'rx_util': 42.245346319999996,
 'tx_bps': 37040492544.0,
 'tx_bps_L1': 38621441024.0,
 'tx_pps': 9880928.0,
 'tx_util': 96.55360256}
29/07/2021 09:30:38                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 16207817728.000000, rx_pps: 4314505.000000
29/07/2021 09:30:38                         pktgen: throughput: pps_rx 4314505.000000, bps_rx 16207817728.000000
29/07/2021 09:30:38                         pktgen: traffic completed. 
29/07/2021 09:30:38         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1024
29/07/2021 09:30:38                         tester: ls -d /tmp
29/07/2021 09:30:39                         tester: /tmp
29/07/2021 09:30:39                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_1024.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1024.pcap
29/07/2021 09:30:40                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:40                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:40                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:40                         pktgen: trex port <0> not support flow control
29/07/2021 09:30:40                         pktgen: check the trex port link status
29/07/2021 09:30:40                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:40                         pktgen: begin traffic ......
29/07/2021 09:30:40                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:30:45                         pktgen: begin get port statistic ...
29/07/2021 09:30:45                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1024.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1024.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:30:45                         pktgen: {0: {'ibytes': 17909360872,
     'ierrors': 0,
     'ipackets': 18163658,
     'obytes': 24530328194,
     'oerrors': 0,
     'opackets': 24878635,
     'rx_bps': 27221710848.0,
     'rx_bps_L1': 27781225408.0,
     'rx_pps': 3496966.0,
     'rx_util': 69.45306352,
     'tx_bps': 37592625152.0,
     'tx_bps_L1': 38371996832.0,
     'tx_pps': 4871073.0,
     'tx_util': 95.92999208},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 24.18102264404297,
            'cpu_util': 77.7316665649414,
            'cpu_util_raw': 89.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14842966,
            'rx_bps': 27221710848.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10370914304.0,
            'rx_pps': 3496966.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37592625152.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4871073.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 17909360872,
           'ierrors': 0,
           'ipackets': 18163658,
           'obytes': 24530328194,
           'oerrors': 0,
           'opackets': 24878635,
           'rx_bps': 27221710848.0,
           'rx_bps_L1': 27781225408.0,
           'rx_pps': 3496966.0,
           'rx_util': 69.45306352,
           'tx_bps': 37592625152.0,
           'tx_bps_L1': 38371996832.0,
           'tx_pps': 4871073.0,
           'tx_util': 95.92999208}}
29/07/2021 09:30:45                         pktgen: {'ibytes': 17909360872,
 'ierrors': 0,
 'ipackets': 18163658,
 'obytes': 24530328194,
 'oerrors': 0,
 'opackets': 24878635,
 'rx_bps': 27221710848.0,
 'rx_bps_L1': 27781225408.0,
 'rx_pps': 3496966.0,
 'rx_util': 69.45306352,
 'tx_bps': 37592625152.0,
 'tx_bps_L1': 38371996832.0,
 'tx_pps': 4871073.0,
 'tx_util': 95.92999208}
29/07/2021 09:30:45                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37592625152.000000, tx_pps: 4871073.000000 
29/07/2021 09:30:45                         pktgen: {'ibytes': 17909360872,
 'ierrors': 0,
 'ipackets': 18163658,
 'obytes': 24530328194,
 'oerrors': 0,
 'opackets': 24878635,
 'rx_bps': 27221710848.0,
 'rx_bps_L1': 27781225408.0,
 'rx_pps': 3496966.0,
 'rx_util': 69.45306352,
 'tx_bps': 37592625152.0,
 'tx_bps_L1': 38371996832.0,
 'tx_pps': 4871073.0,
 'tx_util': 95.92999208}
29/07/2021 09:30:45                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 27221710848.000000, rx_pps: 3496966.000000
29/07/2021 09:30:45                         pktgen: throughput: pps_rx 3496966.000000, bps_rx 27221710848.000000
29/07/2021 09:30:45                         pktgen: traffic completed. 
29/07/2021 09:30:45         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1280
29/07/2021 09:30:45                         tester: ls -d /tmp
29/07/2021 09:30:45                         tester: /tmp
29/07/2021 09:30:45                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_1280.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1280.pcap
29/07/2021 09:30:47                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:47                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:47                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:47                         pktgen: trex port <0> not support flow control
29/07/2021 09:30:47                         pktgen: check the trex port link status
29/07/2021 09:30:47                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:47                         pktgen: begin traffic ......
29/07/2021 09:30:47                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:30:52                         pktgen: begin get port statistic ...
29/07/2021 09:30:52                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1280.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1280.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:30:52                         pktgen: {0: {'ibytes': 20916141948,
     'ierrors': 0,
     'ipackets': 16840698,
     'obytes': 24630596316,
     'oerrors': 0,
     'opackets': 19831403,
     'rx_bps': 32143704064.0,
     'rx_bps_L1': 32663093903.999996,
     'rx_pps': 3246186.5,
     'rx_util': 81.65773475999998,
     'tx_bps': 37957640192.0,
     'tx_bps_L1': 38571371952.0,
     'tx_pps': 3835823.5,
     'tx_util': 96.42842988},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 26.485334396362305,
            'cpu_util': 71.65784454345703,
            'cpu_util_raw': 87.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14575297,
            'rx_bps': 32143704064.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 5813937664.0,
            'rx_pps': 3246186.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37957640192.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3835823.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 20916141948,
           'ierrors': 0,
           'ipackets': 16840698,
           'obytes': 24630596316,
           'oerrors': 0,
           'opackets': 19831403,
           'rx_bps': 32143704064.0,
           'rx_bps_L1': 32663093903.999996,
           'rx_pps': 3246186.5,
           'rx_util': 81.65773475999998,
           'tx_bps': 37957640192.0,
           'tx_bps_L1': 38571371952.0,
           'tx_pps': 3835823.5,
           'tx_util': 96.42842988}}
29/07/2021 09:30:52                         pktgen: {'ibytes': 20916141948,
 'ierrors': 0,
 'ipackets': 16840698,
 'obytes': 24630596316,
 'oerrors': 0,
 'opackets': 19831403,
 'rx_bps': 32143704064.0,
 'rx_bps_L1': 32663093903.999996,
 'rx_pps': 3246186.5,
 'rx_util': 81.65773475999998,
 'tx_bps': 37957640192.0,
 'tx_bps_L1': 38571371952.0,
 'tx_pps': 3835823.5,
 'tx_util': 96.42842988}
29/07/2021 09:30:52                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37957640192.000000, tx_pps: 3835823.500000 
29/07/2021 09:30:52                         pktgen: {'ibytes': 20916141948,
 'ierrors': 0,
 'ipackets': 16840698,
 'obytes': 24630596316,
 'oerrors': 0,
 'opackets': 19831403,
 'rx_bps': 32143704064.0,
 'rx_bps_L1': 32663093903.999996,
 'rx_pps': 3246186.5,
 'rx_util': 81.65773475999998,
 'tx_bps': 37957640192.0,
 'tx_bps_L1': 38571371952.0,
 'tx_pps': 3835823.5,
 'tx_util': 96.42842988}
29/07/2021 09:30:52                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 32143704064.000000, rx_pps: 3246186.500000
29/07/2021 09:30:52                         pktgen: throughput: pps_rx 3246186.500000, bps_rx 32143704064.000000
29/07/2021 09:30:52                         pktgen: traffic completed. 
29/07/2021 09:30:52         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1518
29/07/2021 09:30:52                         tester: ls -d /tmp
29/07/2021 09:30:52                         tester: /tmp
29/07/2021 09:30:52                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_1518.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1518.pcap
29/07/2021 09:30:53                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:53                         pktgen: test port 0 map gen port 0
29/07/2021 09:30:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:54                         pktgen: trex port <0> not support flow control
29/07/2021 09:30:54                         pktgen: check the trex port link status
29/07/2021 09:30:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:30:54                         pktgen: begin traffic ......
29/07/2021 09:30:54                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:30:59                         pktgen: begin get port statistic ...
29/07/2021 09:30:59                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:30:59                         pktgen: {0: {'ibytes': 23617443360,
     'ierrors': 0,
     'ipackets': 15957735,
     'obytes': 24694526680,
     'oerrors': 0,
     'opackets': 16685495,
     'rx_bps': 36672606208.0,
     'rx_bps_L1': 37169176688.0,
     'rx_pps': 3103565.5,
     'rx_util': 92.92294172,
     'tx_bps': 38424772608.0,
     'tx_bps_L1': 38945203368.0,
     'tx_pps': 3252692.25,
     'tx_util': 97.36300842},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 26.691953659057617,
            'cpu_util': 71.97819519042969,
            'cpu_util_raw': 88.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14354879,
            'rx_bps': 36672606208.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3103565.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38424772608.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3252692.25},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 23617443360,
           'ierrors': 0,
           'ipackets': 15957735,
           'obytes': 24694526680,
           'oerrors': 0,
           'opackets': 16685495,
           'rx_bps': 36672606208.0,
           'rx_bps_L1': 37169176688.0,
           'rx_pps': 3103565.5,
           'rx_util': 92.92294172,
           'tx_bps': 38424772608.0,
           'tx_bps_L1': 38945203368.0,
           'tx_pps': 3252692.25,
           'tx_util': 97.36300842}}
29/07/2021 09:30:59                         pktgen: {'ibytes': 23617443360,
 'ierrors': 0,
 'ipackets': 15957735,
 'obytes': 24694526680,
 'oerrors': 0,
 'opackets': 16685495,
 'rx_bps': 36672606208.0,
 'rx_bps_L1': 37169176688.0,
 'rx_pps': 3103565.5,
 'rx_util': 92.92294172,
 'tx_bps': 38424772608.0,
 'tx_bps_L1': 38945203368.0,
 'tx_pps': 3252692.25,
 'tx_util': 97.36300842}
29/07/2021 09:30:59                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38424772608.000000, tx_pps: 3252692.250000 
29/07/2021 09:30:59                         pktgen: {'ibytes': 23617443360,
 'ierrors': 0,
 'ipackets': 15957735,
 'obytes': 24694526680,
 'oerrors': 0,
 'opackets': 16685495,
 'rx_bps': 36672606208.0,
 'rx_bps_L1': 37169176688.0,
 'rx_pps': 3103565.5,
 'rx_util': 92.92294172,
 'tx_bps': 38424772608.0,
 'tx_bps_L1': 38945203368.0,
 'tx_pps': 3252692.25,
 'tx_util': 97.36300842}
29/07/2021 09:30:59                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 36672606208.000000, rx_pps: 3103565.500000
29/07/2021 09:30:59                         pktgen: throughput: pps_rx 3103565.500000, bps_rx 36672606208.000000
29/07/2021 09:30:59                         pktgen: traffic completed. 
29/07/2021 09:30:59         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| 64               | 6.449            |
+------------------+------------------+
| 128              | 5.957            |
+------------------+------------------+
| 256              | 5.501            |
+------------------+------------------+
| 512              | 4.315            |
+------------------+------------------+
| 1024             | 3.497            |
+------------------+------------------+
| 1280             | 3.246            |
+------------------+------------------+
| 1518             | 3.104            |
+------------------+------------------+
29/07/2021 09:30:59         TestVswitchSampleCBDMA: 
+------------------+-------------+------------------+
| Frame Size(Byte) |    Mode     | Throughput(Mpps) |
+==================+=============+==================+
| 64               | packed_ring | 2.715            |
+------------------+-------------+------------------+
| 128              | packed_ring | 2.708            |
+------------------+-------------+------------------+
| 256              | packed_ring | 2.589            |
+------------------+-------------+------------------+
| 512              | packed_ring | 4.053            |
+------------------+-------------+------------------+
| 1024             | packed_ring | 3.335            |
+------------------+-------------+------------------+
| 1280             | packed_ring | 3.054            |
+------------------+-------------+------------------+
| 1518             | packed_ring | 2.950            |
+------------------+-------------+------------------+
| 64               | split_ring  | 6.449            |
+------------------+-------------+------------------+
| 128              | split_ring  | 5.957            |
+------------------+-------------+------------------+
| 256              | split_ring  | 5.501            |
+------------------+-------------+------------------+
| 512              | split_ring  | 4.315            |
+------------------+-------------+------------------+
| 1024             | split_ring  | 3.497            |
+------------------+-------------+------------------+
| 1280             | split_ring  | 3.246            |
+------------------+-------------+------------------+
| 1518             | split_ring  | 3.104            |
+------------------+-------------+------------------+
29/07/2021 09:30:59         TestVswitchSampleCBDMA: Test Case test_perf_pvp_check_with_cbdma_channel_using_vhost_async_driver Result PASSED:
29/07/2021 09:31:00             dut.10.240.183.214: kill_all: called by dut and prefix list has value.
29/07/2021 09:31:00             dut.10.240.183.214: modprobe ioatdma
29/07/2021 09:31:00             dut.10.240.183.214: 
29/07/2021 09:31:00             dut.10.240.183.214: ./usertools/dpdk-devbind.py -u 0000:80:04.2
29/07/2021 09:31:01             dut.10.240.183.214: 
29/07/2021 09:31:01             dut.10.240.183.214: ./usertools/dpdk-devbind.py --force --bind=ioatdma  0000:80:04.2
29/07/2021 09:31:01             dut.10.240.183.214: 
29/07/2021 09:31:01         TestVswitchSampleCBDMA: Test Case test_perf_pvp_test_with_two_vm_and_two_cbdma_channels_using_vhost_async_driver Begin
29/07/2021 09:31:01             dut.10.240.183.214:  
29/07/2021 09:31:01                         tester:  
29/07/2021 09:31:01             dut.10.240.183.214: rm -rf /root/dpdk/vhost-net*
29/07/2021 09:31:01             dut.10.240.183.214: 
29/07/2021 09:31:01             dut.10.240.183.214: killall -I qemu-system-x86_64
29/07/2021 09:31:01             dut.10.240.183.214: qemu-system-x86_64: no process found
29/07/2021 09:31:01             dut.10.240.183.214: ./usertools/dpdk-devbind.py --status-dev misc
29/07/2021 09:31:02             dut.10.240.183.214: 
Misc (rawdev) devices using kernel driver
=========================================
0000:00:04.0 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.1 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.2 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.3 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.4 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.5 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.6 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:00:04.7 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.2 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.3 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.4 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.5 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.6 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.7 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 

Other Misc (rawdev) devices
===========================
0000:80:04.0 'Sky Lake-E CBDMA Registers 2021' unused=ioatdma,igb_uio,vfio-pci
0000:80:04.1 'Sky Lake-E CBDMA Registers 2021' unused=ioatdma,igb_uio,vfio-pci
29/07/2021 09:31:02             dut.10.240.183.214: ./usertools/dpdk-devbind.py --force --bind=igb_uio 0000:80:04.2 0000:80:04.3
29/07/2021 09:31:02             dut.10.240.183.214: 
29/07/2021 09:31:02         TestVswitchSampleCBDMA: Launch vhost app perf test
29/07/2021 09:31:06             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
29/07/2021 09:31:06             dut.10.240.183.214: 2048
29/07/2021 09:31:18             dut.10.240.183.214: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
29/07/2021 09:31:18             dut.10.240.183.214: 2048
29/07/2021 09:31:29                         tester: ls -d /tmp
29/07/2021 09:31:29                         tester: /tmp
29/07/2021 09:31:29                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap
29/07/2021 09:31:31                         tester: ls -d /tmp
29/07/2021 09:31:31                         tester: /tmp
29/07/2021 09:31:31                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_128.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_128.pcap
29/07/2021 09:31:32                         tester: ls -d /tmp
29/07/2021 09:31:32                         tester: /tmp
29/07/2021 09:31:32                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_256.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_256.pcap
29/07/2021 09:31:34                         tester: ls -d /tmp
29/07/2021 09:31:34                         tester: /tmp
29/07/2021 09:31:34                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_512.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_512.pcap
29/07/2021 09:31:35                         tester: ls -d /tmp
29/07/2021 09:31:36                         tester: /tmp
29/07/2021 09:31:36                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_1024.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1024.pcap
29/07/2021 09:31:37                         tester: ls -d /tmp
29/07/2021 09:31:37                         tester: /tmp
29/07/2021 09:31:37                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_1280.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1280.pcap
29/07/2021 09:31:39                         tester: ls -d /tmp
29/07/2021 09:31:39                         tester: /tmp
29/07/2021 09:31:39                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_1518.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1518.pcap
29/07/2021 09:31:40                         tester: ls -d /tmp
29/07/2021 09:31:40                         tester: /tmp
29/07/2021 09:31:40                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_64.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_64.pcap
29/07/2021 09:31:42                         tester: ls -d /tmp
29/07/2021 09:31:42                         tester: /tmp
29/07/2021 09:31:42                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_128.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_128.pcap
29/07/2021 09:31:43                         tester: ls -d /tmp
29/07/2021 09:31:43                         tester: /tmp
29/07/2021 09:31:43                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_256.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_256.pcap
29/07/2021 09:31:45                         tester: ls -d /tmp
29/07/2021 09:31:45                         tester: /tmp
29/07/2021 09:31:45                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_512.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_512.pcap
29/07/2021 09:31:46                         tester: ls -d /tmp
29/07/2021 09:31:47                         tester: /tmp
29/07/2021 09:31:47                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_1024.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_1024.pcap
29/07/2021 09:31:48                         tester: ls -d /tmp
29/07/2021 09:31:48                         tester: /tmp
29/07/2021 09:31:48                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_1280.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_1280.pcap
29/07/2021 09:31:50                         tester: ls -d /tmp
29/07/2021 09:31:50                         tester: /tmp
29/07/2021 09:31:50                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_1518.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_1518.pcap
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: test port 0 map gen port 0
29/07/2021 09:31:51                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:31:51                         pktgen: trex port <0> not support flow control
29/07/2021 09:31:51                         pktgen: trex packet generator: run traffic 5s to warm up ... 
29/07/2021 09:31:51                         pktgen: check the trex port link status
29/07/2021 09:31:51                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:31:51                         pktgen: begin traffic ......
29/07/2021 09:31:51                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:31:56                         pktgen: traffic completed. 
29/07/2021 09:31:56                         pktgen: check the trex port link status
29/07/2021 09:31:56                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:31:56                         pktgen: begin traffic ......
29/07/2021 09:31:56                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:32:01                         pktgen: begin get port statistic ...
29/07/2021 09:32:01                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:32:01                         pktgen: {0: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 24318061684,
     'oerrors': 0,
     'opackets': 35597335,
     'rx_bps': 14386107.0,
     'rx_bps_L1': 14764912.195312498,
     'rx_pps': 2367.532470703125,
     'rx_util': 0.03691228048828125,
     'tx_bps': 38717853696.0,
     'tx_bps_L1': 39851375456.0,
     'tx_pps': 7084511.0,
     'tx_util': 99.62843864},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 21.568191528320312,
            'cpu_util': 89.7568359375,
            'cpu_util_raw': 96.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 13162681,
            'rx_bps': 14386107.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 38703468544.0,
            'rx_pps': 2367.532470703125,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38717853696.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 7084511.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 0,
           'ierrors': 0,
           'ipackets': 0,
           'obytes': 24318061684,
           'oerrors': 0,
           'opackets': 35597335,
           'rx_bps': 14386107.0,
           'rx_bps_L1': 14764912.195312498,
           'rx_pps': 2367.532470703125,
           'rx_util': 0.03691228048828125,
           'tx_bps': 38717853696.0,
           'tx_bps_L1': 39851375456.0,
           'tx_pps': 7084511.0,
           'tx_util': 99.62843864}}
29/07/2021 09:32:01                         pktgen: {'ibytes': 0,
 'ierrors': 0,
 'ipackets': 0,
 'obytes': 24318061684,
 'oerrors': 0,
 'opackets': 35597335,
 'rx_bps': 14386107.0,
 'rx_bps_L1': 14764912.195312498,
 'rx_pps': 2367.532470703125,
 'rx_util': 0.03691228048828125,
 'tx_bps': 38717853696.0,
 'tx_bps_L1': 39851375456.0,
 'tx_pps': 7084511.0,
 'tx_util': 99.62843864}
29/07/2021 09:32:01                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38717853696.000000, tx_pps: 7084511.000000 
29/07/2021 09:32:01                         pktgen: {'ibytes': 0,
 'ierrors': 0,
 'ipackets': 0,
 'obytes': 24318061684,
 'oerrors': 0,
 'opackets': 35597335,
 'rx_bps': 14386107.0,
 'rx_bps_L1': 14764912.195312498,
 'rx_pps': 2367.532470703125,
 'rx_util': 0.03691228048828125,
 'tx_bps': 38717853696.0,
 'tx_bps_L1': 39851375456.0,
 'tx_pps': 7084511.0,
 'tx_util': 99.62843864}
29/07/2021 09:32:01                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 14386107.000000, rx_pps: 2367.532471
29/07/2021 09:32:01                         pktgen: throughput: pps_rx 2367.532471, bps_rx 14386107.000000
29/07/2021 09:32:01                         pktgen: traffic completed. 
29/07/2021 09:32:01         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| imix             | 0.002            |
+------------------+------------------+
29/07/2021 09:32:02         TestVswitchSampleCBDMA: Relaunch vhost app perf test
29/07/2021 09:32:06                         tester: ls -d /tmp
29/07/2021 09:32:06                         tester: /tmp
29/07/2021 09:32:06                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap
29/07/2021 09:32:08                         tester: ls -d /tmp
29/07/2021 09:32:08                         tester: /tmp
29/07/2021 09:32:08                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_128.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_128.pcap
29/07/2021 09:32:09                         tester: ls -d /tmp
29/07/2021 09:32:10                         tester: /tmp
29/07/2021 09:32:10                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_256.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_256.pcap
29/07/2021 09:32:11                         tester: ls -d /tmp
29/07/2021 09:32:11                         tester: /tmp
29/07/2021 09:32:11                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_512.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_512.pcap
29/07/2021 09:32:13                         tester: ls -d /tmp
29/07/2021 09:32:13                         tester: /tmp
29/07/2021 09:32:13                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_1024.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1024.pcap
29/07/2021 09:32:14                         tester: ls -d /tmp
29/07/2021 09:32:14                         tester: /tmp
29/07/2021 09:32:14                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_1280.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1280.pcap
29/07/2021 09:32:16                         tester: ls -d /tmp
29/07/2021 09:32:16                         tester: /tmp
29/07/2021 09:32:16                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:10_1518.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_1518.pcap
29/07/2021 09:32:17                         tester: ls -d /tmp
29/07/2021 09:32:17                         tester: /tmp
29/07/2021 09:32:17                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_64.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_64.pcap
29/07/2021 09:32:19                         tester: ls -d /tmp
29/07/2021 09:32:19                         tester: /tmp
29/07/2021 09:32:19                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_128.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_128.pcap
29/07/2021 09:32:20                         tester: ls -d /tmp
29/07/2021 09:32:21                         tester: /tmp
29/07/2021 09:32:21                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_256.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_256.pcap
29/07/2021 09:32:22                         tester: ls -d /tmp
29/07/2021 09:32:22                         tester: /tmp
29/07/2021 09:32:22                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_512.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_512.pcap
29/07/2021 09:32:24                         tester: ls -d /tmp
29/07/2021 09:32:24                         tester: /tmp
29/07/2021 09:32:24                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_1024.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_1024.pcap
29/07/2021 09:32:25                         tester: ls -d /tmp
29/07/2021 09:32:25                         tester: /tmp
29/07/2021 09:32:25                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_1280.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_1280.pcap
29/07/2021 09:32:27                         tester: ls -d /tmp
29/07/2021 09:32:27                         tester: /tmp
29/07/2021 09:32:27                         tester: scp -v /home/lingwei/dts_cbdma_0729/output/tmp/pcap/vswitch_sample_cbdma_00:11:22:33:44:11_1518.pcap root@10.240.183.213:/tmp/vswitch_sample_cbdma_00:11:22:33:44:11_1518.pcap
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: test port 0 map gen port 0
29/07/2021 09:32:28                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:32:28                         pktgen: trex port <0> not support flow control
29/07/2021 09:32:28                         pktgen: trex packet generator: run traffic 5s to warm up ... 
29/07/2021 09:32:28                         pktgen: check the trex port link status
29/07/2021 09:32:28                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:32:28                         pktgen: begin traffic ......
29/07/2021 09:32:28                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:32:33                         pktgen: traffic completed. 
29/07/2021 09:32:33                         pktgen: check the trex port link status
29/07/2021 09:32:33                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': '3c:fd:fe:c8:19:28',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:18:78',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 0,
 'pci_addr': '0000:05:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:18:78',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
29/07/2021 09:32:33                         pktgen: begin traffic ......
29/07/2021 09:32:33                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
29/07/2021 09:32:38                         pktgen: begin get port statistic ...
29/07/2021 09:32:38                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_00:11:22:33:44:10_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
29/07/2021 09:32:38                         pktgen: {0: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 24317396904,
     'oerrors': 0,
     'opackets': 35596360,
     'rx_bps': 8964969.0,
     'rx_bps_L1': 9200567.80859375,
     'rx_pps': 1472.4925537109375,
     'rx_util': 0.023001419521484375,
     'tx_bps': 38747967488.0,
     'tx_bps_L1': 39882371008.0,
     'tx_pps': 7090022.0,
     'tx_util': 99.70592752},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 21.747360229492188,
            'cpu_util': 89.08660125732422,
            'cpu_util_raw': 96.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 13056986,
            'rx_bps': 8964969.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 38739005440.0,
            'rx_pps': 1472.4925537109375,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38747967488.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 7090022.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 0,
           'ierrors': 0,
           'ipackets': 0,
           'obytes': 24317396904,
           'oerrors': 0,
           'opackets': 35596360,
           'rx_bps': 8964969.0,
           'rx_bps_L1': 9200567.80859375,
           'rx_pps': 1472.4925537109375,
           'rx_util': 0.023001419521484375,
           'tx_bps': 38747967488.0,
           'tx_bps_L1': 39882371008.0,
           'tx_pps': 7090022.0,
           'tx_util': 99.70592752}}
29/07/2021 09:32:38                         pktgen: {'ibytes': 0,
 'ierrors': 0,
 'ipackets': 0,
 'obytes': 24317396904,
 'oerrors': 0,
 'opackets': 35596360,
 'rx_bps': 8964969.0,
 'rx_bps_L1': 9200567.80859375,
 'rx_pps': 1472.4925537109375,
 'rx_util': 0.023001419521484375,
 'tx_bps': 38747967488.0,
 'tx_bps_L1': 39882371008.0,
 'tx_pps': 7090022.0,
 'tx_util': 99.70592752}
29/07/2021 09:32:38                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38747967488.000000, tx_pps: 7090022.000000 
29/07/2021 09:32:38                         pktgen: {'ibytes': 0,
 'ierrors': 0,
 'ipackets': 0,
 'obytes': 24317396904,
 'oerrors': 0,
 'opackets': 35596360,
 'rx_bps': 8964969.0,
 'rx_bps_L1': 9200567.80859375,
 'rx_pps': 1472.4925537109375,
 'rx_util': 0.023001419521484375,
 'tx_bps': 38747967488.0,
 'tx_bps_L1': 39882371008.0,
 'tx_pps': 7090022.0,
 'tx_util': 99.70592752}
29/07/2021 09:32:38                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 8964969.000000, rx_pps: 1472.492554
29/07/2021 09:32:38                         pktgen: throughput: pps_rx 1472.492554, bps_rx 8964969.000000
29/07/2021 09:32:38                         pktgen: traffic completed. 
29/07/2021 09:32:39         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| imix             | 0.001            |
+------------------+------------------+
29/07/2021 09:32:39         TestVswitchSampleCBDMA: 
+------------------+------------------------+------------------+
| Frame Size(Byte) |          Mode          | Throughput(Mpps) |
+==================+========================+==================+
| imix             | Before Re-launch vhost | 0.002            |
+------------------+------------------------+------------------+
| imix             | After Re-launch vhost  | 0.001            |
+------------------+------------------------+------------------+
29/07/2021 09:32:39         TestVswitchSampleCBDMA: Test Case test_perf_pvp_test_with_two_vm_and_two_cbdma_channels_using_vhost_async_driver Result PASSED:
29/07/2021 09:32:40             dut.10.240.183.214: kill_all: called by dut and prefix list has value.
29/07/2021 09:32:42             dut.10.240.183.214: modprobe ioatdma
29/07/2021 09:32:42             dut.10.240.183.214: 
29/07/2021 09:32:42             dut.10.240.183.214: ./usertools/dpdk-devbind.py -u 0000:80:04.2 0000:80:04.3
29/07/2021 09:32:42             dut.10.240.183.214: 
29/07/2021 09:32:42             dut.10.240.183.214: ./usertools/dpdk-devbind.py --force --bind=ioatdma  0000:80:04.2 0000:80:04.3
29/07/2021 09:32:42             dut.10.240.183.214: 
29/07/2021 09:32:42                            dts: 
TEST SUITE ENDED: TestVswitchSampleCBDMA
29/07/2021 09:32:42         TestVswitchSampleCBDMA: Configure MAX_QUEUES to 128

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

* Re: [dts] [PATCH V2] tests/vswitch_sample_cbdma: fix script issues
  2021-07-29  1:41 ` Ling, WeiX
@ 2021-07-29  5:03   ` Wang, Yinan
  0 siblings, 0 replies; 3+ messages in thread
From: Wang, Yinan @ 2021-07-29  5:03 UTC (permalink / raw)
  To: Ling, WeiX, dts

Acked-by:  Yinan Wang <yinan.wang@intel.com>

> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Ling, WeiX
> Sent: 2021?7?29? 9:41
> To: dts@dpdk.org
> Subject: Re: [dts] [PATCH V2] tests/vswitch_sample_cbdma: fix script issues
> 
> > -----Original Message-----
> > From: Ling, WeiX <weix.ling@intel.com>
> > Sent: Thursday, July 29, 2021 09:32 AM
> > To: dts@dpdk.org
> > Cc: Ling, WeiX <weix.ling@intel.com>
> > Subject: [dts][PATCH V2] tests/vswitch_sample_cbdma: fix script issues
> >
> Tested-by: Wei Ling <weix.ling@intel.com>

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

end of thread, other threads:[~2021-07-29  5:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-29  1:32 [dts] [PATCH V2] tests/vswitch_sample_cbdma: fix script issues Wei Ling
2021-07-29  1:41 ` Ling, WeiX
2021-07-29  5:03   ` Wang, Yinan

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