test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1 0/9] modify hard code bind cbdma device to igb_uio by drivername in execution.cfg
@ 2021-03-19  6:45 Ling Wei
  2021-03-19  6:51 ` Ling, WeiX
  2021-03-22  1:34 ` Ling, WeiX
  0 siblings, 2 replies; 4+ messages in thread
From: Ling Wei @ 2021-03-19  6:45 UTC (permalink / raw)
  To: dts; +Cc: Ling Wei

1.Modify hard code bind cbdma device to igb_uio by drivername in
  execution.cfg.
2.Adjust code format.
3.Delete invalid code about unbind driver because of framwork will
  auto uinbind nic.
4.tests/vm2vm_virtio_net_perf:use the core of nic socket to start
  testpmd.

Ling Wei (9):
  tests/cbdma:modify hard code bind cbdma device to igb_uio by
    drivername in execution.cfg
  tests/dpdk_gro_lib:modify hard code bind cbdma device to igb_uio by
    drivername in execution.cfg
  tests/vhost_cbdma:modify hard code bind cbdma device to igb_uio by
    drivername in execution.cfg
  tests/vhost_user_interrupt:modify hard code bind cbdma device to
    igb_uio by drivername in execution.cfg
  tests/vhost_virtio_pmd_interrupt:modify hard code bind cbdma device to
    igb_uio by drivername in execution.cfg
  tests/vhost_virtio_user_interrupt:modify hard code bind cbdma device
    to igb_uio by drivername in execution.cfg
  tests/virtio_event_idx_interrupt:modify hard code bind cbdma device to
    igb_uio by drivername in execution.cfg
  tests/vm2vm_virtio_net_perf:modify hard code bind cbdma device to
    igb_uio by drivername in execution.cfg
  tests/vswitch_sample_cbdma:modify hard code bind cbdma device to
    igb_uio by drivername in execution.cfg

 tests/TestSuite_cbdma.py                      |  48 ++----
 tests/TestSuite_dpdk_gro_lib.py               | 156 +++++-------------
 tests/TestSuite_vhost_cbdma.py                | 119 +++----------
 tests/TestSuite_vhost_user_interrupt.py       |  10 +-
 tests/TestSuite_vhost_virtio_pmd_interrupt.py |  38 ++---
 .../TestSuite_vhost_virtio_user_interrupt.py  |  12 +-
 tests/TestSuite_virtio_event_idx_interrupt.py |  32 ++--
 tests/TestSuite_vm2vm_virtio_net_perf.py      |  79 +++++----
 tests/TestSuite_vswitch_sample_cbdma.py       |  13 +-
 9 files changed, 162 insertions(+), 345 deletions(-)
 mode change 100755 => 100644 tests/TestSuite_cbdma.py

-- 
2.25.1


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

* Re: [dts] [PATCH V1 0/9] modify hard code bind cbdma device to igb_uio by drivername in execution.cfg
  2021-03-19  6:45 [dts] [PATCH V1 0/9] modify hard code bind cbdma device to igb_uio by drivername in execution.cfg Ling Wei
@ 2021-03-19  6:51 ` Ling, WeiX
  2021-03-25  5:33   ` Tu, Lijuan
  2021-03-22  1:34 ` Ling, WeiX
  1 sibling, 1 reply; 4+ messages in thread
From: Ling, WeiX @ 2021-03-19  6:51 UTC (permalink / raw)
  To: dts

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

> -----Original Message-----
> From: Ling, WeiX <weix.ling@intel.com>
> Sent: Friday, March 19, 2021 02:46 PM
> To: dts@dpdk.org
> Cc: Ling, WeiX <weix.ling@intel.com>
> Subject: [dts][PATCH V1 0/9] modify hard code bind cbdma device to igb_uio
> by drivername in execution.cfg

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

[-- Attachment #2: vhost_virtio_user_interrupt.diff --]
[-- Type: application/octet-stream, Size: 3340 bytes --]

diff --git a/tests/TestSuite_vhost_virtio_user_interrupt.py b/tests/TestSuite_vhost_virtio_user_interrupt.py
index 29693f43..04c86769 100644
--- a/tests/TestSuite_vhost_virtio_user_interrupt.py
+++ b/tests/TestSuite_vhost_virtio_user_interrupt.py
@@ -62,7 +62,6 @@ class TestVirtioUserInterrupt(TestCase):
         self.cbdma_dev_infos = []
         self.dmas_info = None
         self.device_str = None
-
         self.prepare_l3fwd_power()
         self.tx_port = self.tester.get_local_port(self.dut_ports[0])
         self.tx_interface = self.tester.get_interface(self.tx_port)
@@ -78,7 +77,6 @@ class TestVirtioUserInterrupt(TestCase):
         self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#")
         self.dut.send_expect("killall %s" % self.l3fwdpower_name, "#")
         self.dut.send_expect("rm -rf vhost-net*", "#")
-
         self.l3fwd = self.dut.new_session(suite="l3fwd")
         self.vhost = self.dut.new_session(suite="vhost")
         self.virtio = self.dut.new_session(suite="virito")
@@ -145,7 +143,6 @@ class TestVirtioUserInterrupt(TestCase):
             else:
                 eal_params = self.dut.create_eal_parameters(cores=self.core_list_vhost, prefix='vhost', no_pci=True, vdevs=vdev)
         cmd_vhost_user = testcmd + eal_params + para
-
         self.vhost.send_expect(cmd_vhost_user, "testpmd>", 30)
         self.vhost.send_expect("set fwd mac", "testpmd>", 30)
         self.vhost.send_expect("start", "testpmd>", 30)
@@ -186,6 +183,9 @@ class TestVirtioUserInterrupt(TestCase):
         """
         get all cbdma ports
         """
+        # check driver name in execution.cfg
+        self.verify(self.drivername == 'igb_uio',
+                    "CBDMA test case only use igb_uio driver, need config drivername=igb_uio in execution.cfg")
         str_info = 'Misc (rawdev) devices using kernel driver'
         out = self.dut.send_expect('./usertools/dpdk-devbind.py --status-dev misc', '# ', 30)
         device_info = out.split('\n')
@@ -211,9 +211,7 @@ class TestVirtioUserInterrupt(TestCase):
             dmas_info += dmas
         self.dmas_info = dmas_info[:-1]
         self.device_str = ' '.join(self.used_cbdma)
-        self.dut.setup_modules(self.target, "igb_uio", "None")
-        self.dut.send_expect('./usertools/dpdk-devbind.py --force --bind=%s %s %s' %
-                             ("igb_uio", self.device_str, self.pci_info), '# ', 60)
+        self.dut.send_expect('./usertools/dpdk-devbind.py --force --bind=%s %s' % (self.drivername, self.device_str), '# ', 60)
 
     def bind_cbdma_device_to_kernel(self):
         if self.device_str is not None:
@@ -309,7 +307,6 @@ class TestVirtioUserInterrupt(TestCase):
         self.start_vhost_testpmd(pci="--no-pci")
         self.start_virtio_user(packed=True)
         self.check_virtio_side_link_status("up")
-
         self.vhost.send_expect("quit", "#", 20)
         self.check_virtio_side_link_status("down")
 
@@ -321,7 +318,6 @@ class TestVirtioUserInterrupt(TestCase):
         self.start_vhost_testpmd(pci=self.used_cbdma, dmas=self.dmas_info)
         self.start_virtio_user()
         self.check_virtio_side_link_status("up")
-
         self.vhost.send_expect("quit", "#", 20)
         self.check_virtio_side_link_status("down")
         self.dut.send_expect("killall %s" % self.l3fwdpower_name, "#")

[-- Attachment #3: TestVM2VMVirtioNetPerf.log --]
[-- Type: application/octet-stream, Size: 41285 bytes --]

[-- Attachment #4: TestCBDMA.log --]
[-- Type: application/octet-stream, Size: 438399 bytes --]

[-- Attachment #5: TestDPDKGROLib.log --]
[-- Type: application/octet-stream, Size: 260430 bytes --]

[-- Attachment #6: TestVhostUserInterrupt.log --]
[-- Type: application/octet-stream, Size: 37363 bytes --]

18/03/2021 17:59:36                            dts: 
TEST SUITE : TestVhostUserInterrupt
18/03/2021 17:59:36                            dts: NIC :        fortville_spirit
18/03/2021 17:59:36             dut.10.240.183.220: 
18/03/2021 17:59:37                         tester: 
18/03/2021 17:59:37             dut.10.240.183.220: cp ./examples/l3fwd-power/main.c .
18/03/2021 17:59:37             dut.10.240.183.220: 
18/03/2021 17:59:37             dut.10.240.183.220: sed -i '/DEV_RX_OFFLOAD_CHECKSUM/d' ./examples/l3fwd-power/main.c
18/03/2021 17:59:37             dut.10.240.183.220: 
18/03/2021 17:59:37             dut.10.240.183.220: meson configure -Dexamples=l3fwd-power x86_64-native-linuxapp-gcc
18/03/2021 17:59:37             dut.10.240.183.220: 
18/03/2021 17:59:37             dut.10.240.183.220: ninja -C x86_64-native-linuxapp-gcc
18/03/2021 17:59:42             dut.10.240.183.220: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 21.05.0-rc0
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
Program pkg-config found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
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)
Found pkg-config: /usr/bin/pkg-config (0.29.1)
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:238: 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 -Waddress-of-packed-member: YES (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: 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 -Wformat-truncation: YES (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_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/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Dependency jansson found: YES 2.12 (cached)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_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/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_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/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: NO (tried pkgconfig)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-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"
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 -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-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"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
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/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"
Message: drivers/net/bonding: Defining dependency "net_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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 -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wstrict-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/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 -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-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 -Wstrict-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)
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 -Wmaybe-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-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/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
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 -Wstrict-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 -Wstrict-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 -Wstrict-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"
Message: drivers/event/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
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"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
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"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-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, sfc_efx, qat, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ionic, 
	ipn3ke, ixgbe, kni, liquidio, memif, netvsc, nfp, null, 
	octeontx, octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, 
	softnic, tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
	
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

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/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: 1022

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
[1/3] Compiling C object examples/dpdk-l3fwd-power.p/l3fwd-power_perf_core.c.o
[2/3] Compiling C object examples/dpdk-l3fwd-power.p/l3fwd-power_main.c.o
[3/3] Linking target examples/dpdk-l3fwd-power
18/03/2021 17:59:42             dut.10.240.183.220: ls x86_64-native-linuxapp-gcc/examples/dpdk-l3fwd-power 
18/03/2021 17:59:42             dut.10.240.183.220: x86_64-native-linuxapp-gcc/examples/dpdk-l3fwd-power
18/03/2021 17:59:42             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 17:59:42             dut.10.240.183.220: 1048576
18/03/2021 17:59:42         TestVhostUserInterrupt: Test Case test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled_and_cbdma_enabled Begin
18/03/2021 17:59:43             dut.10.240.183.220: 
18/03/2021 17:59:43                         tester: 
18/03/2021 17:59:43             dut.10.240.183.220: killall -s INT dpdk-testpmd 
18/03/2021 17:59:43             dut.10.240.183.220: dpdk-testpmd: no process found
18/03/2021 17:59:43             dut.10.240.183.220: killall dpdk-l3fwd-power 
18/03/2021 17:59:43             dut.10.240.183.220: dpdk-l3fwd-power: no process found
18/03/2021 17:59:43             dut.10.240.183.220: rm -rf ./vhost-net*
18/03/2021 17:59:43             dut.10.240.183.220: 
18/03/2021 17:59:46             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 17:59:46             dut.10.240.183.220: 1048576
18/03/2021 17:59:47         TestVhostUserInterrupt: Launch l3fwd_sample sample:
18/03/2021 17:59:47             dut.10.240.183.220: ./usertools/dpdk-devbind.py --status-dev misc
18/03/2021 17:59:47             dut.10.240.183.220: 
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.0 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.1 '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 
18/03/2021 17:59:47             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=igb_uio 0000:80:04.0 0000:80:04.1 0000:80:04.2 0000:80:04.3
18/03/2021 17:59:47             dut.10.240.183.220: 
18/03/2021 18:00:15         TestVhostUserInterrupt: Launch l3fwd-power sample finished
18/03/2021 18:00:30         TestVhostUserInterrupt: lcore 6 is waked up from rx interrupt on port 0 queue 0
18/03/2021 18:00:30         TestVhostUserInterrupt: lcore 7 is waked up from rx interrupt on port 0 queue 1
18/03/2021 18:00:30         TestVhostUserInterrupt: lcore 8 is waked up from rx interrupt on port 0 queue 2
18/03/2021 18:00:30         TestVhostUserInterrupt: lcore 9 is waked up from rx interrupt on port 0 queue 3
18/03/2021 18:00:45         TestVhostUserInterrupt: lcore 6 sleeps until interrupt triggers
18/03/2021 18:00:45         TestVhostUserInterrupt: lcore 7 sleeps until interrupt triggers
18/03/2021 18:00:45         TestVhostUserInterrupt: lcore 8 sleeps until interrupt triggers
18/03/2021 18:00:45         TestVhostUserInterrupt: lcore 9 sleeps until interrupt triggers
18/03/2021 18:01:01         TestVhostUserInterrupt: lcore 6 is waked up from rx interrupt on port 0 queue 0
18/03/2021 18:01:01         TestVhostUserInterrupt: lcore 7 is waked up from rx interrupt on port 0 queue 1
18/03/2021 18:01:01         TestVhostUserInterrupt: lcore 8 is waked up from rx interrupt on port 0 queue 2
18/03/2021 18:01:01         TestVhostUserInterrupt: lcore 9 is waked up from rx interrupt on port 0 queue 3
18/03/2021 18:01:01         TestVhostUserInterrupt: Test Case test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled_and_cbdma_enabled Result PASSED:
18/03/2021 18:01:02             dut.10.240.183.220: killall dpdk-l3fwd-power 
18/03/2021 18:01:02             dut.10.240.183.220: dpdk-l3fwd-power: no process found
18/03/2021 18:01:02             dut.10.240.183.220: killall -s INT dpdk-testpmd 
18/03/2021 18:01:02             dut.10.240.183.220: dpdk-testpmd: no process found
18/03/2021 18:01:02             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
18/03/2021 18:01:03             dut.10.240.183.220: modprobe ioatdma
18/03/2021 18:01:03             dut.10.240.183.220: 
18/03/2021 18:01:03             dut.10.240.183.220: ./usertools/dpdk-devbind.py -u 0000:80:04.0 0000:80:04.1 0000:80:04.2 0000:80:04.3
18/03/2021 18:01:04             dut.10.240.183.220: 
18/03/2021 18:01:04             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=ioatdma  0000:80:04.0 0000:80:04.1 0000:80:04.2 0000:80:04.3
18/03/2021 18:01:04             dut.10.240.183.220: 
18/03/2021 18:01:04                            dts: 
TEST SUITE ENDED: TestVhostUserInterrupt

[-- Attachment #7: TestVhostVirtioPmdInterrupt.log --]
[-- Type: application/octet-stream, Size: 444798 bytes --]

[-- Attachment #8: TestVirTioVhostCbdma.log --]
[-- Type: application/octet-stream, Size: 274807 bytes --]

18/03/2021 16:30:06                            dts: 
TEST SUITE : TestVirTioVhostCbdma
18/03/2021 16:30:06                            dts: NIC :        fortville_spirit
18/03/2021 16:30:06             dut.10.240.183.220: 
18/03/2021 16:30:06                         tester: 
18/03/2021 16:30:11                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:30:11                         tester: /tmp/vhost_cbdma
18/03/2021 16:30:11             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:30:11             dut.10.240.183.220: 1048576
18/03/2021 16:30:11           TestVirTioVhostCbdma: Test Case test_perf_dynamic_queue_number_cbdma_vhost_enqueue_operations Begin
18/03/2021 16:30:12             dut.10.240.183.220: 
18/03/2021 16:30:12                         tester: 
18/03/2021 16:30:12             dut.10.240.183.220: killall -I dpdk-testpmd 
18/03/2021 16:30:12             dut.10.240.183.220: dpdk-testpmd: no process found
18/03/2021 16:30:12             dut.10.240.183.220: rm -rf /root/dpdk/vhost-net*
18/03/2021 16:30:12             dut.10.240.183.220: 
18/03/2021 16:30:12             dut.10.240.183.220: rm -rf /tmp/s0
18/03/2021 16:30:12             dut.10.240.183.220: 
18/03/2021 16:30:12             dut.10.240.183.220: ./usertools/dpdk-devbind.py --status-dev misc
18/03/2021 16:30:12             dut.10.240.183.220: 
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.0 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.1 '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 
18/03/2021 16:30:12             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=igb_uio 0000:80:04.0 0000:80:04.1 0000:80:04.2 0000:80:04.3
18/03/2021 16:30:13             dut.10.240.183.220: 
18/03/2021 16:30:24             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:30:24             dut.10.240.183.220: 1048576
18/03/2021 16:30:35                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:30:35                         tester: /tmp/vhost_cbdma
18/03/2021 16:30:35                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:30:37                         pktgen: test port 0 map gen port 0
18/03/2021 16:30:37                         pktgen: test port 0 map gen port 0
18/03/2021 16:30:37                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:30:37                         pktgen: trex port <0> not support flow control
18/03/2021 16:30:37                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:30:37                         pktgen: check the trex port link status
18/03/2021 16:30:37                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:30:37                         pktgen: begin traffic ......
18/03/2021 16:30:37                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:30:42                         pktgen: traffic completed. 
18/03/2021 16:30:42                         pktgen: check the trex port link status
18/03/2021 16:30:42                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:30:42                         pktgen: begin traffic ......
18/03/2021 16:30:42                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:31:02                         pktgen: begin get port statistic ...
18/03/2021 16:31:02                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:31:02                         pktgen: {0: {'ibytes': 9630869568,
     'ierrors': 0,
     'ipackets': 150482358,
     'obytes': 37827934848,
     'oerrors': 0,
     'opackets': 591061512,
     'rx_bps': 3877851392.0,
     'rx_bps_L1': 5089680351.999999,
     'rx_pps': 7573931.0,
     'rx_util': 12.724200879999998,
     'tx_bps': 15131528192.0,
     'tx_bps_L1': 19860131712.0,
     'tx_pps': 29553772.0,
     'tx_util': 49.65032928},
 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': 7.572915077209473,
            'cpu_util': 99.90557098388672,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3877851392.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11253677056.0,
            'rx_pps': 7573931.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15131528192.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29553772.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9630869568,
           'ierrors': 0,
           'ipackets': 150482358,
           'obytes': 37827934848,
           'oerrors': 0,
           'opackets': 591061512,
           'rx_bps': 3877851392.0,
           'rx_bps_L1': 5089680351.999999,
           'rx_pps': 7573931.0,
           'rx_util': 12.724200879999998,
           'tx_bps': 15131528192.0,
           'tx_bps_L1': 19860131712.0,
           'tx_pps': 29553772.0,
           'tx_util': 49.65032928}}
18/03/2021 16:31:02                         pktgen: {'ibytes': 9630869568,
 'ierrors': 0,
 'ipackets': 150482358,
 'obytes': 37827934848,
 'oerrors': 0,
 'opackets': 591061512,
 'rx_bps': 3877851392.0,
 'rx_bps_L1': 5089680351.999999,
 'rx_pps': 7573931.0,
 'rx_util': 12.724200879999998,
 'tx_bps': 15131528192.0,
 'tx_bps_L1': 19860131712.0,
 'tx_pps': 29553772.0,
 'tx_util': 49.65032928}
18/03/2021 16:31:02                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15131528192.000000, tx_pps: 29553772.000000 
18/03/2021 16:31:02                         pktgen: {'ibytes': 9630869568,
 'ierrors': 0,
 'ipackets': 150482358,
 'obytes': 37827934848,
 'oerrors': 0,
 'opackets': 591061512,
 'rx_bps': 3877851392.0,
 'rx_bps_L1': 5089680351.999999,
 'rx_pps': 7573931.0,
 'rx_util': 12.724200879999998,
 'tx_bps': 15131528192.0,
 'tx_bps_L1': 19860131712.0,
 'tx_pps': 29553772.0,
 'tx_util': 49.65032928}
18/03/2021 16:31:02                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3877851392.000000, rx_pps: 7573931.000000
18/03/2021 16:31:02                         pktgen: throughput: pps_rx 7573931.000000, bps_rx 3877851392.000000
18/03/2021 16:31:02                         pktgen: traffic completed. 
18/03/2021 16:31:02                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:31:02                         tester: /tmp/vhost_cbdma
18/03/2021 16:31:02                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:31:04                         pktgen: test port 0 map gen port 0
18/03/2021 16:31:04                         pktgen: test port 0 map gen port 0
18/03/2021 16:31:04                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:31:04                         pktgen: trex port <0> not support flow control
18/03/2021 16:31:04                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:31:04                         pktgen: check the trex port link status
18/03/2021 16:31:04                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:31:04                         pktgen: begin traffic ......
18/03/2021 16:31:04                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:31:09                         pktgen: traffic completed. 
18/03/2021 16:31:09                         pktgen: check the trex port link status
18/03/2021 16:31:09                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:31:09                         pktgen: begin traffic ......
18/03/2021 16:31:09                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:31:29                         pktgen: begin get port statistic ...
18/03/2021 16:31:29                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:31:29                         pktgen: {0: {'ibytes': 83436745524,
     'ierrors': 0,
     'ipackets': 54964921,
     'obytes': 98801754810,
     'oerrors': 0,
     'opackets': 65086797,
     'rx_bps': 33363257344.0,
     'rx_bps_L1': 33802826023.999996,
     'rx_pps': 2747304.25,
     'rx_util': 84.50706505999999,
     'tx_bps': 39488172032.0,
     'tx_bps_L1': 40008437752.0,
     'tx_pps': 3251660.75,
     'tx_util': 100.02109438},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.183454513549805,
            'cpu_util': 85.16455841064453,
            'cpu_util_raw': 84.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56613898,
            'rx_bps': 33363257344.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 6124914176.0,
            'rx_pps': 2747304.25,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39488172032.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3251660.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 83436745524,
           'ierrors': 0,
           'ipackets': 54964921,
           'obytes': 98801754810,
           'oerrors': 0,
           'opackets': 65086797,
           'rx_bps': 33363257344.0,
           'rx_bps_L1': 33802826023.999996,
           'rx_pps': 2747304.25,
           'rx_util': 84.50706505999999,
           'tx_bps': 39488172032.0,
           'tx_bps_L1': 40008437752.0,
           'tx_pps': 3251660.75,
           'tx_util': 100.02109438}}
18/03/2021 16:31:29                         pktgen: {'ibytes': 83436745524,
 'ierrors': 0,
 'ipackets': 54964921,
 'obytes': 98801754810,
 'oerrors': 0,
 'opackets': 65086797,
 'rx_bps': 33363257344.0,
 'rx_bps_L1': 33802826023.999996,
 'rx_pps': 2747304.25,
 'rx_util': 84.50706505999999,
 'tx_bps': 39488172032.0,
 'tx_bps_L1': 40008437752.0,
 'tx_pps': 3251660.75,
 'tx_util': 100.02109438}
18/03/2021 16:31:29                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39488172032.000000, tx_pps: 3251660.750000 
18/03/2021 16:31:29                         pktgen: {'ibytes': 83436745524,
 'ierrors': 0,
 'ipackets': 54964921,
 'obytes': 98801754810,
 'oerrors': 0,
 'opackets': 65086797,
 'rx_bps': 33363257344.0,
 'rx_bps_L1': 33802826023.999996,
 'rx_pps': 2747304.25,
 'rx_util': 84.50706505999999,
 'tx_bps': 39488172032.0,
 'tx_bps_L1': 40008437752.0,
 'tx_pps': 3251660.75,
 'tx_util': 100.02109438}
18/03/2021 16:31:29                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 33363257344.000000, rx_pps: 2747304.250000
18/03/2021 16:31:29                         pktgen: throughput: pps_rx 2747304.250000, bps_rx 33363257344.000000
18/03/2021 16:31:29                         pktgen: traffic completed. 
18/03/2021 16:31:35                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:31:35                         tester: /tmp/vhost_cbdma
18/03/2021 16:31:35                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:31:37                         pktgen: test port 0 map gen port 0
18/03/2021 16:31:37                         pktgen: test port 0 map gen port 0
18/03/2021 16:31:37                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:31:37                         pktgen: trex port <0> not support flow control
18/03/2021 16:31:37                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:31:37                         pktgen: check the trex port link status
18/03/2021 16:31:37                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:31:37                         pktgen: begin traffic ......
18/03/2021 16:31:37                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:31:42                         pktgen: traffic completed. 
18/03/2021 16:31:42                         pktgen: check the trex port link status
18/03/2021 16:31:42                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:31:42                         pktgen: begin traffic ......
18/03/2021 16:31:42                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:32:02                         pktgen: begin get port statistic ...
18/03/2021 16:32:02                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:32:02                         pktgen: {0: {'ibytes': 8267502144,
     'ierrors': 0,
     'ipackets': 129179737,
     'obytes': 37745749312,
     'oerrors': 0,
     'opackets': 589777365,
     'rx_bps': 3310901248.0,
     'rx_bps_L1': 4345557888.0,
     'rx_pps': 6466604.0,
     'rx_util': 10.863894720000001,
     'tx_bps': 15073758208.0,
     'tx_bps_L1': 19784309888.0,
     'tx_pps': 29440948.0,
     'tx_util': 49.46077472},
 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': 7.544287204742432,
            'cpu_util': 99.90180206298828,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3310901248.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11762855936.0,
            'rx_pps': 6466604.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15073758208.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29440948.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 8267502144,
           'ierrors': 0,
           'ipackets': 129179737,
           'obytes': 37745749312,
           'oerrors': 0,
           'opackets': 589777365,
           'rx_bps': 3310901248.0,
           'rx_bps_L1': 4345557888.0,
           'rx_pps': 6466604.0,
           'rx_util': 10.863894720000001,
           'tx_bps': 15073758208.0,
           'tx_bps_L1': 19784309888.0,
           'tx_pps': 29440948.0,
           'tx_util': 49.46077472}}
18/03/2021 16:32:02                         pktgen: {'ibytes': 8267502144,
 'ierrors': 0,
 'ipackets': 129179737,
 'obytes': 37745749312,
 'oerrors': 0,
 'opackets': 589777365,
 'rx_bps': 3310901248.0,
 'rx_bps_L1': 4345557888.0,
 'rx_pps': 6466604.0,
 'rx_util': 10.863894720000001,
 'tx_bps': 15073758208.0,
 'tx_bps_L1': 19784309888.0,
 'tx_pps': 29440948.0,
 'tx_util': 49.46077472}
18/03/2021 16:32:02                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15073758208.000000, tx_pps: 29440948.000000 
18/03/2021 16:32:02                         pktgen: {'ibytes': 8267502144,
 'ierrors': 0,
 'ipackets': 129179737,
 'obytes': 37745749312,
 'oerrors': 0,
 'opackets': 589777365,
 'rx_bps': 3310901248.0,
 'rx_bps_L1': 4345557888.0,
 'rx_pps': 6466604.0,
 'rx_util': 10.863894720000001,
 'tx_bps': 15073758208.0,
 'tx_bps_L1': 19784309888.0,
 'tx_pps': 29440948.0,
 'tx_util': 49.46077472}
18/03/2021 16:32:02                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3310901248.000000, rx_pps: 6466604.000000
18/03/2021 16:32:02                         pktgen: throughput: pps_rx 6466604.000000, bps_rx 3310901248.000000
18/03/2021 16:32:02                         pktgen: traffic completed. 
18/03/2021 16:32:02                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:32:03                         tester: /tmp/vhost_cbdma
18/03/2021 16:32:03                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:32:05                         pktgen: test port 0 map gen port 0
18/03/2021 16:32:05                         pktgen: test port 0 map gen port 0
18/03/2021 16:32:05                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:32:05                         pktgen: trex port <0> not support flow control
18/03/2021 16:32:05                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:32:05                         pktgen: check the trex port link status
18/03/2021 16:32:05                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:32:05                         pktgen: begin traffic ......
18/03/2021 16:32:05                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:32:10                         pktgen: traffic completed. 
18/03/2021 16:32:10                         pktgen: check the trex port link status
18/03/2021 16:32:10                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:32:10                         pktgen: begin traffic ......
18/03/2021 16:32:10                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:32:30                         pktgen: begin get port statistic ...
18/03/2021 16:32:30                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:32:30                         pktgen: {0: {'ibytes': 49408395300,
     'ierrors': 0,
     'ipackets': 32548352,
     'obytes': 98804086458,
     'oerrors': 0,
     'opackets': 65088335,
     'rx_bps': 19695151104.0,
     'rx_bps_L1': 19954639224.0,
     'rx_pps': 1621800.75,
     'rx_util': 49.88659806,
     'tx_bps': 39394312192.0,
     'tx_bps_L1': 39913341272.0,
     'tx_pps': 3243931.75,
     'tx_util': 99.78335318},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.239864349365234,
            'cpu_util': 84.75589752197266,
            'cpu_util_raw': 84.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56167655,
            'rx_bps': 19695151104.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 19699161088.0,
            'rx_pps': 1621800.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39394312192.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243931.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49408395300,
           'ierrors': 0,
           'ipackets': 32548352,
           'obytes': 98804086458,
           'oerrors': 0,
           'opackets': 65088335,
           'rx_bps': 19695151104.0,
           'rx_bps_L1': 19954639224.0,
           'rx_pps': 1621800.75,
           'rx_util': 49.88659806,
           'tx_bps': 39394312192.0,
           'tx_bps_L1': 39913341272.0,
           'tx_pps': 3243931.75,
           'tx_util': 99.78335318}}
18/03/2021 16:32:30                         pktgen: {'ibytes': 49408395300,
 'ierrors': 0,
 'ipackets': 32548352,
 'obytes': 98804086458,
 'oerrors': 0,
 'opackets': 65088335,
 'rx_bps': 19695151104.0,
 'rx_bps_L1': 19954639224.0,
 'rx_pps': 1621800.75,
 'rx_util': 49.88659806,
 'tx_bps': 39394312192.0,
 'tx_bps_L1': 39913341272.0,
 'tx_pps': 3243931.75,
 'tx_util': 99.78335318}
18/03/2021 16:32:30                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39394312192.000000, tx_pps: 3243931.750000 
18/03/2021 16:32:30                         pktgen: {'ibytes': 49408395300,
 'ierrors': 0,
 'ipackets': 32548352,
 'obytes': 98804086458,
 'oerrors': 0,
 'opackets': 65088335,
 'rx_bps': 19695151104.0,
 'rx_bps_L1': 19954639224.0,
 'rx_pps': 1621800.75,
 'rx_util': 49.88659806,
 'tx_bps': 39394312192.0,
 'tx_bps_L1': 39913341272.0,
 'tx_pps': 3243931.75,
 'tx_util': 99.78335318}
18/03/2021 16:32:30                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 19695151104.000000, rx_pps: 1621800.750000
18/03/2021 16:32:30                         pktgen: throughput: pps_rx 1621800.750000, bps_rx 19695151104.000000
18/03/2021 16:32:30                         pktgen: traffic completed. 
18/03/2021 16:32:36             dut.10.240.183.220: rm -rf /tmp/s0
18/03/2021 16:32:36             dut.10.240.183.220: 
18/03/2021 16:32:36             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:32:36             dut.10.240.183.220: 1048576
18/03/2021 16:32:47                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:32:47                         tester: /tmp/vhost_cbdma
18/03/2021 16:32:47                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:32:49                         pktgen: test port 0 map gen port 0
18/03/2021 16:32:49                         pktgen: test port 0 map gen port 0
18/03/2021 16:32:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:32:49                         pktgen: trex port <0> not support flow control
18/03/2021 16:32:49                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:32:49                         pktgen: check the trex port link status
18/03/2021 16:32:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:32:49                         pktgen: begin traffic ......
18/03/2021 16:32:49                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:32:55                         pktgen: traffic completed. 
18/03/2021 16:32:55                         pktgen: check the trex port link status
18/03/2021 16:32:55                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:32:55                         pktgen: begin traffic ......
18/03/2021 16:32:55                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:33:15                         pktgen: begin get port statistic ...
18/03/2021 16:33:15                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:33:15                         pktgen: {0: {'ibytes': 9717170816,
     'ierrors': 0,
     'ipackets': 151830796,
     'obytes': 37767446336,
     'oerrors': 0,
     'opackets': 590116376,
     'rx_bps': 3911887104.0,
     'rx_bps_L1': 5134351424.0,
     'rx_pps': 7640402.0,
     'rx_util': 12.83587856,
     'tx_bps': 15111632896.0,
     'tx_bps_L1': 19834019456.0,
     'tx_pps': 29514916.0,
     'tx_util': 49.585048640000004},
 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': 7.564024448394775,
            'cpu_util': 99.89148712158203,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3911887104.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11199746048.0,
            'rx_pps': 7640402.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15111632896.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29514916.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9717170816,
           'ierrors': 0,
           'ipackets': 151830796,
           'obytes': 37767446336,
           'oerrors': 0,
           'opackets': 590116376,
           'rx_bps': 3911887104.0,
           'rx_bps_L1': 5134351424.0,
           'rx_pps': 7640402.0,
           'rx_util': 12.83587856,
           'tx_bps': 15111632896.0,
           'tx_bps_L1': 19834019456.0,
           'tx_pps': 29514916.0,
           'tx_util': 49.585048640000004}}
18/03/2021 16:33:15                         pktgen: {'ibytes': 9717170816,
 'ierrors': 0,
 'ipackets': 151830796,
 'obytes': 37767446336,
 'oerrors': 0,
 'opackets': 590116376,
 'rx_bps': 3911887104.0,
 'rx_bps_L1': 5134351424.0,
 'rx_pps': 7640402.0,
 'rx_util': 12.83587856,
 'tx_bps': 15111632896.0,
 'tx_bps_L1': 19834019456.0,
 'tx_pps': 29514916.0,
 'tx_util': 49.585048640000004}
18/03/2021 16:33:15                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15111632896.000000, tx_pps: 29514916.000000 
18/03/2021 16:33:15                         pktgen: {'ibytes': 9717170816,
 'ierrors': 0,
 'ipackets': 151830796,
 'obytes': 37767446336,
 'oerrors': 0,
 'opackets': 590116376,
 'rx_bps': 3911887104.0,
 'rx_bps_L1': 5134351424.0,
 'rx_pps': 7640402.0,
 'rx_util': 12.83587856,
 'tx_bps': 15111632896.0,
 'tx_bps_L1': 19834019456.0,
 'tx_pps': 29514916.0,
 'tx_util': 49.585048640000004}
18/03/2021 16:33:15                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3911887104.000000, rx_pps: 7640402.000000
18/03/2021 16:33:15                         pktgen: throughput: pps_rx 7640402.000000, bps_rx 3911887104.000000
18/03/2021 16:33:15                         pktgen: traffic completed. 
18/03/2021 16:33:15                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:33:15                         tester: /tmp/vhost_cbdma
18/03/2021 16:33:15                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:33:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:33:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:33:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:33:17                         pktgen: trex port <0> not support flow control
18/03/2021 16:33:17                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:33:17                         pktgen: check the trex port link status
18/03/2021 16:33:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:33:17                         pktgen: begin traffic ......
18/03/2021 16:33:17                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:33:22                         pktgen: traffic completed. 
18/03/2021 16:33:22                         pktgen: check the trex port link status
18/03/2021 16:33:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:33:22                         pktgen: begin traffic ......
18/03/2021 16:33:22                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:33:42                         pktgen: begin get port statistic ...
18/03/2021 16:33:42                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:33:42                         pktgen: {0: {'ibytes': 81600451284,
     'ierrors': 0,
     'ipackets': 53755239,
     'obytes': 98799886152,
     'oerrors': 0,
     'opackets': 65085568,
     'rx_bps': 32536930304.0,
     'rx_bps_L1': 32965611743.999996,
     'rx_pps': 2679259.0,
     'rx_util': 82.41402935999999,
     'tx_bps': 39395840000.0,
     'tx_bps_L1': 39914889360.0,
     'tx_pps': 3244058.5,
     'tx_util': 99.7872234},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.144248962402344,
            'cpu_util': 85.1093521118164,
            'cpu_util_raw': 84.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56731277,
            'rx_bps': 32536930304.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 6858910208.0,
            'rx_pps': 2679259.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39395840000.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3244058.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 81600451284,
           'ierrors': 0,
           'ipackets': 53755239,
           'obytes': 98799886152,
           'oerrors': 0,
           'opackets': 65085568,
           'rx_bps': 32536930304.0,
           'rx_bps_L1': 32965611743.999996,
           'rx_pps': 2679259.0,
           'rx_util': 82.41402935999999,
           'tx_bps': 39395840000.0,
           'tx_bps_L1': 39914889360.0,
           'tx_pps': 3244058.5,
           'tx_util': 99.7872234}}
18/03/2021 16:33:42                         pktgen: {'ibytes': 81600451284,
 'ierrors': 0,
 'ipackets': 53755239,
 'obytes': 98799886152,
 'oerrors': 0,
 'opackets': 65085568,
 'rx_bps': 32536930304.0,
 'rx_bps_L1': 32965611743.999996,
 'rx_pps': 2679259.0,
 'rx_util': 82.41402935999999,
 'tx_bps': 39395840000.0,
 'tx_bps_L1': 39914889360.0,
 'tx_pps': 3244058.5,
 'tx_util': 99.7872234}
18/03/2021 16:33:42                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39395840000.000000, tx_pps: 3244058.500000 
18/03/2021 16:33:42                         pktgen: {'ibytes': 81600451284,
 'ierrors': 0,
 'ipackets': 53755239,
 'obytes': 98799886152,
 'oerrors': 0,
 'opackets': 65085568,
 'rx_bps': 32536930304.0,
 'rx_bps_L1': 32965611743.999996,
 'rx_pps': 2679259.0,
 'rx_util': 82.41402935999999,
 'tx_bps': 39395840000.0,
 'tx_bps_L1': 39914889360.0,
 'tx_pps': 3244058.5,
 'tx_util': 99.7872234}
18/03/2021 16:33:42                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 32536930304.000000, rx_pps: 2679259.000000
18/03/2021 16:33:42                         pktgen: throughput: pps_rx 2679259.000000, bps_rx 32536930304.000000
18/03/2021 16:33:42                         pktgen: traffic completed. 
18/03/2021 16:33:48                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:33:48                         tester: /tmp/vhost_cbdma
18/03/2021 16:33:48                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:33:50                         pktgen: test port 0 map gen port 0
18/03/2021 16:33:50                         pktgen: test port 0 map gen port 0
18/03/2021 16:33:50                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:33:50                         pktgen: trex port <0> not support flow control
18/03/2021 16:33:50                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:33:50                         pktgen: check the trex port link status
18/03/2021 16:33:50                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:33:50                         pktgen: begin traffic ......
18/03/2021 16:33:50                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:33:55                         pktgen: traffic completed. 
18/03/2021 16:33:55                         pktgen: check the trex port link status
18/03/2021 16:33:55                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:33:55                         pktgen: begin traffic ......
18/03/2021 16:33:55                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:34:15                         pktgen: begin get port statistic ...
18/03/2021 16:34:15                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:34:15                         pktgen: {0: {'ibytes': 10402382848,
     'ierrors': 0,
     'ipackets': 162537251,
     'obytes': 37766023360,
     'oerrors': 0,
     'opackets': 590094149,
     'rx_bps': 4165145600.0,
     'rx_bps_L1': 5466754720.0,
     'rx_pps': 8135057.0,
     'rx_util': 13.6668868,
     'tx_bps': 15100334080.0,
     'tx_bps_L1': 19819189120.0,
     'tx_pps': 29492844.0,
     'tx_util': 49.547972800000004},
 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': 7.556849002838135,
            'cpu_util': 99.91157531738281,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 4165145600.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10935188480.0,
            'rx_pps': 8135057.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15100334080.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29492844.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 10402382848,
           'ierrors': 0,
           'ipackets': 162537251,
           'obytes': 37766023360,
           'oerrors': 0,
           'opackets': 590094149,
           'rx_bps': 4165145600.0,
           'rx_bps_L1': 5466754720.0,
           'rx_pps': 8135057.0,
           'rx_util': 13.6668868,
           'tx_bps': 15100334080.0,
           'tx_bps_L1': 19819189120.0,
           'tx_pps': 29492844.0,
           'tx_util': 49.547972800000004}}
18/03/2021 16:34:15                         pktgen: {'ibytes': 10402382848,
 'ierrors': 0,
 'ipackets': 162537251,
 'obytes': 37766023360,
 'oerrors': 0,
 'opackets': 590094149,
 'rx_bps': 4165145600.0,
 'rx_bps_L1': 5466754720.0,
 'rx_pps': 8135057.0,
 'rx_util': 13.6668868,
 'tx_bps': 15100334080.0,
 'tx_bps_L1': 19819189120.0,
 'tx_pps': 29492844.0,
 'tx_util': 49.547972800000004}
18/03/2021 16:34:15                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15100334080.000000, tx_pps: 29492844.000000 
18/03/2021 16:34:15                         pktgen: {'ibytes': 10402382848,
 'ierrors': 0,
 'ipackets': 162537251,
 'obytes': 37766023360,
 'oerrors': 0,
 'opackets': 590094149,
 'rx_bps': 4165145600.0,
 'rx_bps_L1': 5466754720.0,
 'rx_pps': 8135057.0,
 'rx_util': 13.6668868,
 'tx_bps': 15100334080.0,
 'tx_bps_L1': 19819189120.0,
 'tx_pps': 29492844.0,
 'tx_util': 49.547972800000004}
18/03/2021 16:34:15                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4165145600.000000, rx_pps: 8135057.000000
18/03/2021 16:34:15                         pktgen: throughput: pps_rx 8135057.000000, bps_rx 4165145600.000000
18/03/2021 16:34:15                         pktgen: traffic completed. 
18/03/2021 16:34:15                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:34:15                         tester: /tmp/vhost_cbdma
18/03/2021 16:34:15                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:34:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:34:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:34:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:34:17                         pktgen: trex port <0> not support flow control
18/03/2021 16:34:17                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:34:17                         pktgen: check the trex port link status
18/03/2021 16:34:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:34:17                         pktgen: begin traffic ......
18/03/2021 16:34:17                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:34:22                         pktgen: traffic completed. 
18/03/2021 16:34:22                         pktgen: check the trex port link status
18/03/2021 16:34:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:34:22                         pktgen: begin traffic ......
18/03/2021 16:34:22                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:34:42                         pktgen: begin get port statistic ...
18/03/2021 16:34:42                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:34:42                         pktgen: {0: {'ibytes': 91826087892,
     'ierrors': 0,
     'ipackets': 60491497,
     'obytes': 98797293408,
     'oerrors': 0,
     'opackets': 65083860,
     'rx_bps': 36588593152.0,
     'rx_bps_L1': 37070656432.0,
     'rx_pps': 3012895.5,
     'rx_util': 92.67664108,
     'tx_bps': 39367426048.0,
     'tx_bps_L1': 39886101008.0,
     'tx_pps': 3241718.5,
     'tx_util': 99.71525251999999},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.196950912475586,
            'cpu_util': 84.85474395751953,
            'cpu_util_raw': 84.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56700907,
            'rx_bps': 36588593152.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3012895.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39367426048.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3241718.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 91826087892,
           'ierrors': 0,
           'ipackets': 60491497,
           'obytes': 98797293408,
           'oerrors': 0,
           'opackets': 65083860,
           'rx_bps': 36588593152.0,
           'rx_bps_L1': 37070656432.0,
           'rx_pps': 3012895.5,
           'rx_util': 92.67664108,
           'tx_bps': 39367426048.0,
           'tx_bps_L1': 39886101008.0,
           'tx_pps': 3241718.5,
           'tx_util': 99.71525251999999}}
18/03/2021 16:34:42                         pktgen: {'ibytes': 91826087892,
 'ierrors': 0,
 'ipackets': 60491497,
 'obytes': 98797293408,
 'oerrors': 0,
 'opackets': 65083860,
 'rx_bps': 36588593152.0,
 'rx_bps_L1': 37070656432.0,
 'rx_pps': 3012895.5,
 'rx_util': 92.67664108,
 'tx_bps': 39367426048.0,
 'tx_bps_L1': 39886101008.0,
 'tx_pps': 3241718.5,
 'tx_util': 99.71525251999999}
18/03/2021 16:34:42                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39367426048.000000, tx_pps: 3241718.500000 
18/03/2021 16:34:42                         pktgen: {'ibytes': 91826087892,
 'ierrors': 0,
 'ipackets': 60491497,
 'obytes': 98797293408,
 'oerrors': 0,
 'opackets': 65083860,
 'rx_bps': 36588593152.0,
 'rx_bps_L1': 37070656432.0,
 'rx_pps': 3012895.5,
 'rx_util': 92.67664108,
 'tx_bps': 39367426048.0,
 'tx_bps_L1': 39886101008.0,
 'tx_pps': 3241718.5,
 'tx_util': 99.71525251999999}
18/03/2021 16:34:42                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 36588593152.000000, rx_pps: 3012895.500000
18/03/2021 16:34:42                         pktgen: throughput: pps_rx 3012895.500000, bps_rx 36588593152.000000
18/03/2021 16:34:42                         pktgen: traffic completed. 
18/03/2021 16:34:56                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:34:56                         tester: /tmp/vhost_cbdma
18/03/2021 16:34:56                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:34:58                         pktgen: test port 0 map gen port 0
18/03/2021 16:34:58                         pktgen: test port 0 map gen port 0
18/03/2021 16:34:58                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:34:58                         pktgen: trex port <0> not support flow control
18/03/2021 16:34:58                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:34:58                         pktgen: check the trex port link status
18/03/2021 16:34:58                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:34:58                         pktgen: begin traffic ......
18/03/2021 16:34:58                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:35:03                         pktgen: traffic completed. 
18/03/2021 16:35:03                         pktgen: check the trex port link status
18/03/2021 16:35:03                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:35:03                         pktgen: begin traffic ......
18/03/2021 16:35:03                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:35:23                         pktgen: begin get port statistic ...
18/03/2021 16:35:23                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:35:23                         pktgen: {0: {'ibytes': 9464168832,
     'ierrors': 0,
     'ipackets': 147877659,
     'obytes': 37551222592,
     'oerrors': 0,
     'opackets': 586737883,
     'rx_bps': 3831008768.0,
     'rx_bps_L1': 5028200128.0,
     'rx_pps': 7482446.0,
     'rx_util': 12.57050032,
     'tx_bps': 14893887488.0,
     'tx_bps_L1': 19548226048.0,
     'tx_pps': 29089616.0,
     'tx_util': 48.870565119999995},
 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': 7.454379081726074,
            'cpu_util': 99.90025329589844,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3831008768.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11062879232.0,
            'rx_pps': 7482446.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 14893887488.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29089616.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9464168832,
           'ierrors': 0,
           'ipackets': 147877659,
           'obytes': 37551222592,
           'oerrors': 0,
           'opackets': 586737883,
           'rx_bps': 3831008768.0,
           'rx_bps_L1': 5028200128.0,
           'rx_pps': 7482446.0,
           'rx_util': 12.57050032,
           'tx_bps': 14893887488.0,
           'tx_bps_L1': 19548226048.0,
           'tx_pps': 29089616.0,
           'tx_util': 48.870565119999995}}
18/03/2021 16:35:23                         pktgen: {'ibytes': 9464168832,
 'ierrors': 0,
 'ipackets': 147877659,
 'obytes': 37551222592,
 'oerrors': 0,
 'opackets': 586737883,
 'rx_bps': 3831008768.0,
 'rx_bps_L1': 5028200128.0,
 'rx_pps': 7482446.0,
 'rx_util': 12.57050032,
 'tx_bps': 14893887488.0,
 'tx_bps_L1': 19548226048.0,
 'tx_pps': 29089616.0,
 'tx_util': 48.870565119999995}
18/03/2021 16:35:23                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 14893887488.000000, tx_pps: 29089616.000000 
18/03/2021 16:35:23                         pktgen: {'ibytes': 9464168832,
 'ierrors': 0,
 'ipackets': 147877659,
 'obytes': 37551222592,
 'oerrors': 0,
 'opackets': 586737883,
 'rx_bps': 3831008768.0,
 'rx_bps_L1': 5028200128.0,
 'rx_pps': 7482446.0,
 'rx_util': 12.57050032,
 'tx_bps': 14893887488.0,
 'tx_bps_L1': 19548226048.0,
 'tx_pps': 29089616.0,
 'tx_util': 48.870565119999995}
18/03/2021 16:35:23                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3831008768.000000, rx_pps: 7482446.000000
18/03/2021 16:35:23                         pktgen: throughput: pps_rx 7482446.000000, bps_rx 3831008768.000000
18/03/2021 16:35:23                         pktgen: traffic completed. 
18/03/2021 16:35:23                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:35:23                         tester: /tmp/vhost_cbdma
18/03/2021 16:35:23                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:35:25                         pktgen: test port 0 map gen port 0
18/03/2021 16:35:25                         pktgen: test port 0 map gen port 0
18/03/2021 16:35:25                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:35:25                         pktgen: trex port <0> not support flow control
18/03/2021 16:35:25                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:35:25                         pktgen: check the trex port link status
18/03/2021 16:35:25                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:35:25                         pktgen: begin traffic ......
18/03/2021 16:35:25                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:35:30                         pktgen: traffic completed. 
18/03/2021 16:35:30                         pktgen: check the trex port link status
18/03/2021 16:35:30                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:35:30                         pktgen: begin traffic ......
18/03/2021 16:35:30                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:35:50                         pktgen: begin get port statistic ...
18/03/2021 16:35:50                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:35:50                         pktgen: {0: {'ibytes': 83459483646,
     'ierrors': 0,
     'ipackets': 54979900,
     'obytes': 98800827312,
     'oerrors': 0,
     'opackets': 65086187,
     'rx_bps': 33343393792.0,
     'rx_bps_L1': 33782700712.0,
     'rx_pps': 2745668.25,
     'rx_util': 84.45675177999999,
     'tx_bps': 39502999552.0,
     'tx_bps_L1': 40023460752.0,
     'tx_pps': 3252882.5,
     'tx_util': 100.05865188},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.122289657592773,
            'cpu_util': 85.42190551757812,
            'cpu_util_raw': 86.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56537138,
            'rx_bps': 33343393792.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 6159605248.0,
            'rx_pps': 2745668.25,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39502999552.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3252882.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 83459483646,
           'ierrors': 0,
           'ipackets': 54979900,
           'obytes': 98800827312,
           'oerrors': 0,
           'opackets': 65086187,
           'rx_bps': 33343393792.0,
           'rx_bps_L1': 33782700712.0,
           'rx_pps': 2745668.25,
           'rx_util': 84.45675177999999,
           'tx_bps': 39502999552.0,
           'tx_bps_L1': 40023460752.0,
           'tx_pps': 3252882.5,
           'tx_util': 100.05865188}}
18/03/2021 16:35:50                         pktgen: {'ibytes': 83459483646,
 'ierrors': 0,
 'ipackets': 54979900,
 'obytes': 98800827312,
 'oerrors': 0,
 'opackets': 65086187,
 'rx_bps': 33343393792.0,
 'rx_bps_L1': 33782700712.0,
 'rx_pps': 2745668.25,
 'rx_util': 84.45675177999999,
 'tx_bps': 39502999552.0,
 'tx_bps_L1': 40023460752.0,
 'tx_pps': 3252882.5,
 'tx_util': 100.05865188}
18/03/2021 16:35:50                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39502999552.000000, tx_pps: 3252882.500000 
18/03/2021 16:35:50                         pktgen: {'ibytes': 83459483646,
 'ierrors': 0,
 'ipackets': 54979900,
 'obytes': 98800827312,
 'oerrors': 0,
 'opackets': 65086187,
 'rx_bps': 33343393792.0,
 'rx_bps_L1': 33782700712.0,
 'rx_pps': 2745668.25,
 'rx_util': 84.45675177999999,
 'tx_bps': 39502999552.0,
 'tx_bps_L1': 40023460752.0,
 'tx_pps': 3252882.5,
 'tx_util': 100.05865188}
18/03/2021 16:35:50                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 33343393792.000000, rx_pps: 2745668.250000
18/03/2021 16:35:50                         pktgen: throughput: pps_rx 2745668.250000, bps_rx 33343393792.000000
18/03/2021 16:35:50                         pktgen: traffic completed. 
18/03/2021 16:35:52           TestVirTioVhostCbdma: 
+-------+-----------------------------------------------+-------+------------+
| Frame |                 Mode/RXD-TXD                  | Mpps  | % linerate |
+=======+===============================================+=======+============+
| 64    | dynamic_queue2                                | 7.574 | 12.724     |
+-------+-----------------------------------------------+-------+------------+
| 1518  | dynamic_queue2                                | 2.747 | 84.507     |
+-------+-----------------------------------------------+-------+------------+
| 64    | virtio_user_dynamic_queue2_change_to_1        | 6.467 | 10.864     |
+-------+-----------------------------------------------+-------+------------+
| 1518  | virtio_user_dynamic_queue2_change_to_1        | 1.622 | 49.887     |
+-------+-----------------------------------------------+-------+------------+
| 64    | Relaunch_dynamic_queue2                       | 7.640 | 12.836     |
+-------+-----------------------------------------------+-------+------------+
| 1518  | Relaunch_dynamic_queue2                       | 2.679 | 82.414     |
+-------+-----------------------------------------------+-------+------------+
| 64    | vhost_userRelaunch_dynamic_queue2_change_to_1 | 8.135 | 13.667     |
+-------+-----------------------------------------------+-------+------------+
| 1518  | vhost_userRelaunch_dynamic_queue2_change_to_1 | 3.013 | 92.677     |
+-------+-----------------------------------------------+-------+------------+
| 64    | Relaunch_vhost_2_cbdma                        | 7.482 | 12.571     |
+-------+-----------------------------------------------+-------+------------+
| 1518  | Relaunch_vhost_2_cbdma                        | 2.746 | 84.457     |
+-------+-----------------------------------------------+-------+------------+
18/03/2021 16:35:52           TestVirTioVhostCbdma: 
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| Frame |                 Mode/RXD-TXD                  |    Mpps    | % linerate | nb_desc | Expected Throughput | Throughput Difference |
+=======+===============================================+============+============+=========+=====================+=======================+
| 64    | dynamic_queue2                                | 7.574 Mpps | 12.724%    | 1024    | 0.000 Mpps          | 7.574 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | dynamic_queue2                                | 2.747 Mpps | 84.507%    | 1024    | 0.000 Mpps          | 2.747 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | virtio_user_dynamic_queue2_change_to_1        | 6.467 Mpps | 10.864%    | 1024    | 0.000 Mpps          | 6.467 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | virtio_user_dynamic_queue2_change_to_1        | 1.622 Mpps | 49.887%    | 1024    | 0.000 Mpps          | 1.622 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | Relaunch_dynamic_queue2                       | 7.640 Mpps | 12.836%    | 1024    | 0.000 Mpps          | 7.640 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | Relaunch_dynamic_queue2                       | 2.679 Mpps | 82.414%    | 1024    | 0.000 Mpps          | 2.679 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | vhost_userRelaunch_dynamic_queue2_change_to_1 | 8.135 Mpps | 13.667%    | 1024    | 0.000 Mpps          | 8.135 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | vhost_userRelaunch_dynamic_queue2_change_to_1 | 3.013 Mpps | 92.677%    | 1024    | 0.000 Mpps          | 3.013 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | Relaunch_vhost_2_cbdma                        | 7.482 Mpps | 12.571%    | 1024    | 0.000 Mpps          | 7.482 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | Relaunch_vhost_2_cbdma                        | 2.746 Mpps | 84.457%    | 1024    | 0.000 Mpps          | 2.746 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.574000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 2.747000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 6.467000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 1.622000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.640000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 2.679000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 8.135000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.013000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.482000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 2.746000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Test Case test_perf_dynamic_queue_number_cbdma_vhost_enqueue_operations Result PASSED:
18/03/2021 16:35:52             dut.10.240.183.220: killall -I dpdk-testpmd 
18/03/2021 16:35:52             dut.10.240.183.220: dpdk-testpmd: no process found
18/03/2021 16:35:52             dut.10.240.183.220: modprobe ioatdma
18/03/2021 16:35:52             dut.10.240.183.220: 
18/03/2021 16:35:52             dut.10.240.183.220: ./usertools/dpdk-devbind.py -u 0000:80:04.0 0000:80:04.1 0000:80:04.2 0000:80:04.3
18/03/2021 16:35:53             dut.10.240.183.220: 
18/03/2021 16:35:53             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=ioatdma  0000:80:04.0 0000:80:04.1 0000:80:04.2 0000:80:04.3
18/03/2021 16:35:53             dut.10.240.183.220: 
18/03/2021 16:35:53           TestVirTioVhostCbdma: Test Case test_perf_pvp_spilt_all_path_with_cbdma_vhost_enqueue_operations Begin
18/03/2021 16:35:53             dut.10.240.183.220: 
18/03/2021 16:35:53                         tester: 
18/03/2021 16:35:53             dut.10.240.183.220: killall -I dpdk-testpmd 
18/03/2021 16:35:53             dut.10.240.183.220: dpdk-testpmd: no process found
18/03/2021 16:35:53             dut.10.240.183.220: rm -rf /root/dpdk/vhost-net*
18/03/2021 16:35:54             dut.10.240.183.220: 
18/03/2021 16:35:54             dut.10.240.183.220: rm -rf /tmp/s0
18/03/2021 16:35:54             dut.10.240.183.220: 
18/03/2021 16:35:54             dut.10.240.183.220: ./usertools/dpdk-devbind.py --status-dev misc
18/03/2021 16:35:54             dut.10.240.183.220: 
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.0 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.1 '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 
18/03/2021 16:35:54             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=igb_uio 0000:80:04.0
18/03/2021 16:35:54             dut.10.240.183.220: 
18/03/2021 16:36:05             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:36:05             dut.10.240.183.220: 1048576
18/03/2021 16:36:16                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:36:17                         tester: /tmp/vhost_cbdma
18/03/2021 16:36:17                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:36:19                         pktgen: test port 0 map gen port 0
18/03/2021 16:36:19                         pktgen: test port 0 map gen port 0
18/03/2021 16:36:19                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:36:19                         pktgen: trex port <0> not support flow control
18/03/2021 16:36:19                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:36:19                         pktgen: check the trex port link status
18/03/2021 16:36:19                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:36:19                         pktgen: begin traffic ......
18/03/2021 16:36:19                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:36:24                         pktgen: traffic completed. 
18/03/2021 16:36:24                         pktgen: check the trex port link status
18/03/2021 16:36:24                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:36:24                         pktgen: begin traffic ......
18/03/2021 16:36:24                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:36:44                         pktgen: begin get port statistic ...
18/03/2021 16:36:44                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:36:44                         pktgen: {0: {'ibytes': 9751176192,
     'ierrors': 0,
     'ipackets': 152362128,
     'obytes': 37868070592,
     'oerrors': 0,
     'opackets': 591688614,
     'rx_bps': 3903111936.0,
     'rx_bps_L1': 5122834816.0,
     'rx_pps': 7623268.0,
     'rx_util': 12.80708704,
     'tx_bps': 15082984448.0,
     'tx_bps_L1': 19796417088.0,
     'tx_pps': 29458954.0,
     'tx_util': 49.49104272},
 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': 7.549833297729492,
            'cpu_util': 99.88951873779297,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3903111936.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11179872256.0,
            'rx_pps': 7623268.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15082984448.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29458954.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9751176192,
           'ierrors': 0,
           'ipackets': 152362128,
           'obytes': 37868070592,
           'oerrors': 0,
           'opackets': 591688614,
           'rx_bps': 3903111936.0,
           'rx_bps_L1': 5122834816.0,
           'rx_pps': 7623268.0,
           'rx_util': 12.80708704,
           'tx_bps': 15082984448.0,
           'tx_bps_L1': 19796417088.0,
           'tx_pps': 29458954.0,
           'tx_util': 49.49104272}}
18/03/2021 16:36:44                         pktgen: {'ibytes': 9751176192,
 'ierrors': 0,
 'ipackets': 152362128,
 'obytes': 37868070592,
 'oerrors': 0,
 'opackets': 591688614,
 'rx_bps': 3903111936.0,
 'rx_bps_L1': 5122834816.0,
 'rx_pps': 7623268.0,
 'rx_util': 12.80708704,
 'tx_bps': 15082984448.0,
 'tx_bps_L1': 19796417088.0,
 'tx_pps': 29458954.0,
 'tx_util': 49.49104272}
18/03/2021 16:36:44                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15082984448.000000, tx_pps: 29458954.000000 
18/03/2021 16:36:44                         pktgen: {'ibytes': 9751176192,
 'ierrors': 0,
 'ipackets': 152362128,
 'obytes': 37868070592,
 'oerrors': 0,
 'opackets': 591688614,
 'rx_bps': 3903111936.0,
 'rx_bps_L1': 5122834816.0,
 'rx_pps': 7623268.0,
 'rx_util': 12.80708704,
 'tx_bps': 15082984448.0,
 'tx_bps_L1': 19796417088.0,
 'tx_pps': 29458954.0,
 'tx_util': 49.49104272}
18/03/2021 16:36:44                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3903111936.000000, rx_pps: 7623268.000000
18/03/2021 16:36:44                         pktgen: throughput: pps_rx 7623268.000000, bps_rx 3903111936.000000
18/03/2021 16:36:44                         pktgen: traffic completed. 
18/03/2021 16:36:44                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:36:44                         tester: /tmp/vhost_cbdma
18/03/2021 16:36:44                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:36:46                         pktgen: test port 0 map gen port 0
18/03/2021 16:36:46                         pktgen: test port 0 map gen port 0
18/03/2021 16:36:46                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:36:46                         pktgen: trex port <0> not support flow control
18/03/2021 16:36:46                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:36:46                         pktgen: check the trex port link status
18/03/2021 16:36:46                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:36:46                         pktgen: begin traffic ......
18/03/2021 16:36:46                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:36:51                         pktgen: traffic completed. 
18/03/2021 16:36:51                         pktgen: check the trex port link status
18/03/2021 16:36:51                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:36:51                         pktgen: begin traffic ......
18/03/2021 16:36:51                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:37:11                         pktgen: begin get port statistic ...
18/03/2021 16:37:11                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:37:11                         pktgen: {0: {'ibytes': 98802720258,
     'ierrors': 0,
     'ipackets': 65087435,
     'obytes': 98802736956,
     'oerrors': 0,
     'opackets': 65087446,
     'rx_bps': 39390736384.0,
     'rx_bps_L1': 39909718464.0,
     'rx_pps': 3243638.0,
     'rx_util': 99.77429615999999,
     'tx_bps': 39390777344.0,
     'tx_bps_L1': 39909759864.0,
     'tx_pps': 3243640.75,
     'tx_util': 99.77439966},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.150121688842773,
            'cpu_util': 85.07682800292969,
            'cpu_util_raw': 85.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56718843,
            'rx_bps': 39390736384.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243638.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39390777344.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243640.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98802720258,
           'ierrors': 0,
           'ipackets': 65087435,
           'obytes': 98802736956,
           'oerrors': 0,
           'opackets': 65087446,
           'rx_bps': 39390736384.0,
           'rx_bps_L1': 39909718464.0,
           'rx_pps': 3243638.0,
           'rx_util': 99.77429615999999,
           'tx_bps': 39390777344.0,
           'tx_bps_L1': 39909759864.0,
           'tx_pps': 3243640.75,
           'tx_util': 99.77439966}}
18/03/2021 16:37:11                         pktgen: {'ibytes': 98802720258,
 'ierrors': 0,
 'ipackets': 65087435,
 'obytes': 98802736956,
 'oerrors': 0,
 'opackets': 65087446,
 'rx_bps': 39390736384.0,
 'rx_bps_L1': 39909718464.0,
 'rx_pps': 3243638.0,
 'rx_util': 99.77429615999999,
 'tx_bps': 39390777344.0,
 'tx_bps_L1': 39909759864.0,
 'tx_pps': 3243640.75,
 'tx_util': 99.77439966}
18/03/2021 16:37:11                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39390777344.000000, tx_pps: 3243640.750000 
18/03/2021 16:37:11                         pktgen: {'ibytes': 98802720258,
 'ierrors': 0,
 'ipackets': 65087435,
 'obytes': 98802736956,
 'oerrors': 0,
 'opackets': 65087446,
 'rx_bps': 39390736384.0,
 'rx_bps_L1': 39909718464.0,
 'rx_pps': 3243638.0,
 'rx_util': 99.77429615999999,
 'tx_bps': 39390777344.0,
 'tx_bps_L1': 39909759864.0,
 'tx_pps': 3243640.75,
 'tx_util': 99.77439966}
18/03/2021 16:37:11                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39390736384.000000, rx_pps: 3243638.000000
18/03/2021 16:37:11                         pktgen: throughput: pps_rx 3243638.000000, bps_rx 39390736384.000000
18/03/2021 16:37:11                         pktgen: traffic completed. 
18/03/2021 16:37:11                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:37:11                         tester: /tmp/vhost_cbdma
18/03/2021 16:37:11                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:37:13                         pktgen: test port 0 map gen port 0
18/03/2021 16:37:13                         pktgen: test port 0 map gen port 0
18/03/2021 16:37:13                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:37:13                         pktgen: trex port <0> not support flow control
18/03/2021 16:37:13                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:37:13                         pktgen: check the trex port link status
18/03/2021 16:37:13                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:37:13                         pktgen: begin traffic ......
18/03/2021 16:37:13                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:37:18                         pktgen: traffic completed. 
18/03/2021 16:37:18                         pktgen: check the trex port link status
18/03/2021 16:37:18                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:37:18                         pktgen: begin traffic ......
18/03/2021 16:37:18                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:37:38                         pktgen: begin get port statistic ...
18/03/2021 16:37:38                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:37:38                         pktgen: {0: {'ibytes': 9804894336,
     'ierrors': 0,
     'ipackets': 153201501,
     'obytes': 37644122240,
     'oerrors': 0,
     'opackets': 588189423,
     'rx_bps': 3924344832.0,
     'rx_bps_L1': 5150701312.0,
     'rx_pps': 7664728.0,
     'rx_util': 12.87675328,
     'tx_bps': 15069239296.0,
     'tx_bps_L1': 19778373696.0,
     'tx_pps': 29432090.0,
     'tx_util': 49.44593424},
 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': 7.539594650268555,
            'cpu_util': 99.93401336669922,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3924344832.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11144894464.0,
            'rx_pps': 7664728.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15069239296.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29432090.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9804894336,
           'ierrors': 0,
           'ipackets': 153201501,
           'obytes': 37644122240,
           'oerrors': 0,
           'opackets': 588189423,
           'rx_bps': 3924344832.0,
           'rx_bps_L1': 5150701312.0,
           'rx_pps': 7664728.0,
           'rx_util': 12.87675328,
           'tx_bps': 15069239296.0,
           'tx_bps_L1': 19778373696.0,
           'tx_pps': 29432090.0,
           'tx_util': 49.44593424}}
18/03/2021 16:37:38                         pktgen: {'ibytes': 9804894336,
 'ierrors': 0,
 'ipackets': 153201501,
 'obytes': 37644122240,
 'oerrors': 0,
 'opackets': 588189423,
 'rx_bps': 3924344832.0,
 'rx_bps_L1': 5150701312.0,
 'rx_pps': 7664728.0,
 'rx_util': 12.87675328,
 'tx_bps': 15069239296.0,
 'tx_bps_L1': 19778373696.0,
 'tx_pps': 29432090.0,
 'tx_util': 49.44593424}
18/03/2021 16:37:38                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15069239296.000000, tx_pps: 29432090.000000 
18/03/2021 16:37:38                         pktgen: {'ibytes': 9804894336,
 'ierrors': 0,
 'ipackets': 153201501,
 'obytes': 37644122240,
 'oerrors': 0,
 'opackets': 588189423,
 'rx_bps': 3924344832.0,
 'rx_bps_L1': 5150701312.0,
 'rx_pps': 7664728.0,
 'rx_util': 12.87675328,
 'tx_bps': 15069239296.0,
 'tx_bps_L1': 19778373696.0,
 'tx_pps': 29432090.0,
 'tx_util': 49.44593424}
18/03/2021 16:37:38                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3924344832.000000, rx_pps: 7664728.000000
18/03/2021 16:37:38                         pktgen: throughput: pps_rx 7664728.000000, bps_rx 3924344832.000000
18/03/2021 16:37:38                         pktgen: traffic completed. 
18/03/2021 16:37:38                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:37:39                         tester: /tmp/vhost_cbdma
18/03/2021 16:37:39                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:37:41                         pktgen: test port 0 map gen port 0
18/03/2021 16:37:41                         pktgen: test port 0 map gen port 0
18/03/2021 16:37:41                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:37:41                         pktgen: trex port <0> not support flow control
18/03/2021 16:37:41                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:37:41                         pktgen: check the trex port link status
18/03/2021 16:37:41                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:37:41                         pktgen: begin traffic ......
18/03/2021 16:37:41                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:37:46                         pktgen: traffic completed. 
18/03/2021 16:37:46                         pktgen: check the trex port link status
18/03/2021 16:37:46                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:37:46                         pktgen: begin traffic ......
18/03/2021 16:37:46                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:38:06                         pktgen: begin get port statistic ...
18/03/2021 16:38:06                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:38:06                         pktgen: {0: {'ibytes': 98798047854,
     'ierrors': 0,
     'ipackets': 65084356,
     'obytes': 98798034192,
     'oerrors': 0,
     'opackets': 65084346,
     'rx_bps': 39391207424.0,
     'rx_bps_L1': 39910195664.0,
     'rx_pps': 3243676.5,
     'rx_util': 99.77548915999999,
     'tx_bps': 39391227904.0,
     'tx_bps_L1': 39910216344.0,
     'tx_pps': 3243677.75,
     'tx_util': 99.77554086},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.116138458251953,
            'cpu_util': 85.20287322998047,
            'cpu_util_raw': 84.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56591397,
            'rx_bps': 39391207424.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243676.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39391227904.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243677.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98798047854,
           'ierrors': 0,
           'ipackets': 65084356,
           'obytes': 98798034192,
           'oerrors': 0,
           'opackets': 65084346,
           'rx_bps': 39391207424.0,
           'rx_bps_L1': 39910195664.0,
           'rx_pps': 3243676.5,
           'rx_util': 99.77548915999999,
           'tx_bps': 39391227904.0,
           'tx_bps_L1': 39910216344.0,
           'tx_pps': 3243677.75,
           'tx_util': 99.77554086}}
18/03/2021 16:38:06                         pktgen: {'ibytes': 98798047854,
 'ierrors': 0,
 'ipackets': 65084356,
 'obytes': 98798034192,
 'oerrors': 0,
 'opackets': 65084346,
 'rx_bps': 39391207424.0,
 'rx_bps_L1': 39910195664.0,
 'rx_pps': 3243676.5,
 'rx_util': 99.77548915999999,
 'tx_bps': 39391227904.0,
 'tx_bps_L1': 39910216344.0,
 'tx_pps': 3243677.75,
 'tx_util': 99.77554086}
18/03/2021 16:38:06                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39391227904.000000, tx_pps: 3243677.750000 
18/03/2021 16:38:06                         pktgen: {'ibytes': 98798047854,
 'ierrors': 0,
 'ipackets': 65084356,
 'obytes': 98798034192,
 'oerrors': 0,
 'opackets': 65084346,
 'rx_bps': 39391207424.0,
 'rx_bps_L1': 39910195664.0,
 'rx_pps': 3243676.5,
 'rx_util': 99.77548915999999,
 'tx_bps': 39391227904.0,
 'tx_bps_L1': 39910216344.0,
 'tx_pps': 3243677.75,
 'tx_util': 99.77554086}
18/03/2021 16:38:06                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39391207424.000000, rx_pps: 3243676.500000
18/03/2021 16:38:06                         pktgen: throughput: pps_rx 3243676.500000, bps_rx 39391207424.000000
18/03/2021 16:38:06                         pktgen: traffic completed. 
18/03/2021 16:38:09             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:38:09             dut.10.240.183.220: 1048576
18/03/2021 16:38:21                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:38:21                         tester: /tmp/vhost_cbdma
18/03/2021 16:38:21                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:38:23                         pktgen: test port 0 map gen port 0
18/03/2021 16:38:23                         pktgen: test port 0 map gen port 0
18/03/2021 16:38:23                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:38:23                         pktgen: trex port <0> not support flow control
18/03/2021 16:38:23                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:38:23                         pktgen: check the trex port link status
18/03/2021 16:38:23                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:38:23                         pktgen: begin traffic ......
18/03/2021 16:38:23                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:38:28                         pktgen: traffic completed. 
18/03/2021 16:38:28                         pktgen: check the trex port link status
18/03/2021 16:38:28                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:38:28                         pktgen: begin traffic ......
18/03/2021 16:38:28                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:38:48                         pktgen: begin get port statistic ...
18/03/2021 16:38:48                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:38:48                         pktgen: {0: {'ibytes': 9667923456,
     'ierrors': 0,
     'ipackets': 151061304,
     'obytes': 37551756224,
     'oerrors': 0,
     'opackets': 586746223,
     'rx_bps': 3868271360.0,
     'rx_bps_L1': 5077104960.0,
     'rx_pps': 7555210.0,
     'rx_util': 12.6927624,
     'tx_bps': 14987688960.0,
     'tx_bps_L1': 19671340800.0,
     'tx_pps': 29272824.0,
     'tx_util': 49.178352},
 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': 7.500730514526367,
            'cpu_util': 99.90819549560547,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3868271360.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11119418368.0,
            'rx_pps': 7555210.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 14987688960.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29272824.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9667923456,
           'ierrors': 0,
           'ipackets': 151061304,
           'obytes': 37551756224,
           'oerrors': 0,
           'opackets': 586746223,
           'rx_bps': 3868271360.0,
           'rx_bps_L1': 5077104960.0,
           'rx_pps': 7555210.0,
           'rx_util': 12.6927624,
           'tx_bps': 14987688960.0,
           'tx_bps_L1': 19671340800.0,
           'tx_pps': 29272824.0,
           'tx_util': 49.178352}}
18/03/2021 16:38:48                         pktgen: {'ibytes': 9667923456,
 'ierrors': 0,
 'ipackets': 151061304,
 'obytes': 37551756224,
 'oerrors': 0,
 'opackets': 586746223,
 'rx_bps': 3868271360.0,
 'rx_bps_L1': 5077104960.0,
 'rx_pps': 7555210.0,
 'rx_util': 12.6927624,
 'tx_bps': 14987688960.0,
 'tx_bps_L1': 19671340800.0,
 'tx_pps': 29272824.0,
 'tx_util': 49.178352}
18/03/2021 16:38:48                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 14987688960.000000, tx_pps: 29272824.000000 
18/03/2021 16:38:48                         pktgen: {'ibytes': 9667923456,
 'ierrors': 0,
 'ipackets': 151061304,
 'obytes': 37551756224,
 'oerrors': 0,
 'opackets': 586746223,
 'rx_bps': 3868271360.0,
 'rx_bps_L1': 5077104960.0,
 'rx_pps': 7555210.0,
 'rx_util': 12.6927624,
 'tx_bps': 14987688960.0,
 'tx_bps_L1': 19671340800.0,
 'tx_pps': 29272824.0,
 'tx_util': 49.178352}
18/03/2021 16:38:48                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3868271360.000000, rx_pps: 7555210.000000
18/03/2021 16:38:48                         pktgen: throughput: pps_rx 7555210.000000, bps_rx 3868271360.000000
18/03/2021 16:38:48                         pktgen: traffic completed. 
18/03/2021 16:38:48                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:38:48                         tester: /tmp/vhost_cbdma
18/03/2021 16:38:48                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:38:50                         pktgen: test port 0 map gen port 0
18/03/2021 16:38:50                         pktgen: test port 0 map gen port 0
18/03/2021 16:38:50                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:38:50                         pktgen: trex port <0> not support flow control
18/03/2021 16:38:50                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:38:50                         pktgen: check the trex port link status
18/03/2021 16:38:50                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:38:50                         pktgen: begin traffic ......
18/03/2021 16:38:50                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:38:55                         pktgen: traffic completed. 
18/03/2021 16:38:55                         pktgen: check the trex port link status
18/03/2021 16:38:55                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:38:55                         pktgen: begin traffic ......
18/03/2021 16:38:55                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:39:15                         pktgen: begin get port statistic ...
18/03/2021 16:39:15                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:39:15                         pktgen: {0: {'ibytes': 98797674426,
     'ierrors': 0,
     'ipackets': 65084110,
     'obytes': 98797650138,
     'oerrors': 0,
     'opackets': 65084093,
     'rx_bps': 39562100736.0,
     'rx_bps_L1': 40083340536.0,
     'rx_pps': 3257748.75,
     'rx_util': 100.20835134,
     'tx_bps': 39562084352.0,
     'tx_bps_L1': 40083324072.0,
     'tx_pps': 3257748.25,
     'tx_util': 100.20831018},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.371158599853516,
            'cpu_util': 84.63868713378906,
            'cpu_util_raw': 84.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56437603,
            'rx_bps': 39562100736.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3257748.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39562084352.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3257748.25},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98797674426,
           'ierrors': 0,
           'ipackets': 65084110,
           'obytes': 98797650138,
           'oerrors': 0,
           'opackets': 65084093,
           'rx_bps': 39562100736.0,
           'rx_bps_L1': 40083340536.0,
           'rx_pps': 3257748.75,
           'rx_util': 100.20835134,
           'tx_bps': 39562084352.0,
           'tx_bps_L1': 40083324072.0,
           'tx_pps': 3257748.25,
           'tx_util': 100.20831018}}
18/03/2021 16:39:15                         pktgen: {'ibytes': 98797674426,
 'ierrors': 0,
 'ipackets': 65084110,
 'obytes': 98797650138,
 'oerrors': 0,
 'opackets': 65084093,
 'rx_bps': 39562100736.0,
 'rx_bps_L1': 40083340536.0,
 'rx_pps': 3257748.75,
 'rx_util': 100.20835134,
 'tx_bps': 39562084352.0,
 'tx_bps_L1': 40083324072.0,
 'tx_pps': 3257748.25,
 'tx_util': 100.20831018}
18/03/2021 16:39:15                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39562084352.000000, tx_pps: 3257748.250000 
18/03/2021 16:39:15                         pktgen: {'ibytes': 98797674426,
 'ierrors': 0,
 'ipackets': 65084110,
 'obytes': 98797650138,
 'oerrors': 0,
 'opackets': 65084093,
 'rx_bps': 39562100736.0,
 'rx_bps_L1': 40083340536.0,
 'rx_pps': 3257748.75,
 'rx_util': 100.20835134,
 'tx_bps': 39562084352.0,
 'tx_bps_L1': 40083324072.0,
 'tx_pps': 3257748.25,
 'tx_util': 100.20831018}
18/03/2021 16:39:15                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39562100736.000000, rx_pps: 3257748.750000
18/03/2021 16:39:15                         pktgen: throughput: pps_rx 3257748.750000, bps_rx 39562100736.000000
18/03/2021 16:39:15                         pktgen: traffic completed. 
18/03/2021 16:39:15                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:39:15                         tester: /tmp/vhost_cbdma
18/03/2021 16:39:15                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:39:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:39:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:39:18                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:39:18                         pktgen: trex port <0> not support flow control
18/03/2021 16:39:18                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:39:18                         pktgen: check the trex port link status
18/03/2021 16:39:18                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:39:18                         pktgen: begin traffic ......
18/03/2021 16:39:18                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:39:23                         pktgen: traffic completed. 
18/03/2021 16:39:23                         pktgen: check the trex port link status
18/03/2021 16:39:23                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:39:23                         pktgen: begin traffic ......
18/03/2021 16:39:23                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:39:43                         pktgen: begin get port statistic ...
18/03/2021 16:39:43                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:39:43                         pktgen: {0: {'ibytes': 9671731840,
     'ierrors': 0,
     'ipackets': 151120810,
     'obytes': 37545101440,
     'oerrors': 0,
     'opackets': 586642243,
     'rx_bps': 3873792768.0,
     'rx_bps_L1': 5084351568.0,
     'rx_pps': 7565992.5,
     'rx_util': 12.710878919999999,
     'tx_bps': 15022844928.0,
     'tx_bps_L1': 19717485248.0,
     'tx_pps': 29341502.0,
     'tx_util': 49.29371312},
 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': 7.5156097412109375,
            'cpu_util': 99.94428253173828,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3873792768.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11149051904.0,
            'rx_pps': 7565992.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15022844928.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29341502.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9671731840,
           'ierrors': 0,
           'ipackets': 151120810,
           'obytes': 37545101440,
           'oerrors': 0,
           'opackets': 586642243,
           'rx_bps': 3873792768.0,
           'rx_bps_L1': 5084351568.0,
           'rx_pps': 7565992.5,
           'rx_util': 12.710878919999999,
           'tx_bps': 15022844928.0,
           'tx_bps_L1': 19717485248.0,
           'tx_pps': 29341502.0,
           'tx_util': 49.29371312}}
18/03/2021 16:39:43                         pktgen: {'ibytes': 9671731840,
 'ierrors': 0,
 'ipackets': 151120810,
 'obytes': 37545101440,
 'oerrors': 0,
 'opackets': 586642243,
 'rx_bps': 3873792768.0,
 'rx_bps_L1': 5084351568.0,
 'rx_pps': 7565992.5,
 'rx_util': 12.710878919999999,
 'tx_bps': 15022844928.0,
 'tx_bps_L1': 19717485248.0,
 'tx_pps': 29341502.0,
 'tx_util': 49.29371312}
18/03/2021 16:39:43                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15022844928.000000, tx_pps: 29341502.000000 
18/03/2021 16:39:43                         pktgen: {'ibytes': 9671731840,
 'ierrors': 0,
 'ipackets': 151120810,
 'obytes': 37545101440,
 'oerrors': 0,
 'opackets': 586642243,
 'rx_bps': 3873792768.0,
 'rx_bps_L1': 5084351568.0,
 'rx_pps': 7565992.5,
 'rx_util': 12.710878919999999,
 'tx_bps': 15022844928.0,
 'tx_bps_L1': 19717485248.0,
 'tx_pps': 29341502.0,
 'tx_util': 49.29371312}
18/03/2021 16:39:43                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3873792768.000000, rx_pps: 7565992.500000
18/03/2021 16:39:43                         pktgen: throughput: pps_rx 7565992.500000, bps_rx 3873792768.000000
18/03/2021 16:39:43                         pktgen: traffic completed. 
18/03/2021 16:39:43                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:39:43                         tester: /tmp/vhost_cbdma
18/03/2021 16:39:43                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:39:45                         pktgen: test port 0 map gen port 0
18/03/2021 16:39:45                         pktgen: test port 0 map gen port 0
18/03/2021 16:39:45                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:39:45                         pktgen: trex port <0> not support flow control
18/03/2021 16:39:45                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:39:45                         pktgen: check the trex port link status
18/03/2021 16:39:45                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:39:45                         pktgen: begin traffic ......
18/03/2021 16:39:45                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:39:50                         pktgen: traffic completed. 
18/03/2021 16:39:50                         pktgen: check the trex port link status
18/03/2021 16:39:50                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:39:50                         pktgen: begin traffic ......
18/03/2021 16:39:50                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:40:10                         pktgen: begin get port statistic ...
18/03/2021 16:40:10                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:40:10                         pktgen: {0: {'ibytes': 98803042074,
     'ierrors': 0,
     'ipackets': 65087646,
     'obytes': 98803057254,
     'oerrors': 0,
     'opackets': 65087658,
     'rx_bps': 39388717056.0,
     'rx_bps_L1': 39907672496.0,
     'rx_pps': 3243471.5,
     'rx_util': 99.76918124000001,
     'tx_bps': 39388655616.0,
     'tx_bps_L1': 39907610336.0,
     'tx_pps': 3243467.0,
     'tx_util': 99.76902584},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.17392349243164,
            'cpu_util': 84.98486328125,
            'cpu_util_raw': 85.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56740407,
            'rx_bps': 39388717056.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243471.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39388655616.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243467.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98803042074,
           'ierrors': 0,
           'ipackets': 65087646,
           'obytes': 98803057254,
           'oerrors': 0,
           'opackets': 65087658,
           'rx_bps': 39388717056.0,
           'rx_bps_L1': 39907672496.0,
           'rx_pps': 3243471.5,
           'rx_util': 99.76918124000001,
           'tx_bps': 39388655616.0,
           'tx_bps_L1': 39907610336.0,
           'tx_pps': 3243467.0,
           'tx_util': 99.76902584}}
18/03/2021 16:40:10                         pktgen: {'ibytes': 98803042074,
 'ierrors': 0,
 'ipackets': 65087646,
 'obytes': 98803057254,
 'oerrors': 0,
 'opackets': 65087658,
 'rx_bps': 39388717056.0,
 'rx_bps_L1': 39907672496.0,
 'rx_pps': 3243471.5,
 'rx_util': 99.76918124000001,
 'tx_bps': 39388655616.0,
 'tx_bps_L1': 39907610336.0,
 'tx_pps': 3243467.0,
 'tx_util': 99.76902584}
18/03/2021 16:40:10                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39388655616.000000, tx_pps: 3243467.000000 
18/03/2021 16:40:10                         pktgen: {'ibytes': 98803042074,
 'ierrors': 0,
 'ipackets': 65087646,
 'obytes': 98803057254,
 'oerrors': 0,
 'opackets': 65087658,
 'rx_bps': 39388717056.0,
 'rx_bps_L1': 39907672496.0,
 'rx_pps': 3243471.5,
 'rx_util': 99.76918124000001,
 'tx_bps': 39388655616.0,
 'tx_bps_L1': 39907610336.0,
 'tx_pps': 3243467.0,
 'tx_util': 99.76902584}
18/03/2021 16:40:10                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39388717056.000000, rx_pps: 3243471.500000
18/03/2021 16:40:10                         pktgen: throughput: pps_rx 3243471.500000, bps_rx 39388717056.000000
18/03/2021 16:40:10                         pktgen: traffic completed. 
18/03/2021 16:40:14             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:40:14             dut.10.240.183.220: 1048576
18/03/2021 16:40:25                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:40:25                         tester: /tmp/vhost_cbdma
18/03/2021 16:40:25                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:40:27                         pktgen: test port 0 map gen port 0
18/03/2021 16:40:27                         pktgen: test port 0 map gen port 0
18/03/2021 16:40:27                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:40:27                         pktgen: trex port <0> not support flow control
18/03/2021 16:40:27                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:40:27                         pktgen: check the trex port link status
18/03/2021 16:40:27                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:40:27                         pktgen: begin traffic ......
18/03/2021 16:40:27                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:40:32                         pktgen: traffic completed. 
18/03/2021 16:40:32                         pktgen: check the trex port link status
18/03/2021 16:40:32                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:40:32                         pktgen: begin traffic ......
18/03/2021 16:40:32                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:40:52                         pktgen: begin get port statistic ...
18/03/2021 16:40:52                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:40:52                         pktgen: {0: {'ibytes': 10033323584,
     'ierrors': 0,
     'ipackets': 156770690,
     'obytes': 37776048256,
     'oerrors': 0,
     'opackets': 590250787,
     'rx_bps': 4017932544.0,
     'rx_bps_L1': 5273536304.0,
     'rx_pps': 7847523.5,
     'rx_util': 13.18384076,
     'tx_bps': 15084418048.0,
     'tx_bps_L1': 19798299008.0,
     'tx_pps': 29461756.0,
     'tx_util': 49.49574752},
 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': 7.54997444152832,
            'cpu_util': 99.89714813232422,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 4017932544.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11066485760.0,
            'rx_pps': 7847523.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15084418048.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29461756.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 10033323584,
           'ierrors': 0,
           'ipackets': 156770690,
           'obytes': 37776048256,
           'oerrors': 0,
           'opackets': 590250787,
           'rx_bps': 4017932544.0,
           'rx_bps_L1': 5273536304.0,
           'rx_pps': 7847523.5,
           'rx_util': 13.18384076,
           'tx_bps': 15084418048.0,
           'tx_bps_L1': 19798299008.0,
           'tx_pps': 29461756.0,
           'tx_util': 49.49574752}}
18/03/2021 16:40:52                         pktgen: {'ibytes': 10033323584,
 'ierrors': 0,
 'ipackets': 156770690,
 'obytes': 37776048256,
 'oerrors': 0,
 'opackets': 590250787,
 'rx_bps': 4017932544.0,
 'rx_bps_L1': 5273536304.0,
 'rx_pps': 7847523.5,
 'rx_util': 13.18384076,
 'tx_bps': 15084418048.0,
 'tx_bps_L1': 19798299008.0,
 'tx_pps': 29461756.0,
 'tx_util': 49.49574752}
18/03/2021 16:40:52                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15084418048.000000, tx_pps: 29461756.000000 
18/03/2021 16:40:52                         pktgen: {'ibytes': 10033323584,
 'ierrors': 0,
 'ipackets': 156770690,
 'obytes': 37776048256,
 'oerrors': 0,
 'opackets': 590250787,
 'rx_bps': 4017932544.0,
 'rx_bps_L1': 5273536304.0,
 'rx_pps': 7847523.5,
 'rx_util': 13.18384076,
 'tx_bps': 15084418048.0,
 'tx_bps_L1': 19798299008.0,
 'tx_pps': 29461756.0,
 'tx_util': 49.49574752}
18/03/2021 16:40:52                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4017932544.000000, rx_pps: 7847523.500000
18/03/2021 16:40:52                         pktgen: throughput: pps_rx 7847523.500000, bps_rx 4017932544.000000
18/03/2021 16:40:52                         pktgen: traffic completed. 
18/03/2021 16:40:52                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:40:52                         tester: /tmp/vhost_cbdma
18/03/2021 16:40:52                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:40:54                         pktgen: test port 0 map gen port 0
18/03/2021 16:40:54                         pktgen: test port 0 map gen port 0
18/03/2021 16:40:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:40:54                         pktgen: trex port <0> not support flow control
18/03/2021 16:40:54                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:40:54                         pktgen: check the trex port link status
18/03/2021 16:40:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:40:54                         pktgen: begin traffic ......
18/03/2021 16:40:54                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:40:59                         pktgen: traffic completed. 
18/03/2021 16:40:59                         pktgen: check the trex port link status
18/03/2021 16:40:59                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:40:59                         pktgen: begin traffic ......
18/03/2021 16:40:59                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:41:19                         pktgen: begin get port statistic ...
18/03/2021 16:41:19                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:41:19                         pktgen: {0: {'ibytes': 98802193512,
     'ierrors': 0,
     'ipackets': 65087087,
     'obytes': 98802188958,
     'oerrors': 0,
     'opackets': 65087086,
     'rx_bps': 39555473408.0,
     'rx_bps_L1': 40076625888.0,
     'rx_pps': 3257203.0,
     'rx_util': 100.19156471999999,
     'tx_bps': 39555452928.0,
     'tx_bps_L1': 40076605168.0,
     'tx_pps': 3257201.5,
     'tx_util': 100.19151292},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.241161346435547,
            'cpu_util': 85.09783935546875,
            'cpu_util_raw': 85.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56708057,
            'rx_bps': 39555473408.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3257203.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39555452928.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3257201.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98802193512,
           'ierrors': 0,
           'ipackets': 65087087,
           'obytes': 98802188958,
           'oerrors': 0,
           'opackets': 65087086,
           'rx_bps': 39555473408.0,
           'rx_bps_L1': 40076625888.0,
           'rx_pps': 3257203.0,
           'rx_util': 100.19156471999999,
           'tx_bps': 39555452928.0,
           'tx_bps_L1': 40076605168.0,
           'tx_pps': 3257201.5,
           'tx_util': 100.19151292}}
18/03/2021 16:41:19                         pktgen: {'ibytes': 98802193512,
 'ierrors': 0,
 'ipackets': 65087087,
 'obytes': 98802188958,
 'oerrors': 0,
 'opackets': 65087086,
 'rx_bps': 39555473408.0,
 'rx_bps_L1': 40076625888.0,
 'rx_pps': 3257203.0,
 'rx_util': 100.19156471999999,
 'tx_bps': 39555452928.0,
 'tx_bps_L1': 40076605168.0,
 'tx_pps': 3257201.5,
 'tx_util': 100.19151292}
18/03/2021 16:41:19                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39555452928.000000, tx_pps: 3257201.500000 
18/03/2021 16:41:19                         pktgen: {'ibytes': 98802193512,
 'ierrors': 0,
 'ipackets': 65087087,
 'obytes': 98802188958,
 'oerrors': 0,
 'opackets': 65087086,
 'rx_bps': 39555473408.0,
 'rx_bps_L1': 40076625888.0,
 'rx_pps': 3257203.0,
 'rx_util': 100.19156471999999,
 'tx_bps': 39555452928.0,
 'tx_bps_L1': 40076605168.0,
 'tx_pps': 3257201.5,
 'tx_util': 100.19151292}
18/03/2021 16:41:19                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39555473408.000000, rx_pps: 3257203.000000
18/03/2021 16:41:19                         pktgen: throughput: pps_rx 3257203.000000, bps_rx 39555473408.000000
18/03/2021 16:41:19                         pktgen: traffic completed. 
18/03/2021 16:41:20                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:41:20                         tester: /tmp/vhost_cbdma
18/03/2021 16:41:20                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:41:22                         pktgen: test port 0 map gen port 0
18/03/2021 16:41:22                         pktgen: test port 0 map gen port 0
18/03/2021 16:41:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:41:22                         pktgen: trex port <0> not support flow control
18/03/2021 16:41:22                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:41:22                         pktgen: check the trex port link status
18/03/2021 16:41:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:41:22                         pktgen: begin traffic ......
18/03/2021 16:41:22                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:41:27                         pktgen: traffic completed. 
18/03/2021 16:41:27                         pktgen: check the trex port link status
18/03/2021 16:41:27                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:41:27                         pktgen: begin traffic ......
18/03/2021 16:41:27                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:41:47                         pktgen: begin get port statistic ...
18/03/2021 16:41:47                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:41:47                         pktgen: {0: {'ibytes': 10033633728,
     'ierrors': 0,
     'ipackets': 156775538,
     'obytes': 37323705280,
     'oerrors': 0,
     'opackets': 583182917,
     'rx_bps': 4000210944.0,
     'rx_bps_L1': 5250277184.0,
     'rx_pps': 7812914.0,
     'rx_util': 13.125692959999999,
     'tx_bps': 14882255872.0,
     'tx_bps_L1': 19532960832.0,
     'tx_pps': 29066906.0,
     'tx_util': 48.83240208},
 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': 7.445773601531982,
            'cpu_util': 99.93760681152344,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 4000210944.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10882044928.0,
            'rx_pps': 7812914.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 14882255872.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29066906.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 10033633728,
           'ierrors': 0,
           'ipackets': 156775538,
           'obytes': 37323705280,
           'oerrors': 0,
           'opackets': 583182917,
           'rx_bps': 4000210944.0,
           'rx_bps_L1': 5250277184.0,
           'rx_pps': 7812914.0,
           'rx_util': 13.125692959999999,
           'tx_bps': 14882255872.0,
           'tx_bps_L1': 19532960832.0,
           'tx_pps': 29066906.0,
           'tx_util': 48.83240208}}
18/03/2021 16:41:47                         pktgen: {'ibytes': 10033633728,
 'ierrors': 0,
 'ipackets': 156775538,
 'obytes': 37323705280,
 'oerrors': 0,
 'opackets': 583182917,
 'rx_bps': 4000210944.0,
 'rx_bps_L1': 5250277184.0,
 'rx_pps': 7812914.0,
 'rx_util': 13.125692959999999,
 'tx_bps': 14882255872.0,
 'tx_bps_L1': 19532960832.0,
 'tx_pps': 29066906.0,
 'tx_util': 48.83240208}
18/03/2021 16:41:47                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 14882255872.000000, tx_pps: 29066906.000000 
18/03/2021 16:41:47                         pktgen: {'ibytes': 10033633728,
 'ierrors': 0,
 'ipackets': 156775538,
 'obytes': 37323705280,
 'oerrors': 0,
 'opackets': 583182917,
 'rx_bps': 4000210944.0,
 'rx_bps_L1': 5250277184.0,
 'rx_pps': 7812914.0,
 'rx_util': 13.125692959999999,
 'tx_bps': 14882255872.0,
 'tx_bps_L1': 19532960832.0,
 'tx_pps': 29066906.0,
 'tx_util': 48.83240208}
18/03/2021 16:41:47                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4000210944.000000, rx_pps: 7812914.000000
18/03/2021 16:41:47                         pktgen: throughput: pps_rx 7812914.000000, bps_rx 4000210944.000000
18/03/2021 16:41:47                         pktgen: traffic completed. 
18/03/2021 16:41:47                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:41:47                         tester: /tmp/vhost_cbdma
18/03/2021 16:41:47                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:41:49                         pktgen: test port 0 map gen port 0
18/03/2021 16:41:49                         pktgen: test port 0 map gen port 0
18/03/2021 16:41:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:41:49                         pktgen: trex port <0> not support flow control
18/03/2021 16:41:49                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:41:49                         pktgen: check the trex port link status
18/03/2021 16:41:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:41:49                         pktgen: begin traffic ......
18/03/2021 16:41:49                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:41:54                         pktgen: traffic completed. 
18/03/2021 16:41:54                         pktgen: check the trex port link status
18/03/2021 16:41:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:41:54                         pktgen: begin traffic ......
18/03/2021 16:41:54                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:42:14                         pktgen: begin get port statistic ...
18/03/2021 16:42:14                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:42:14                         pktgen: {0: {'ibytes': 98797581828,
     'ierrors': 0,
     'ipackets': 65084050,
     'obytes': 98797586382,
     'oerrors': 0,
     'opackets': 65084052,
     'rx_bps': 39502077952.0,
     'rx_bps_L1': 40022526992.0,
     'rx_pps': 3252806.5,
     'rx_util': 100.05631747999999,
     'tx_bps': 39502086144.0,
     'tx_bps_L1': 40022535264.0,
     'tx_pps': 3252807.0,
     'tx_util': 100.05633816},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.237852096557617,
            'cpu_util': 84.99513244628906,
            'cpu_util_raw': 85.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56714053,
            'rx_bps': 39502077952.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3252806.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39502086144.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3252807.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98797581828,
           'ierrors': 0,
           'ipackets': 65084050,
           'obytes': 98797586382,
           'oerrors': 0,
           'opackets': 65084052,
           'rx_bps': 39502077952.0,
           'rx_bps_L1': 40022526992.0,
           'rx_pps': 3252806.5,
           'rx_util': 100.05631747999999,
           'tx_bps': 39502086144.0,
           'tx_bps_L1': 40022535264.0,
           'tx_pps': 3252807.0,
           'tx_util': 100.05633816}}
18/03/2021 16:42:14                         pktgen: {'ibytes': 98797581828,
 'ierrors': 0,
 'ipackets': 65084050,
 'obytes': 98797586382,
 'oerrors': 0,
 'opackets': 65084052,
 'rx_bps': 39502077952.0,
 'rx_bps_L1': 40022526992.0,
 'rx_pps': 3252806.5,
 'rx_util': 100.05631747999999,
 'tx_bps': 39502086144.0,
 'tx_bps_L1': 40022535264.0,
 'tx_pps': 3252807.0,
 'tx_util': 100.05633816}
18/03/2021 16:42:14                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39502086144.000000, tx_pps: 3252807.000000 
18/03/2021 16:42:14                         pktgen: {'ibytes': 98797581828,
 'ierrors': 0,
 'ipackets': 65084050,
 'obytes': 98797586382,
 'oerrors': 0,
 'opackets': 65084052,
 'rx_bps': 39502077952.0,
 'rx_bps_L1': 40022526992.0,
 'rx_pps': 3252806.5,
 'rx_util': 100.05631747999999,
 'tx_bps': 39502086144.0,
 'tx_bps_L1': 40022535264.0,
 'tx_pps': 3252807.0,
 'tx_util': 100.05633816}
18/03/2021 16:42:14                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39502077952.000000, rx_pps: 3252806.500000
18/03/2021 16:42:14                         pktgen: throughput: pps_rx 3252806.500000, bps_rx 39502077952.000000
18/03/2021 16:42:14                         pktgen: traffic completed. 
18/03/2021 16:42:18             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:42:18             dut.10.240.183.220: 1048576
18/03/2021 16:42:29                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:42:29                         tester: /tmp/vhost_cbdma
18/03/2021 16:42:29                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:42:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:42:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:42:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:42:31                         pktgen: trex port <0> not support flow control
18/03/2021 16:42:31                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:42:31                         pktgen: check the trex port link status
18/03/2021 16:42:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:42:31                         pktgen: begin traffic ......
18/03/2021 16:42:31                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:42:36                         pktgen: traffic completed. 
18/03/2021 16:42:36                         pktgen: check the trex port link status
18/03/2021 16:42:36                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:42:36                         pktgen: begin traffic ......
18/03/2021 16:42:36                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:42:56                         pktgen: begin get port statistic ...
18/03/2021 16:42:56                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:42:56                         pktgen: {0: {'ibytes': 9869236096,
     'ierrors': 0,
     'ipackets': 154206814,
     'obytes': 37217930944,
     'oerrors': 0,
     'opackets': 581530171,
     'rx_bps': 3947087360.0,
     'rx_bps_L1': 5180552160.0,
     'rx_pps': 7709155.0,
     'rx_util': 12.951380400000001,
     'tx_bps': 14868022272.0,
     'tx_bps_L1': 19514280192.0,
     'tx_pps': 29039112.0,
     'tx_util': 48.78570048},
 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': 7.440581798553467,
            'cpu_util': 99.91168975830078,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3947087360.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10920935424.0,
            'rx_pps': 7709155.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 14868022272.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29039112.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9869236096,
           'ierrors': 0,
           'ipackets': 154206814,
           'obytes': 37217930944,
           'oerrors': 0,
           'opackets': 581530171,
           'rx_bps': 3947087360.0,
           'rx_bps_L1': 5180552160.0,
           'rx_pps': 7709155.0,
           'rx_util': 12.951380400000001,
           'tx_bps': 14868022272.0,
           'tx_bps_L1': 19514280192.0,
           'tx_pps': 29039112.0,
           'tx_util': 48.78570048}}
18/03/2021 16:42:56                         pktgen: {'ibytes': 9869236096,
 'ierrors': 0,
 'ipackets': 154206814,
 'obytes': 37217930944,
 'oerrors': 0,
 'opackets': 581530171,
 'rx_bps': 3947087360.0,
 'rx_bps_L1': 5180552160.0,
 'rx_pps': 7709155.0,
 'rx_util': 12.951380400000001,
 'tx_bps': 14868022272.0,
 'tx_bps_L1': 19514280192.0,
 'tx_pps': 29039112.0,
 'tx_util': 48.78570048}
18/03/2021 16:42:56                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 14868022272.000000, tx_pps: 29039112.000000 
18/03/2021 16:42:56                         pktgen: {'ibytes': 9869236096,
 'ierrors': 0,
 'ipackets': 154206814,
 'obytes': 37217930944,
 'oerrors': 0,
 'opackets': 581530171,
 'rx_bps': 3947087360.0,
 'rx_bps_L1': 5180552160.0,
 'rx_pps': 7709155.0,
 'rx_util': 12.951380400000001,
 'tx_bps': 14868022272.0,
 'tx_bps_L1': 19514280192.0,
 'tx_pps': 29039112.0,
 'tx_util': 48.78570048}
18/03/2021 16:42:56                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3947087360.000000, rx_pps: 7709155.000000
18/03/2021 16:42:56                         pktgen: throughput: pps_rx 7709155.000000, bps_rx 3947087360.000000
18/03/2021 16:42:56                         pktgen: traffic completed. 
18/03/2021 16:42:56                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:42:56                         tester: /tmp/vhost_cbdma
18/03/2021 16:42:56                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:42:58                         pktgen: test port 0 map gen port 0
18/03/2021 16:42:58                         pktgen: test port 0 map gen port 0
18/03/2021 16:42:58                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:42:58                         pktgen: trex port <0> not support flow control
18/03/2021 16:42:58                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:42:58                         pktgen: check the trex port link status
18/03/2021 16:42:58                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:42:58                         pktgen: begin traffic ......
18/03/2021 16:42:58                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:43:03                         pktgen: traffic completed. 
18/03/2021 16:43:03                         pktgen: check the trex port link status
18/03/2021 16:43:03                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:03                         pktgen: begin traffic ......
18/03/2021 16:43:03                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:43:23                         pktgen: begin get port statistic ...
18/03/2021 16:43:23                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:43:23                         pktgen: {0: {'ibytes': 98802462198,
     'ierrors': 0,
     'ipackets': 65087264,
     'obytes': 98802469788,
     'oerrors': 0,
     'opackets': 65087268,
     'rx_bps': 39503421440.0,
     'rx_bps_L1': 40023888159.99999,
     'rx_pps': 3252917.0,
     'rx_util': 100.05972039999997,
     'tx_bps': 39503421440.0,
     'tx_bps_L1': 40023888120.0,
     'tx_pps': 3252916.75,
     'tx_util': 100.05972030000001},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.214670181274414,
            'cpu_util': 85.0828857421875,
            'cpu_util_raw': 84.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56406992,
            'rx_bps': 39503421440.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3252917.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39503421440.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3252916.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98802462198,
           'ierrors': 0,
           'ipackets': 65087264,
           'obytes': 98802469788,
           'oerrors': 0,
           'opackets': 65087268,
           'rx_bps': 39503421440.0,
           'rx_bps_L1': 40023888159.99999,
           'rx_pps': 3252917.0,
           'rx_util': 100.05972039999997,
           'tx_bps': 39503421440.0,
           'tx_bps_L1': 40023888120.0,
           'tx_pps': 3252916.75,
           'tx_util': 100.05972030000001}}
18/03/2021 16:43:23                         pktgen: {'ibytes': 98802462198,
 'ierrors': 0,
 'ipackets': 65087264,
 'obytes': 98802469788,
 'oerrors': 0,
 'opackets': 65087268,
 'rx_bps': 39503421440.0,
 'rx_bps_L1': 40023888159.99999,
 'rx_pps': 3252917.0,
 'rx_util': 100.05972039999997,
 'tx_bps': 39503421440.0,
 'tx_bps_L1': 40023888120.0,
 'tx_pps': 3252916.75,
 'tx_util': 100.05972030000001}
18/03/2021 16:43:23                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39503421440.000000, tx_pps: 3252916.750000 
18/03/2021 16:43:23                         pktgen: {'ibytes': 98802462198,
 'ierrors': 0,
 'ipackets': 65087264,
 'obytes': 98802469788,
 'oerrors': 0,
 'opackets': 65087268,
 'rx_bps': 39503421440.0,
 'rx_bps_L1': 40023888159.99999,
 'rx_pps': 3252917.0,
 'rx_util': 100.05972039999997,
 'tx_bps': 39503421440.0,
 'tx_bps_L1': 40023888120.0,
 'tx_pps': 3252916.75,
 'tx_util': 100.05972030000001}
18/03/2021 16:43:23                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39503421440.000000, rx_pps: 3252917.000000
18/03/2021 16:43:23                         pktgen: throughput: pps_rx 3252917.000000, bps_rx 39503421440.000000
18/03/2021 16:43:23                         pktgen: traffic completed. 
18/03/2021 16:43:24                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:43:24                         tester: /tmp/vhost_cbdma
18/03/2021 16:43:24                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:43:26                         pktgen: test port 0 map gen port 0
18/03/2021 16:43:26                         pktgen: test port 0 map gen port 0
18/03/2021 16:43:26                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:26                         pktgen: trex port <0> not support flow control
18/03/2021 16:43:26                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:43:26                         pktgen: check the trex port link status
18/03/2021 16:43:26                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:26                         pktgen: begin traffic ......
18/03/2021 16:43:26                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:43:31                         pktgen: traffic completed. 
18/03/2021 16:43:31                         pktgen: check the trex port link status
18/03/2021 16:43:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:31                         pktgen: begin traffic ......
18/03/2021 16:43:31                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:43:51                         pktgen: begin get port statistic ...
18/03/2021 16:43:51                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:43:51                         pktgen: {0: {'ibytes': 9900102016,
     'ierrors': 0,
     'ipackets': 154689126,
     'obytes': 37603810048,
     'oerrors': 0,
     'opackets': 587559532,
     'rx_bps': 3963868672.0,
     'rx_bps_L1': 5202578672.0,
     'rx_pps': 7741937.5,
     'rx_util': 13.00644668,
     'tx_bps': 15061694464.0,
     'tx_bps_L1': 19768473344.0,
     'tx_pps': 29417368.0,
     'tx_util': 49.42118336},
 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': 7.535003185272217,
            'cpu_util': 99.9448471069336,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3963868672.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11097826304.0,
            'rx_pps': 7741937.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15061694464.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29417368.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9900102016,
           'ierrors': 0,
           'ipackets': 154689126,
           'obytes': 37603810048,
           'oerrors': 0,
           'opackets': 587559532,
           'rx_bps': 3963868672.0,
           'rx_bps_L1': 5202578672.0,
           'rx_pps': 7741937.5,
           'rx_util': 13.00644668,
           'tx_bps': 15061694464.0,
           'tx_bps_L1': 19768473344.0,
           'tx_pps': 29417368.0,
           'tx_util': 49.42118336}}
18/03/2021 16:43:51                         pktgen: {'ibytes': 9900102016,
 'ierrors': 0,
 'ipackets': 154689126,
 'obytes': 37603810048,
 'oerrors': 0,
 'opackets': 587559532,
 'rx_bps': 3963868672.0,
 'rx_bps_L1': 5202578672.0,
 'rx_pps': 7741937.5,
 'rx_util': 13.00644668,
 'tx_bps': 15061694464.0,
 'tx_bps_L1': 19768473344.0,
 'tx_pps': 29417368.0,
 'tx_util': 49.42118336}
18/03/2021 16:43:51                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15061694464.000000, tx_pps: 29417368.000000 
18/03/2021 16:43:51                         pktgen: {'ibytes': 9900102016,
 'ierrors': 0,
 'ipackets': 154689126,
 'obytes': 37603810048,
 'oerrors': 0,
 'opackets': 587559532,
 'rx_bps': 3963868672.0,
 'rx_bps_L1': 5202578672.0,
 'rx_pps': 7741937.5,
 'rx_util': 13.00644668,
 'tx_bps': 15061694464.0,
 'tx_bps_L1': 19768473344.0,
 'tx_pps': 29417368.0,
 'tx_util': 49.42118336}
18/03/2021 16:43:51                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3963868672.000000, rx_pps: 7741937.500000
18/03/2021 16:43:51                         pktgen: throughput: pps_rx 7741937.500000, bps_rx 3963868672.000000
18/03/2021 16:43:51                         pktgen: traffic completed. 
18/03/2021 16:43:51                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:43:51                         tester: /tmp/vhost_cbdma
18/03/2021 16:43:51                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:43:53                         pktgen: test port 0 map gen port 0
18/03/2021 16:43:53                         pktgen: test port 0 map gen port 0
18/03/2021 16:43:53                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:53                         pktgen: trex port <0> not support flow control
18/03/2021 16:43:53                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:43:53                         pktgen: check the trex port link status
18/03/2021 16:43:53                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:53                         pktgen: begin traffic ......
18/03/2021 16:43:53                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:43:58                         pktgen: traffic completed. 
18/03/2021 16:43:58                         pktgen: check the trex port link status
18/03/2021 16:43:58                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:58                         pktgen: begin traffic ......
18/03/2021 16:43:58                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:44:18                         pktgen: begin get port statistic ...
18/03/2021 16:44:18                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:44:18                         pktgen: {0: {'ibytes': 98795790588,
     'ierrors': 0,
     'ipackets': 65082870,
     'obytes': 98795766300,
     'oerrors': 0,
     'opackets': 65082853,
     'rx_bps': 39500849152.0,
     'rx_bps_L1': 40021281952.0,
     'rx_pps': 3252705.0,
     'rx_util': 100.05320488,
     'tx_bps': 39500906496.0,
     'tx_bps_L1': 40021340096.0,
     'tx_pps': 3252710.0,
     'tx_util': 100.05335024},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.14048957824707,
            'cpu_util': 85.3501968383789,
            'cpu_util_raw': 85.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56544073,
            'rx_bps': 39500849152.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3252705.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39500906496.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3252710.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98795790588,
           'ierrors': 0,
           'ipackets': 65082870,
           'obytes': 98795766300,
           'oerrors': 0,
           'opackets': 65082853,
           'rx_bps': 39500849152.0,
           'rx_bps_L1': 40021281952.0,
           'rx_pps': 3252705.0,
           'rx_util': 100.05320488,
           'tx_bps': 39500906496.0,
           'tx_bps_L1': 40021340096.0,
           'tx_pps': 3252710.0,
           'tx_util': 100.05335024}}
18/03/2021 16:44:18                         pktgen: {'ibytes': 98795790588,
 'ierrors': 0,
 'ipackets': 65082870,
 'obytes': 98795766300,
 'oerrors': 0,
 'opackets': 65082853,
 'rx_bps': 39500849152.0,
 'rx_bps_L1': 40021281952.0,
 'rx_pps': 3252705.0,
 'rx_util': 100.05320488,
 'tx_bps': 39500906496.0,
 'tx_bps_L1': 40021340096.0,
 'tx_pps': 3252710.0,
 'tx_util': 100.05335024}
18/03/2021 16:44:18                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39500906496.000000, tx_pps: 3252710.000000 
18/03/2021 16:44:18                         pktgen: {'ibytes': 98795790588,
 'ierrors': 0,
 'ipackets': 65082870,
 'obytes': 98795766300,
 'oerrors': 0,
 'opackets': 65082853,
 'rx_bps': 39500849152.0,
 'rx_bps_L1': 40021281952.0,
 'rx_pps': 3252705.0,
 'rx_util': 100.05320488,
 'tx_bps': 39500906496.0,
 'tx_bps_L1': 40021340096.0,
 'tx_pps': 3252710.0,
 'tx_util': 100.05335024}
18/03/2021 16:44:18                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39500849152.000000, rx_pps: 3252705.000000
18/03/2021 16:44:18                         pktgen: throughput: pps_rx 3252705.000000, bps_rx 39500849152.000000
18/03/2021 16:44:18                         pktgen: traffic completed. 
18/03/2021 16:44:22             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:44:22             dut.10.240.183.220: 1048576
18/03/2021 16:44:33                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:44:33                         tester: /tmp/vhost_cbdma
18/03/2021 16:44:33                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:44:35                         pktgen: test port 0 map gen port 0
18/03/2021 16:44:35                         pktgen: test port 0 map gen port 0
18/03/2021 16:44:35                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:44:35                         pktgen: trex port <0> not support flow control
18/03/2021 16:44:35                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:44:35                         pktgen: check the trex port link status
18/03/2021 16:44:35                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:44:35                         pktgen: begin traffic ......
18/03/2021 16:44:35                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:44:40                         pktgen: traffic completed. 
18/03/2021 16:44:40                         pktgen: check the trex port link status
18/03/2021 16:44:40                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:44:40                         pktgen: begin traffic ......
18/03/2021 16:44:40                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:45:00                         pktgen: begin get port statistic ...
18/03/2021 16:45:00                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:45:00                         pktgen: {0: {'ibytes': 9785765632,
     'ierrors': 0,
     'ipackets': 152902588,
     'obytes': 37666580736,
     'oerrors': 0,
     'opackets': 588540359,
     'rx_bps': 3913805312.0,
     'rx_bps_L1': 5136869712.0,
     'rx_pps': 7644152.5,
     'rx_util': 12.842174279999998,
     'tx_bps': 15053453312.0,
     'tx_bps_L1': 19757657792.0,
     'tx_pps': 29401278.0,
     'tx_util': 49.39414448},
 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': 7.534168720245361,
            'cpu_util': 99.9012222290039,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3913805312.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11139647488.0,
            'rx_pps': 7644152.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15053453312.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29401278.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9785765632,
           'ierrors': 0,
           'ipackets': 152902588,
           'obytes': 37666580736,
           'oerrors': 0,
           'opackets': 588540359,
           'rx_bps': 3913805312.0,
           'rx_bps_L1': 5136869712.0,
           'rx_pps': 7644152.5,
           'rx_util': 12.842174279999998,
           'tx_bps': 15053453312.0,
           'tx_bps_L1': 19757657792.0,
           'tx_pps': 29401278.0,
           'tx_util': 49.39414448}}
18/03/2021 16:45:00                         pktgen: {'ibytes': 9785765632,
 'ierrors': 0,
 'ipackets': 152902588,
 'obytes': 37666580736,
 'oerrors': 0,
 'opackets': 588540359,
 'rx_bps': 3913805312.0,
 'rx_bps_L1': 5136869712.0,
 'rx_pps': 7644152.5,
 'rx_util': 12.842174279999998,
 'tx_bps': 15053453312.0,
 'tx_bps_L1': 19757657792.0,
 'tx_pps': 29401278.0,
 'tx_util': 49.39414448}
18/03/2021 16:45:00                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15053453312.000000, tx_pps: 29401278.000000 
18/03/2021 16:45:00                         pktgen: {'ibytes': 9785765632,
 'ierrors': 0,
 'ipackets': 152902588,
 'obytes': 37666580736,
 'oerrors': 0,
 'opackets': 588540359,
 'rx_bps': 3913805312.0,
 'rx_bps_L1': 5136869712.0,
 'rx_pps': 7644152.5,
 'rx_util': 12.842174279999998,
 'tx_bps': 15053453312.0,
 'tx_bps_L1': 19757657792.0,
 'tx_pps': 29401278.0,
 'tx_util': 49.39414448}
18/03/2021 16:45:00                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3913805312.000000, rx_pps: 7644152.500000
18/03/2021 16:45:00                         pktgen: throughput: pps_rx 7644152.500000, bps_rx 3913805312.000000
18/03/2021 16:45:00                         pktgen: traffic completed. 
18/03/2021 16:45:00                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:45:00                         tester: /tmp/vhost_cbdma
18/03/2021 16:45:00                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:45:02                         pktgen: test port 0 map gen port 0
18/03/2021 16:45:02                         pktgen: test port 0 map gen port 0
18/03/2021 16:45:02                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:02                         pktgen: trex port <0> not support flow control
18/03/2021 16:45:02                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:45:02                         pktgen: check the trex port link status
18/03/2021 16:45:02                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:03                         pktgen: begin traffic ......
18/03/2021 16:45:03                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:45:08                         pktgen: traffic completed. 
18/03/2021 16:45:08                         pktgen: check the trex port link status
18/03/2021 16:45:08                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:08                         pktgen: begin traffic ......
18/03/2021 16:45:08                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:45:28                         pktgen: begin get port statistic ...
18/03/2021 16:45:28                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:45:28                         pktgen: {0: {'ibytes': 98798245194,
     'ierrors': 0,
     'ipackets': 65084486,
     'obytes': 98798254302,
     'oerrors': 0,
     'opackets': 65084492,
     'rx_bps': 39503257600.0,
     'rx_bps_L1': 40023722160.0,
     'rx_pps': 3252903.5,
     'rx_util': 100.05930540000001,
     'tx_bps': 39503253504.0,
     'tx_bps_L1': 40023717984.0,
     'tx_pps': 3252903.0,
     'tx_util': 100.05929495999999},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.286298751831055,
            'cpu_util': 84.82080841064453,
            'cpu_util_raw': 84.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56680924,
            'rx_bps': 39503257600.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3252903.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39503253504.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3252903.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98798245194,
           'ierrors': 0,
           'ipackets': 65084486,
           'obytes': 98798254302,
           'oerrors': 0,
           'opackets': 65084492,
           'rx_bps': 39503257600.0,
           'rx_bps_L1': 40023722160.0,
           'rx_pps': 3252903.5,
           'rx_util': 100.05930540000001,
           'tx_bps': 39503253504.0,
           'tx_bps_L1': 40023717984.0,
           'tx_pps': 3252903.0,
           'tx_util': 100.05929495999999}}
18/03/2021 16:45:28                         pktgen: {'ibytes': 98798245194,
 'ierrors': 0,
 'ipackets': 65084486,
 'obytes': 98798254302,
 'oerrors': 0,
 'opackets': 65084492,
 'rx_bps': 39503257600.0,
 'rx_bps_L1': 40023722160.0,
 'rx_pps': 3252903.5,
 'rx_util': 100.05930540000001,
 'tx_bps': 39503253504.0,
 'tx_bps_L1': 40023717984.0,
 'tx_pps': 3252903.0,
 'tx_util': 100.05929495999999}
18/03/2021 16:45:28                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39503253504.000000, tx_pps: 3252903.000000 
18/03/2021 16:45:28                         pktgen: {'ibytes': 98798245194,
 'ierrors': 0,
 'ipackets': 65084486,
 'obytes': 98798254302,
 'oerrors': 0,
 'opackets': 65084492,
 'rx_bps': 39503257600.0,
 'rx_bps_L1': 40023722160.0,
 'rx_pps': 3252903.5,
 'rx_util': 100.05930540000001,
 'tx_bps': 39503253504.0,
 'tx_bps_L1': 40023717984.0,
 'tx_pps': 3252903.0,
 'tx_util': 100.05929495999999}
18/03/2021 16:45:28                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39503257600.000000, rx_pps: 3252903.500000
18/03/2021 16:45:28                         pktgen: throughput: pps_rx 3252903.500000, bps_rx 39503257600.000000
18/03/2021 16:45:28                         pktgen: traffic completed. 
18/03/2021 16:45:28                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:45:28                         tester: /tmp/vhost_cbdma
18/03/2021 16:45:28                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:45:30                         pktgen: test port 0 map gen port 0
18/03/2021 16:45:30                         pktgen: test port 0 map gen port 0
18/03/2021 16:45:30                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:30                         pktgen: trex port <0> not support flow control
18/03/2021 16:45:30                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:45:30                         pktgen: check the trex port link status
18/03/2021 16:45:30                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:30                         pktgen: begin traffic ......
18/03/2021 16:45:30                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:45:35                         pktgen: traffic completed. 
18/03/2021 16:45:35                         pktgen: check the trex port link status
18/03/2021 16:45:35                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:35                         pktgen: begin traffic ......
18/03/2021 16:45:35                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:45:55                         pktgen: begin get port statistic ...
18/03/2021 16:45:55                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:45:55                         pktgen: {0: {'ibytes': 9829272512,
     'ierrors': 0,
     'ipackets': 153582393,
     'obytes': 37580575168,
     'oerrors': 0,
     'opackets': 587196498,
     'rx_bps': 3934970624.0,
     'rx_bps_L1': 5164648384.0,
     'rx_pps': 7685486.0,
     'rx_util': 12.91162096,
     'tx_bps': 15040491520.0,
     'tx_bps_L1': 19740643200.0,
     'tx_pps': 29375948.0,
     'tx_util': 49.351608},
 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': 7.524664878845215,
            'cpu_util': 99.94126892089844,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3934970624.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11105520640.0,
            'rx_pps': 7685486.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15040491520.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29375948.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9829272512,
           'ierrors': 0,
           'ipackets': 153582393,
           'obytes': 37580575168,
           'oerrors': 0,
           'opackets': 587196498,
           'rx_bps': 3934970624.0,
           'rx_bps_L1': 5164648384.0,
           'rx_pps': 7685486.0,
           'rx_util': 12.91162096,
           'tx_bps': 15040491520.0,
           'tx_bps_L1': 19740643200.0,
           'tx_pps': 29375948.0,
           'tx_util': 49.351608}}
18/03/2021 16:45:55                         pktgen: {'ibytes': 9829272512,
 'ierrors': 0,
 'ipackets': 153582393,
 'obytes': 37580575168,
 'oerrors': 0,
 'opackets': 587196498,
 'rx_bps': 3934970624.0,
 'rx_bps_L1': 5164648384.0,
 'rx_pps': 7685486.0,
 'rx_util': 12.91162096,
 'tx_bps': 15040491520.0,
 'tx_bps_L1': 19740643200.0,
 'tx_pps': 29375948.0,
 'tx_util': 49.351608}
18/03/2021 16:45:55                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15040491520.000000, tx_pps: 29375948.000000 
18/03/2021 16:45:55                         pktgen: {'ibytes': 9829272512,
 'ierrors': 0,
 'ipackets': 153582393,
 'obytes': 37580575168,
 'oerrors': 0,
 'opackets': 587196498,
 'rx_bps': 3934970624.0,
 'rx_bps_L1': 5164648384.0,
 'rx_pps': 7685486.0,
 'rx_util': 12.91162096,
 'tx_bps': 15040491520.0,
 'tx_bps_L1': 19740643200.0,
 'tx_pps': 29375948.0,
 'tx_util': 49.351608}
18/03/2021 16:45:55                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3934970624.000000, rx_pps: 7685486.000000
18/03/2021 16:45:55                         pktgen: throughput: pps_rx 7685486.000000, bps_rx 3934970624.000000
18/03/2021 16:45:55                         pktgen: traffic completed. 
18/03/2021 16:45:55                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:45:55                         tester: /tmp/vhost_cbdma
18/03/2021 16:45:55                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:45:57                         pktgen: test port 0 map gen port 0
18/03/2021 16:45:57                         pktgen: test port 0 map gen port 0
18/03/2021 16:45:57                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:57                         pktgen: trex port <0> not support flow control
18/03/2021 16:45:57                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:45:57                         pktgen: check the trex port link status
18/03/2021 16:45:57                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:57                         pktgen: begin traffic ......
18/03/2021 16:45:57                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:46:02                         pktgen: traffic completed. 
18/03/2021 16:46:02                         pktgen: check the trex port link status
18/03/2021 16:46:02                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:46:02                         pktgen: begin traffic ......
18/03/2021 16:46:02                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:46:22                         pktgen: begin get port statistic ...
18/03/2021 16:46:22                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:46:22                         pktgen: {0: {'ibytes': 98798718810,
     'ierrors': 0,
     'ipackets': 65084798,
     'obytes': 98798718810,
     'oerrors': 0,
     'opackets': 65084799,
     'rx_bps': 39392555008.0,
     'rx_bps_L1': 39911561048.0,
     'rx_pps': 3243787.75,
     'rx_util': 99.77890262,
     'tx_bps': 39392550912.0,
     'tx_bps_L1': 39911556912.0,
     'tx_pps': 3243787.5,
     'tx_util': 99.77889228},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.42650032043457,
            'cpu_util': 84.076904296875,
            'cpu_util_raw': 80.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56268934,
            'rx_bps': 39392555008.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243787.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39392550912.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243787.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98798718810,
           'ierrors': 0,
           'ipackets': 65084798,
           'obytes': 98798718810,
           'oerrors': 0,
           'opackets': 65084799,
           'rx_bps': 39392555008.0,
           'rx_bps_L1': 39911561048.0,
           'rx_pps': 3243787.75,
           'rx_util': 99.77890262,
           'tx_bps': 39392550912.0,
           'tx_bps_L1': 39911556912.0,
           'tx_pps': 3243787.5,
           'tx_util': 99.77889228}}
18/03/2021 16:46:22                         pktgen: {'ibytes': 98798718810,
 'ierrors': 0,
 'ipackets': 65084798,
 'obytes': 98798718810,
 'oerrors': 0,
 'opackets': 65084799,
 'rx_bps': 39392555008.0,
 'rx_bps_L1': 39911561048.0,
 'rx_pps': 3243787.75,
 'rx_util': 99.77890262,
 'tx_bps': 39392550912.0,
 'tx_bps_L1': 39911556912.0,
 'tx_pps': 3243787.5,
 'tx_util': 99.77889228}
18/03/2021 16:46:22                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39392550912.000000, tx_pps: 3243787.500000 
18/03/2021 16:46:22                         pktgen: {'ibytes': 98798718810,
 'ierrors': 0,
 'ipackets': 65084798,
 'obytes': 98798718810,
 'oerrors': 0,
 'opackets': 65084799,
 'rx_bps': 39392555008.0,
 'rx_bps_L1': 39911561048.0,
 'rx_pps': 3243787.75,
 'rx_util': 99.77890262,
 'tx_bps': 39392550912.0,
 'tx_bps_L1': 39911556912.0,
 'tx_pps': 3243787.5,
 'tx_util': 99.77889228}
18/03/2021 16:46:22                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39392555008.000000, rx_pps: 3243787.750000
18/03/2021 16:46:22                         pktgen: throughput: pps_rx 3243787.750000, bps_rx 39392555008.000000
18/03/2021 16:46:22                         pktgen: traffic completed. 
18/03/2021 16:46:27           TestVirTioVhostCbdma: 
+-------+-----------------------------------------+-------+------------+
| Frame |              Mode/RXD-TXD               | Mpps  | % linerate |
+=======+=========================================+=======+============+
| 64    | inorder_mergeable_path                  | 7.623 | 12.807     |
+-------+-----------------------------------------+-------+------------+
| 1518  | inorder_mergeable_path                  | 3.244 | 99.774     |
+-------+-----------------------------------------+-------+------------+
| 64    | inorder_mergeable_path_RestartVhost     | 7.665 | 12.877     |
+-------+-----------------------------------------+-------+------------+
| 1518  | inorder_mergeable_path_RestartVhost     | 3.244 | 99.775     |
+-------+-----------------------------------------+-------+------------+
| 64    | mergeable_path                          | 7.555 | 12.693     |
+-------+-----------------------------------------+-------+------------+
| 1518  | mergeable_path                          | 3.258 | 100.208    |
+-------+-----------------------------------------+-------+------------+
| 64    | mergeable_path_RestartVhost             | 7.566 | 12.711     |
+-------+-----------------------------------------+-------+------------+
| 1518  | mergeable_path_RestartVhost             | 3.243 | 99.769     |
+-------+-----------------------------------------+-------+------------+
| 64    | inorder_non_mergeable_path              | 7.848 | 13.184     |
+-------+-----------------------------------------+-------+------------+
| 1518  | inorder_non_mergeable_path              | 3.257 | 100.192    |
+-------+-----------------------------------------+-------+------------+
| 64    | inorder_non_mergeable_path_RestartVhost | 7.813 | 13.126     |
+-------+-----------------------------------------+-------+------------+
| 1518  | inorder_non_mergeable_path_RestartVhost | 3.253 | 100.056    |
+-------+-----------------------------------------+-------+------------+
| 64    | non_mergeable_path                      | 7.709 | 12.951     |
+-------+-----------------------------------------+-------+------------+
| 1518  | non_mergeable_path                      | 3.253 | 100.060    |
+-------+-----------------------------------------+-------+------------+
| 64    | non_mergeable_path_RestartVhost         | 7.742 | 13.006     |
+-------+-----------------------------------------+-------+------------+
| 1518  | non_mergeable_path_RestartVhost         | 3.253 | 100.053    |
+-------+-----------------------------------------+-------+------------+
| 64    | vector_rx_path                          | 7.644 | 12.842     |
+-------+-----------------------------------------+-------+------------+
| 1518  | vector_rx_path                          | 3.253 | 100.059    |
+-------+-----------------------------------------+-------+------------+
| 64    | vector_rx_path_RestartVhost             | 7.685 | 12.912     |
+-------+-----------------------------------------+-------+------------+
| 1518  | vector_rx_path_RestartVhost             | 3.244 | 99.779     |
+-------+-----------------------------------------+-------+------------+
18/03/2021 16:46:27           TestVirTioVhostCbdma: 
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| Frame |              Mode/RXD-TXD               |    Mpps    | % linerate | nb_desc | Expected Throughput | Throughput Difference |
+=======+=========================================+============+============+=========+=====================+=======================+
| 64    | inorder_mergeable_path                  | 7.623 Mpps | 12.807%    | 1024    | 0.000 Mpps          | 7.623 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | inorder_mergeable_path                  | 3.244 Mpps | 99.774%    | 1024    | 0.000 Mpps          | 3.244 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | inorder_mergeable_path_RestartVhost     | 7.665 Mpps | 12.877%    | 1024    | 0.000 Mpps          | 7.665 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | inorder_mergeable_path_RestartVhost     | 3.244 Mpps | 99.775%    | 1024    | 0.000 Mpps          | 3.244 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | mergeable_path                          | 7.555 Mpps | 12.693%    | 1024    | 0.000 Mpps          | 7.555 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | mergeable_path                          | 3.258 Mpps | 100.208%   | 1024    | 0.000 Mpps          | 3.258 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | mergeable_path_RestartVhost             | 7.566 Mpps | 12.711%    | 1024    | 0.000 Mpps          | 7.566 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | mergeable_path_RestartVhost             | 3.243 Mpps | 99.769%    | 1024    | 0.000 Mpps          | 3.243 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | inorder_non_mergeable_path              | 7.848 Mpps | 13.184%    | 1024    | 0.000 Mpps          | 7.848 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | inorder_non_mergeable_path              | 3.257 Mpps | 100.192%   | 1024    | 0.000 Mpps          | 3.257 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | inorder_non_mergeable_path_RestartVhost | 7.813 Mpps | 13.126%    | 1024    | 0.000 Mpps          | 7.813 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | inorder_non_mergeable_path_RestartVhost | 3.253 Mpps | 100.056%   | 1024    | 0.000 Mpps          | 3.253 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | non_mergeable_path                      | 7.709 Mpps | 12.951%    | 1024    | 0.000 Mpps          | 7.709 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | non_mergeable_path                      | 3.253 Mpps | 100.060%   | 1024    | 0.000 Mpps          | 3.253 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | non_mergeable_path_RestartVhost         | 7.742 Mpps | 13.006%    | 1024    | 0.000 Mpps          | 7.742 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | non_mergeable_path_RestartVhost         | 3.253 Mpps | 100.053%   | 1024    | 0.000 Mpps          | 3.253 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | vector_rx_path                          | 7.644 Mpps | 12.842%    | 1024    | 0.000 Mpps          | 7.644 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | vector_rx_path                          | 3.253 Mpps | 100.059%   | 1024    | 0.000 Mpps          | 3.253 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | vector_rx_path_RestartVhost             | 7.685 Mpps | 12.912%    | 1024    | 0.000 Mpps          | 7.685 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | vector_rx_path_RestartVhost             | 3.244 Mpps | 99.779%    | 1024    | 0.000 Mpps          | 3.244 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.623000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.244000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.665000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.244000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.555000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.258000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.566000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.243000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.848000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.257000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.813000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.253000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.709000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.253000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.742000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.253000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.644000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.253000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.685000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.244000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Test Case test_perf_pvp_spilt_all_path_with_cbdma_vhost_enqueue_operations Result PASSED:
18/03/2021 16:46:27             dut.10.240.183.220: killall -I dpdk-testpmd 
18/03/2021 16:46:27             dut.10.240.183.220: dpdk-testpmd: no process found
18/03/2021 16:46:27             dut.10.240.183.220: modprobe ioatdma
18/03/2021 16:46:27             dut.10.240.183.220: 
18/03/2021 16:46:27             dut.10.240.183.220: ./usertools/dpdk-devbind.py -u 0000:80:04.0
18/03/2021 16:46:27             dut.10.240.183.220: 
18/03/2021 16:46:27             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=ioatdma  0000:80:04.0
18/03/2021 16:46:28             dut.10.240.183.220: 
18/03/2021 16:46:28                            dts: 
TEST SUITE ENDED: TestVirTioVhostCbdma

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

18/03/2021 16:51:40                            dts: 
TEST SUITE : TestVswitchSampleCBDMA
18/03/2021 16:51:40                            dts: NIC :        fortville_spirit
18/03/2021 16:51:40             dut.10.240.183.220: 
18/03/2021 16:51:40                         tester: 
18/03/2021 16:51:40         TestVswitchSampleCBDMA: Configure MAX_QUEUES to 512
18/03/2021 16:51:40             dut.10.240.183.220: sed -i -e 's/#define MAX_QUEUES .*$/#define MAX_QUEUES 512/' ./examples/vhost/main.c
18/03/2021 16:51:40             dut.10.240.183.220: 
18/03/2021 16:51:40                         tester: ls -d /tmp
18/03/2021 16:51:40                         tester: /tmp
18/03/2021 16:51:45             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:51:45             dut.10.240.183.220: 1048576
18/03/2021 16:51:45         TestVswitchSampleCBDMA: Test Case test_perf_check_with_cbdma_channel_using_vhost_async_driver Begin
18/03/2021 16:51:45             dut.10.240.183.220: 
18/03/2021 16:51:45                         tester: 
18/03/2021 16:51:45             dut.10.240.183.220: rm -rf /root/dpdk/vhost-net*
18/03/2021 16:51:45             dut.10.240.183.220: 
18/03/2021 16:51:45             dut.10.240.183.220: killall -I qemu-system-x86_64
18/03/2021 16:51:45             dut.10.240.183.220: qemu-system-x86_64: no process found
18/03/2021 16:51:45             dut.10.240.183.220: ./usertools/dpdk-devbind.py --status-dev misc
18/03/2021 16:51:46             dut.10.240.183.220: 
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.0 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.1 '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 
18/03/2021 16:51:46             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=igb_uio 0000:80:04.0
18/03/2021 16:51:46             dut.10.240.183.220: 
18/03/2021 16:51:46         TestVswitchSampleCBDMA: Configure async_threshold to 1518
18/03/2021 16:51:46             dut.10.240.183.220: sed -i -e 's/f.async_threshold = .*$/f.async_threshold = 1518;/' ./examples/vhost/main.c
18/03/2021 16:51:46             dut.10.240.183.220: 
18/03/2021 16:51:46             dut.10.240.183.220: meson configure -Dexamples=vhost x86_64-native-linuxapp-gcc
18/03/2021 16:51:46             dut.10.240.183.220: 
18/03/2021 16:51:46             dut.10.240.183.220: ninja -C x86_64-native-linuxapp-gcc
18/03/2021 16:51:52             dut.10.240.183.220: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 21.05.0-rc0
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
Program pkg-config found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
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)
Found pkg-config: /usr/bin/pkg-config (0.29.1)
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:238: 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 -Waddress-of-packed-member: YES (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: 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 -Wformat-truncation: YES (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_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/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Dependency jansson found: YES 2.12 (cached)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_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/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_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/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: NO (tried pkgconfig)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-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"
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 -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-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"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
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/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"
Message: drivers/net/bonding: Defining dependency "net_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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 -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wstrict-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/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 -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-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 -Wstrict-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)
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 -Wmaybe-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-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/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
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 -Wstrict-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 -Wstrict-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 -Wstrict-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"
Message: drivers/event/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
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"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
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"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-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, sfc_efx, qat, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ionic, 
	ipn3ke, ixgbe, kni, liquidio, memif, netvsc, nfp, null, 
	octeontx, octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, 
	softnic, tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
	
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

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/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: 1022

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
18/03/2021 16:51:52             dut.10.240.183.220: ls x86_64-native-linuxapp-gcc/examples/dpdk-vhost 
18/03/2021 16:51:52             dut.10.240.183.220: x86_64-native-linuxapp-gcc/examples/dpdk-vhost
18/03/2021 16:51:56             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:51:56             dut.10.240.183.220: 1048576
18/03/2021 16:52:07         TestVswitchSampleCBDMA: Test running at parameters: framesize: 64
18/03/2021 16:52:07                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:07                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:07                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:07                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:07                         pktgen: check the trex port link status
18/03/2021 16:52:07                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:07                         pktgen: begin traffic ......
18/03/2021 16:52:07                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:52:12                         pktgen: begin get port statistic ...
18/03/2021 16:52:12                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:52:12                         pktgen: {0: {'ibytes': 2345525632,
     'ierrors': 0,
     'ipackets': 34493024,
     'obytes': 8741064832,
     'oerrors': 0,
     'opackets': 136579174,
     'rx_bps': 3506536192.0,
     'rx_bps_L1': 4537870112.0,
     'rx_pps': 6445837.0,
     'rx_util': 11.344675279999999,
     'tx_bps': 13102115840.0,
     'tx_bps_L1': 17196528000.0,
     'tx_pps': 25590076.0,
     'tx_util': 42.99132},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 9.039351463317871,
            'cpu_util': 72.47265625,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12247835,
            'rx_bps': 3506536192.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9595580416.0,
            'rx_pps': 6445837.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13102115840.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 25590076.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 2345525632,
           'ierrors': 0,
           'ipackets': 34493024,
           'obytes': 8741064832,
           'oerrors': 0,
           'opackets': 136579174,
           'rx_bps': 3506536192.0,
           'rx_bps_L1': 4537870112.0,
           'rx_pps': 6445837.0,
           'rx_util': 11.344675279999999,
           'tx_bps': 13102115840.0,
           'tx_bps_L1': 17196528000.0,
           'tx_pps': 25590076.0,
           'tx_util': 42.99132}}
18/03/2021 16:52:12                         pktgen: {'ibytes': 2345525632,
 'ierrors': 0,
 'ipackets': 34493024,
 'obytes': 8741064832,
 'oerrors': 0,
 'opackets': 136579174,
 'rx_bps': 3506536192.0,
 'rx_bps_L1': 4537870112.0,
 'rx_pps': 6445837.0,
 'rx_util': 11.344675279999999,
 'tx_bps': 13102115840.0,
 'tx_bps_L1': 17196528000.0,
 'tx_pps': 25590076.0,
 'tx_util': 42.99132}
18/03/2021 16:52:12                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13102115840.000000, tx_pps: 25590076.000000 
18/03/2021 16:52:12                         pktgen: {'ibytes': 2345525632,
 'ierrors': 0,
 'ipackets': 34493024,
 'obytes': 8741064832,
 'oerrors': 0,
 'opackets': 136579174,
 'rx_bps': 3506536192.0,
 'rx_bps_L1': 4537870112.0,
 'rx_pps': 6445837.0,
 'rx_util': 11.344675279999999,
 'tx_bps': 13102115840.0,
 'tx_bps_L1': 17196528000.0,
 'tx_pps': 25590076.0,
 'tx_util': 42.99132}
18/03/2021 16:52:12                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3506536192.000000, rx_pps: 6445837.000000
18/03/2021 16:52:12                         pktgen: throughput: pps_rx 6445837.000000, bps_rx 3506536192.000000
18/03/2021 16:52:12                         pktgen: traffic completed. 
18/03/2021 16:52:12         TestVswitchSampleCBDMA: Test running at parameters: framesize: 512
18/03/2021 16:52:12                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:12                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:12                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:12                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:12                         pktgen: check the trex port link status
18/03/2021 16:52:12                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:12                         pktgen: begin traffic ......
18/03/2021 16:52:12                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:52:17                         pktgen: begin get port statistic ...
18/03/2021 16:52:17                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_512.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_512.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:52:17                         pktgen: {0: {'ibytes': 11345641472,
     'ierrors': 0,
     'ipackets': 22159465,
     'obytes': 24087319040,
     'oerrors': 0,
     'opackets': 47045553,
     'rx_bps': 17212784640.0,
     'rx_bps_L1': 17941154480.0,
     'rx_pps': 4552311.5,
     'rx_util': 44.8528862,
     'tx_bps': 36819423232.0,
     'tx_bps_L1': 38482037152.0,
     'tx_pps': 10391337.0,
     'tx_util': 96.20509288},
 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': 20.846206665039062,
            'cpu_util': 88.31204986572266,
            'cpu_util_raw': 94.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 15233405,
            'rx_bps': 17212784640.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 19606636544.0,
            'rx_pps': 4552311.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 36819423232.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 10391337.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 11345641472,
           'ierrors': 0,
           'ipackets': 22159465,
           'obytes': 24087319040,
           'oerrors': 0,
           'opackets': 47045553,
           'rx_bps': 17212784640.0,
           'rx_bps_L1': 17941154480.0,
           'rx_pps': 4552311.5,
           'rx_util': 44.8528862,
           'tx_bps': 36819423232.0,
           'tx_bps_L1': 38482037152.0,
           'tx_pps': 10391337.0,
           'tx_util': 96.20509288}}
18/03/2021 16:52:17                         pktgen: {'ibytes': 11345641472,
 'ierrors': 0,
 'ipackets': 22159465,
 'obytes': 24087319040,
 'oerrors': 0,
 'opackets': 47045553,
 'rx_bps': 17212784640.0,
 'rx_bps_L1': 17941154480.0,
 'rx_pps': 4552311.5,
 'rx_util': 44.8528862,
 'tx_bps': 36819423232.0,
 'tx_bps_L1': 38482037152.0,
 'tx_pps': 10391337.0,
 'tx_util': 96.20509288}
18/03/2021 16:52:17                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 36819423232.000000, tx_pps: 10391337.000000 
18/03/2021 16:52:17                         pktgen: {'ibytes': 11345641472,
 'ierrors': 0,
 'ipackets': 22159465,
 'obytes': 24087319040,
 'oerrors': 0,
 'opackets': 47045553,
 'rx_bps': 17212784640.0,
 'rx_bps_L1': 17941154480.0,
 'rx_pps': 4552311.5,
 'rx_util': 44.8528862,
 'tx_bps': 36819423232.0,
 'tx_bps_L1': 38482037152.0,
 'tx_pps': 10391337.0,
 'tx_util': 96.20509288}
18/03/2021 16:52:17                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 17212784640.000000, rx_pps: 4552311.500000
18/03/2021 16:52:17                         pktgen: throughput: pps_rx 4552311.500000, bps_rx 17212784640.000000
18/03/2021 16:52:17                         pktgen: traffic completed. 
18/03/2021 16:52:17         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1024
18/03/2021 16:52:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:17                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:17                         pktgen: check the trex port link status
18/03/2021 16:52:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:17                         pktgen: begin traffic ......
18/03/2021 16:52:17                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:52:22                         pktgen: begin get port statistic ...
18/03/2021 16:52:22                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1024.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1024.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:52:22                         pktgen: {0: {'ibytes': 17050960896,
     'ierrors': 0,
     'ipackets': 16651333,
     'obytes': 24546544640,
     'oerrors': 0,
     'opackets': 23971239,
     'rx_bps': 26660861952.0,
     'rx_bps_L1': 27204288112.0,
     'rx_pps': 3396413.5,
     'rx_util': 68.01072028,
     'tx_bps': 39125151744.0,
     'tx_bps_L1': 39940903584.0,
     'tx_pps': 5098449.0,
     'tx_util': 99.85225896},
 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.79421043395996,
            'cpu_util': 85.82256317138672,
            'cpu_util_raw': 88.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14625536,
            'rx_bps': 26660861952.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 12464290816.0,
            'rx_pps': 3396413.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39125151744.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 5098449.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 17050960896,
           'ierrors': 0,
           'ipackets': 16651333,
           'obytes': 24546544640,
           'oerrors': 0,
           'opackets': 23971239,
           'rx_bps': 26660861952.0,
           'rx_bps_L1': 27204288112.0,
           'rx_pps': 3396413.5,
           'rx_util': 68.01072028,
           'tx_bps': 39125151744.0,
           'tx_bps_L1': 39940903584.0,
           'tx_pps': 5098449.0,
           'tx_util': 99.85225896}}
18/03/2021 16:52:22                         pktgen: {'ibytes': 17050960896,
 'ierrors': 0,
 'ipackets': 16651333,
 'obytes': 24546544640,
 'oerrors': 0,
 'opackets': 23971239,
 'rx_bps': 26660861952.0,
 'rx_bps_L1': 27204288112.0,
 'rx_pps': 3396413.5,
 'rx_util': 68.01072028,
 'tx_bps': 39125151744.0,
 'tx_bps_L1': 39940903584.0,
 'tx_pps': 5098449.0,
 'tx_util': 99.85225896}
18/03/2021 16:52:22                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39125151744.000000, tx_pps: 5098449.000000 
18/03/2021 16:52:22                         pktgen: {'ibytes': 17050960896,
 'ierrors': 0,
 'ipackets': 16651333,
 'obytes': 24546544640,
 'oerrors': 0,
 'opackets': 23971239,
 'rx_bps': 26660861952.0,
 'rx_bps_L1': 27204288112.0,
 'rx_pps': 3396413.5,
 'rx_util': 68.01072028,
 'tx_bps': 39125151744.0,
 'tx_bps_L1': 39940903584.0,
 'tx_pps': 5098449.0,
 'tx_util': 99.85225896}
18/03/2021 16:52:22                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 26660861952.000000, rx_pps: 3396413.500000
18/03/2021 16:52:22                         pktgen: throughput: pps_rx 3396413.500000, bps_rx 26660861952.000000
18/03/2021 16:52:22                         pktgen: traffic completed. 
18/03/2021 16:52:22         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1518
18/03/2021 16:52:22                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:22                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:22                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:22                         pktgen: check the trex port link status
18/03/2021 16:52:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:22                         pktgen: begin traffic ......
18/03/2021 16:52:22                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:52:27                         pktgen: begin get port statistic ...
18/03/2021 16:52:27                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:52:27                         pktgen: {0: {'ibytes': 22012932414,
     'ierrors': 0,
     'ipackets': 14501276,
     'obytes': 24703557054,
     'oerrors': 0,
     'opackets': 16273756,
     'rx_bps': 34604150784.0,
     'rx_bps_L1': 35071305904.0,
     'rx_pps': 2919719.5,
     'rx_util': 87.67826476,
     'tx_bps': 39383760896.0,
     'tx_bps_L1': 39919571576.00001,
     'tx_pps': 3348816.75,
     'tx_util': 99.79892894000002},
 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.927047729492188,
            'cpu_util': 75.95111083984375,
            'cpu_util_raw': 77.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12591390,
            'rx_bps': 34604150784.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 4779609600.0,
            'rx_pps': 2919719.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39383760896.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3348816.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 22012932414,
           'ierrors': 0,
           'ipackets': 14501276,
           'obytes': 24703557054,
           'oerrors': 0,
           'opackets': 16273756,
           'rx_bps': 34604150784.0,
           'rx_bps_L1': 35071305904.0,
           'rx_pps': 2919719.5,
           'rx_util': 87.67826476,
           'tx_bps': 39383760896.0,
           'tx_bps_L1': 39919571576.00001,
           'tx_pps': 3348816.75,
           'tx_util': 99.79892894000002}}
18/03/2021 16:52:27                         pktgen: {'ibytes': 22012932414,
 'ierrors': 0,
 'ipackets': 14501276,
 'obytes': 24703557054,
 'oerrors': 0,
 'opackets': 16273756,
 'rx_bps': 34604150784.0,
 'rx_bps_L1': 35071305904.0,
 'rx_pps': 2919719.5,
 'rx_util': 87.67826476,
 'tx_bps': 39383760896.0,
 'tx_bps_L1': 39919571576.00001,
 'tx_pps': 3348816.75,
 'tx_util': 99.79892894000002}
18/03/2021 16:52:27                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39383760896.000000, tx_pps: 3348816.750000 
18/03/2021 16:52:27                         pktgen: {'ibytes': 22012932414,
 'ierrors': 0,
 'ipackets': 14501276,
 'obytes': 24703557054,
 'oerrors': 0,
 'opackets': 16273756,
 'rx_bps': 34604150784.0,
 'rx_bps_L1': 35071305904.0,
 'rx_pps': 2919719.5,
 'rx_util': 87.67826476,
 'tx_bps': 39383760896.0,
 'tx_bps_L1': 39919571576.00001,
 'tx_pps': 3348816.75,
 'tx_util': 99.79892894000002}
18/03/2021 16:52:27                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 34604150784.000000, rx_pps: 2919719.500000
18/03/2021 16:52:27                         pktgen: throughput: pps_rx 2919719.500000, bps_rx 34604150784.000000
18/03/2021 16:52:27                         pktgen: traffic completed. 
18/03/2021 16:52:27         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| 64               | 6.446            |
+------------------+------------------+
| 512              | 4.552            |
+------------------+------------------+
| 1024             | 3.396            |
+------------------+------------------+
| 1518             | 2.920            |
+------------------+------------------+
18/03/2021 16:52:28         TestVswitchSampleCBDMA: Configure async_threshold to 0
18/03/2021 16:52:28             dut.10.240.183.220: sed -i -e 's/f.async_threshold = .*$/f.async_threshold = 0;/' ./examples/vhost/main.c
18/03/2021 16:52:28             dut.10.240.183.220: 
18/03/2021 16:52:28             dut.10.240.183.220: meson configure -Dexamples=vhost x86_64-native-linuxapp-gcc
18/03/2021 16:52:29             dut.10.240.183.220: 
18/03/2021 16:52:29             dut.10.240.183.220: ninja -C x86_64-native-linuxapp-gcc
18/03/2021 16:52:34             dut.10.240.183.220: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 21.05.0-rc0
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
Program pkg-config found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
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)
Found pkg-config: /usr/bin/pkg-config (0.29.1)
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:238: 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 -Waddress-of-packed-member: YES (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: 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 -Wformat-truncation: YES (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_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/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Dependency jansson found: YES 2.12 (cached)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_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/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_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/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: NO (tried pkgconfig)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-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"
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 -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-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"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
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/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"
Message: drivers/net/bonding: Defining dependency "net_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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 -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wstrict-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/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 -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-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 -Wstrict-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)
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 -Wmaybe-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-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/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
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 -Wstrict-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 -Wstrict-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 -Wstrict-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"
Message: drivers/event/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
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"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
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"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-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, sfc_efx, qat, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ionic, 
	ipn3ke, ixgbe, kni, liquidio, memif, netvsc, nfp, null, 
	octeontx, octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, 
	softnic, tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
	
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

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/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: 1022

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
[1/2] Compiling C object examples/dpdk-vhost.p/vhost_main.c.o
[2/2] Linking target examples/dpdk-vhost
18/03/2021 16:52:34             dut.10.240.183.220: ls x86_64-native-linuxapp-gcc/examples/dpdk-vhost 
18/03/2021 16:52:34             dut.10.240.183.220: x86_64-native-linuxapp-gcc/examples/dpdk-vhost
18/03/2021 16:52:38             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:52:38             dut.10.240.183.220: 1048576
18/03/2021 16:52:49         TestVswitchSampleCBDMA: Test running at parameters: framesize: 64
18/03/2021 16:52:49                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:49                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:49                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:49                         pktgen: check the trex port link status
18/03/2021 16:52:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:49                         pktgen: begin traffic ......
18/03/2021 16:52:49                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:52:54                         pktgen: begin get port statistic ...
18/03/2021 16:52:54                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:52:54                         pktgen: {0: {'ibytes': 1988753092,
     'ierrors': 0,
     'ipackets': 29246369,
     'obytes': 8775812864,
     'oerrors': 0,
     'opackets': 137122119,
     'rx_bps': 3027557888.0,
     'rx_bps_L1': 3918015648.0,
     'rx_pps': 5565361.0,
     'rx_util': 9.79503912,
     'tx_bps': 13358281728.0,
     'tx_bps_L1': 17532745408.0,
     'tx_pps': 26090398.0,
     'tx_util': 43.83186352},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 9.705321311950684,
            'cpu_util': 68.81936645507812,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12195578,
            'rx_bps': 3027557888.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10330724352.0,
            'rx_pps': 5565361.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13358281728.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26090398.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 1988753092,
           'ierrors': 0,
           'ipackets': 29246369,
           'obytes': 8775812864,
           'oerrors': 0,
           'opackets': 137122119,
           'rx_bps': 3027557888.0,
           'rx_bps_L1': 3918015648.0,
           'rx_pps': 5565361.0,
           'rx_util': 9.79503912,
           'tx_bps': 13358281728.0,
           'tx_bps_L1': 17532745408.0,
           'tx_pps': 26090398.0,
           'tx_util': 43.83186352}}
18/03/2021 16:52:54                         pktgen: {'ibytes': 1988753092,
 'ierrors': 0,
 'ipackets': 29246369,
 'obytes': 8775812864,
 'oerrors': 0,
 'opackets': 137122119,
 'rx_bps': 3027557888.0,
 'rx_bps_L1': 3918015648.0,
 'rx_pps': 5565361.0,
 'rx_util': 9.79503912,
 'tx_bps': 13358281728.0,
 'tx_bps_L1': 17532745408.0,
 'tx_pps': 26090398.0,
 'tx_util': 43.83186352}
18/03/2021 16:52:54                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13358281728.000000, tx_pps: 26090398.000000 
18/03/2021 16:52:54                         pktgen: {'ibytes': 1988753092,
 'ierrors': 0,
 'ipackets': 29246369,
 'obytes': 8775812864,
 'oerrors': 0,
 'opackets': 137122119,
 'rx_bps': 3027557888.0,
 'rx_bps_L1': 3918015648.0,
 'rx_pps': 5565361.0,
 'rx_util': 9.79503912,
 'tx_bps': 13358281728.0,
 'tx_bps_L1': 17532745408.0,
 'tx_pps': 26090398.0,
 'tx_util': 43.83186352}
18/03/2021 16:52:54                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3027557888.000000, rx_pps: 5565361.000000
18/03/2021 16:52:54                         pktgen: throughput: pps_rx 5565361.000000, bps_rx 3027557888.000000
18/03/2021 16:52:54                         pktgen: traffic completed. 
18/03/2021 16:52:54         TestVswitchSampleCBDMA: Test running at parameters: framesize: 512
18/03/2021 16:52:54                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:54                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:54                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:54                         pktgen: check the trex port link status
18/03/2021 16:52:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:54                         pktgen: begin traffic ......
18/03/2021 16:52:54                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:52:59                         pktgen: begin get port statistic ...
18/03/2021 16:52:59                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_512.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_512.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:52:59                         pktgen: {0: {'ibytes': 12133838336,
     'ierrors': 0,
     'ipackets': 23698913,
     'obytes': 24088454144,
     'oerrors': 0,
     'opackets': 47047770,
     'rx_bps': 18659590144.0,
     'rx_bps_L1': 19422359264.0,
     'rx_pps': 4767307.0,
     'rx_util': 48.55589816,
     'tx_bps': 37361549312.0,
     'tx_bps_L1': 38981225152.0,
     'tx_pps': 10122974.0,
     'tx_util': 97.45306287999999},
 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.286298751831055,
            'cpu_util': 87.7596206665039,
            'cpu_util_raw': 95.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 15218989,
            'rx_bps': 18659590144.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 18701961216.0,
            'rx_pps': 4767307.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37361549312.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 10122974.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 12133838336,
           'ierrors': 0,
           'ipackets': 23698913,
           'obytes': 24088454144,
           'oerrors': 0,
           'opackets': 47047770,
           'rx_bps': 18659590144.0,
           'rx_bps_L1': 19422359264.0,
           'rx_pps': 4767307.0,
           'rx_util': 48.55589816,
           'tx_bps': 37361549312.0,
           'tx_bps_L1': 38981225152.0,
           'tx_pps': 10122974.0,
           'tx_util': 97.45306287999999}}
18/03/2021 16:52:59                         pktgen: {'ibytes': 12133838336,
 'ierrors': 0,
 'ipackets': 23698913,
 'obytes': 24088454144,
 'oerrors': 0,
 'opackets': 47047770,
 'rx_bps': 18659590144.0,
 'rx_bps_L1': 19422359264.0,
 'rx_pps': 4767307.0,
 'rx_util': 48.55589816,
 'tx_bps': 37361549312.0,
 'tx_bps_L1': 38981225152.0,
 'tx_pps': 10122974.0,
 'tx_util': 97.45306287999999}
18/03/2021 16:52:59                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37361549312.000000, tx_pps: 10122974.000000 
18/03/2021 16:52:59                         pktgen: {'ibytes': 12133838336,
 'ierrors': 0,
 'ipackets': 23698913,
 'obytes': 24088454144,
 'oerrors': 0,
 'opackets': 47047770,
 'rx_bps': 18659590144.0,
 'rx_bps_L1': 19422359264.0,
 'rx_pps': 4767307.0,
 'rx_util': 48.55589816,
 'tx_bps': 37361549312.0,
 'tx_bps_L1': 38981225152.0,
 'tx_pps': 10122974.0,
 'tx_util': 97.45306287999999}
18/03/2021 16:52:59                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 18659590144.000000, rx_pps: 4767307.000000
18/03/2021 16:52:59                         pktgen: throughput: pps_rx 4767307.000000, bps_rx 18659590144.000000
18/03/2021 16:52:59                         pktgen: traffic completed. 
18/03/2021 16:52:59         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1024
18/03/2021 16:52:59                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:59                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:59                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:59                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:59                         pktgen: check the trex port link status
18/03/2021 16:52:59                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:59                         pktgen: begin traffic ......
18/03/2021 16:52:59                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:53:04                         pktgen: begin get port statistic ...
18/03/2021 16:53:04                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1024.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1024.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:53:04                         pktgen: {0: {'ibytes': 19453355520,
     'ierrors': 0,
     'ipackets': 18997424,
     'obytes': 24549137408,
     'oerrors': 0,
     'opackets': 23973773,
     'rx_bps': 30428540928.0,
     'rx_bps_L1': 31040038288.000004,
     'rx_pps': 3821858.5,
     'rx_util': 77.60009572000001,
     'tx_bps': 38995636224.0,
     'tx_bps_L1': 39794489344.0,
     'tx_pps': 4992832.0,
     'tx_util': 99.48622336},
 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.728038787841797,
            'cpu_util': 85.78750610351562,
            'cpu_util_raw': 89.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14795159,
            'rx_bps': 30428540928.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8567095808.0,
            'rx_pps': 3821858.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38995636224.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4992832.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 19453355520,
           'ierrors': 0,
           'ipackets': 18997424,
           'obytes': 24549137408,
           'oerrors': 0,
           'opackets': 23973773,
           'rx_bps': 30428540928.0,
           'rx_bps_L1': 31040038288.000004,
           'rx_pps': 3821858.5,
           'rx_util': 77.60009572000001,
           'tx_bps': 38995636224.0,
           'tx_bps_L1': 39794489344.0,
           'tx_pps': 4992832.0,
           'tx_util': 99.48622336}}
18/03/2021 16:53:04                         pktgen: {'ibytes': 19453355520,
 'ierrors': 0,
 'ipackets': 18997424,
 'obytes': 24549137408,
 'oerrors': 0,
 'opackets': 23973773,
 'rx_bps': 30428540928.0,
 'rx_bps_L1': 31040038288.000004,
 'rx_pps': 3821858.5,
 'rx_util': 77.60009572000001,
 'tx_bps': 38995636224.0,
 'tx_bps_L1': 39794489344.0,
 'tx_pps': 4992832.0,
 'tx_util': 99.48622336}
18/03/2021 16:53:04                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38995636224.000000, tx_pps: 4992832.000000 
18/03/2021 16:53:04                         pktgen: {'ibytes': 19453355520,
 'ierrors': 0,
 'ipackets': 18997424,
 'obytes': 24549137408,
 'oerrors': 0,
 'opackets': 23973773,
 'rx_bps': 30428540928.0,
 'rx_bps_L1': 31040038288.000004,
 'rx_pps': 3821858.5,
 'rx_util': 77.60009572000001,
 'tx_bps': 38995636224.0,
 'tx_bps_L1': 39794489344.0,
 'tx_pps': 4992832.0,
 'tx_util': 99.48622336}
18/03/2021 16:53:04                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 30428540928.000000, rx_pps: 3821858.500000
18/03/2021 16:53:04                         pktgen: throughput: pps_rx 3821858.500000, bps_rx 30428540928.000000
18/03/2021 16:53:04                         pktgen: traffic completed. 
18/03/2021 16:53:04         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1518
18/03/2021 16:53:04                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:04                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:04                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:04                         pktgen: trex port <0> not support flow control
18/03/2021 16:53:04                         pktgen: check the trex port link status
18/03/2021 16:53:04                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:04                         pktgen: begin traffic ......
18/03/2021 16:53:04                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:53:10                         pktgen: begin get port statistic ...
18/03/2021 16:53:10                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:53:10                         pktgen: {0: {'ibytes': 24707638956,
     'ierrors': 0,
     'ipackets': 16276445,
     'obytes': 24707767986,
     'oerrors': 0,
     'opackets': 16276531,
     'rx_bps': 38912671744.0,
     'rx_bps_L1': 39434508384.0,
     'rx_pps': 3261479.0,
     'rx_util': 98.58627096,
     'tx_bps': 39285764096.0,
     'tx_bps_L1': 39815513976.0,
     'tx_pps': 3310936.75,
     'tx_util': 99.53878494},
 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.781917572021484,
            'cpu_util': 76.1885986328125,
            'cpu_util_raw': 77.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12615665,
            'rx_bps': 38912671744.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3261479.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39285764096.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3310936.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 24707638956,
           'ierrors': 0,
           'ipackets': 16276445,
           'obytes': 24707767986,
           'oerrors': 0,
           'opackets': 16276531,
           'rx_bps': 38912671744.0,
           'rx_bps_L1': 39434508384.0,
           'rx_pps': 3261479.0,
           'rx_util': 98.58627096,
           'tx_bps': 39285764096.0,
           'tx_bps_L1': 39815513976.0,
           'tx_pps': 3310936.75,
           'tx_util': 99.53878494}}
18/03/2021 16:53:10                         pktgen: {'ibytes': 24707638956,
 'ierrors': 0,
 'ipackets': 16276445,
 'obytes': 24707767986,
 'oerrors': 0,
 'opackets': 16276531,
 'rx_bps': 38912671744.0,
 'rx_bps_L1': 39434508384.0,
 'rx_pps': 3261479.0,
 'rx_util': 98.58627096,
 'tx_bps': 39285764096.0,
 'tx_bps_L1': 39815513976.0,
 'tx_pps': 3310936.75,
 'tx_util': 99.53878494}
18/03/2021 16:53:10                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39285764096.000000, tx_pps: 3310936.750000 
18/03/2021 16:53:10                         pktgen: {'ibytes': 24707638956,
 'ierrors': 0,
 'ipackets': 16276445,
 'obytes': 24707767986,
 'oerrors': 0,
 'opackets': 16276531,
 'rx_bps': 38912671744.0,
 'rx_bps_L1': 39434508384.0,
 'rx_pps': 3261479.0,
 'rx_util': 98.58627096,
 'tx_bps': 39285764096.0,
 'tx_bps_L1': 39815513976.0,
 'tx_pps': 3310936.75,
 'tx_util': 99.53878494}
18/03/2021 16:53:10                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 38912671744.000000, rx_pps: 3261479.000000
18/03/2021 16:53:10                         pktgen: throughput: pps_rx 3261479.000000, bps_rx 38912671744.000000
18/03/2021 16:53:10                         pktgen: traffic completed. 
18/03/2021 16:53:10         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| 64               | 5.565            |
+------------------+------------------+
| 512              | 4.767            |
+------------------+------------------+
| 1024             | 3.822            |
+------------------+------------------+
| 1518             | 3.261            |
+------------------+------------------+
18/03/2021 16:53:14             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:53:15             dut.10.240.183.220: 1048576
18/03/2021 16:53:26         TestVswitchSampleCBDMA: Test running at parameters: framesize: 64
18/03/2021 16:53:26                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:26                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:26                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:26                         pktgen: trex port <0> not support flow control
18/03/2021 16:53:26                         pktgen: check the trex port link status
18/03/2021 16:53:26                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:26                         pktgen: begin traffic ......
18/03/2021 16:53:26                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:53:31                         pktgen: begin get port statistic ...
18/03/2021 16:53:31                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:53:31                         pktgen: {0: {'ibytes': 2517392640,
     'ierrors': 0,
     'ipackets': 37020501,
     'obytes': 8776952896,
     'oerrors': 0,
     'opackets': 137139901,
     'rx_bps': 3848065792.0,
     'rx_bps_L1': 4979841792.0,
     'rx_pps': 7073600.0,
     'rx_util': 12.44960448,
     'tx_bps': 13424875520.0,
     'tx_bps_L1': 17620142080.0,
     'tx_pps': 26220416.0,
     'tx_util': 44.0503552},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 9.703933715820312,
            'cpu_util': 69.1723403930664,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12156170,
            'rx_bps': 3848065792.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9576810496.0,
            'rx_pps': 7073600.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13424875520.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26220416.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 2517392640,
           'ierrors': 0,
           'ipackets': 37020501,
           'obytes': 8776952896,
           'oerrors': 0,
           'opackets': 137139901,
           'rx_bps': 3848065792.0,
           'rx_bps_L1': 4979841792.0,
           'rx_pps': 7073600.0,
           'rx_util': 12.44960448,
           'tx_bps': 13424875520.0,
           'tx_bps_L1': 17620142080.0,
           'tx_pps': 26220416.0,
           'tx_util': 44.0503552}}
18/03/2021 16:53:31                         pktgen: {'ibytes': 2517392640,
 'ierrors': 0,
 'ipackets': 37020501,
 'obytes': 8776952896,
 'oerrors': 0,
 'opackets': 137139901,
 'rx_bps': 3848065792.0,
 'rx_bps_L1': 4979841792.0,
 'rx_pps': 7073600.0,
 'rx_util': 12.44960448,
 'tx_bps': 13424875520.0,
 'tx_bps_L1': 17620142080.0,
 'tx_pps': 26220416.0,
 'tx_util': 44.0503552}
18/03/2021 16:53:31                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13424875520.000000, tx_pps: 26220416.000000 
18/03/2021 16:53:31                         pktgen: {'ibytes': 2517392640,
 'ierrors': 0,
 'ipackets': 37020501,
 'obytes': 8776952896,
 'oerrors': 0,
 'opackets': 137139901,
 'rx_bps': 3848065792.0,
 'rx_bps_L1': 4979841792.0,
 'rx_pps': 7073600.0,
 'rx_util': 12.44960448,
 'tx_bps': 13424875520.0,
 'tx_bps_L1': 17620142080.0,
 'tx_pps': 26220416.0,
 'tx_util': 44.0503552}
18/03/2021 16:53:31                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3848065792.000000, rx_pps: 7073600.000000
18/03/2021 16:53:31                         pktgen: throughput: pps_rx 7073600.000000, bps_rx 3848065792.000000
18/03/2021 16:53:31                         pktgen: traffic completed. 
18/03/2021 16:53:31         TestVswitchSampleCBDMA: Test running at parameters: framesize: 512
18/03/2021 16:53:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:31                         pktgen: trex port <0> not support flow control
18/03/2021 16:53:31                         pktgen: check the trex port link status
18/03/2021 16:53:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:31                         pktgen: begin traffic ......
18/03/2021 16:53:31                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:53:36                         pktgen: begin get port statistic ...
18/03/2021 16:53:36                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_512.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_512.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:53:36                         pktgen: {0: {'ibytes': 11704906240,
     'ierrors': 0,
     'ipackets': 22861145,
     'obytes': 24087148544,
     'oerrors': 0,
     'opackets': 47045220,
     'rx_bps': 18054365184.0,
     'rx_bps_L1': 18801876384.0,
     'rx_pps': 4671945.0,
     'rx_util': 47.00469096,
     'tx_bps': 37429493760.0,
     'tx_bps_L1': 39049671680.0,
     'tx_pps': 10126112.0,
     'tx_util': 97.6241792},
 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.419206619262695,
            'cpu_util': 87.37367248535156,
            'cpu_util_raw': 94.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 15304037,
            'rx_bps': 18054365184.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 19375126528.0,
            'rx_pps': 4671945.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37429493760.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 10126112.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 11704906240,
           'ierrors': 0,
           'ipackets': 22861145,
           'obytes': 24087148544,
           'oerrors': 0,
           'opackets': 47045220,
           'rx_bps': 18054365184.0,
           'rx_bps_L1': 18801876384.0,
           'rx_pps': 4671945.0,
           'rx_util': 47.00469096,
           'tx_bps': 37429493760.0,
           'tx_bps_L1': 39049671680.0,
           'tx_pps': 10126112.0,
           'tx_util': 97.6241792}}
18/03/2021 16:53:36                         pktgen: {'ibytes': 11704906240,
 'ierrors': 0,
 'ipackets': 22861145,
 'obytes': 24087148544,
 'oerrors': 0,
 'opackets': 47045220,
 'rx_bps': 18054365184.0,
 'rx_bps_L1': 18801876384.0,
 'rx_pps': 4671945.0,
 'rx_util': 47.00469096,
 'tx_bps': 37429493760.0,
 'tx_bps_L1': 39049671680.0,
 'tx_pps': 10126112.0,
 'tx_util': 97.6241792}
18/03/2021 16:53:36                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37429493760.000000, tx_pps: 10126112.000000 
18/03/2021 16:53:36                         pktgen: {'ibytes': 11704906240,
 'ierrors': 0,
 'ipackets': 22861145,
 'obytes': 24087148544,
 'oerrors': 0,
 'opackets': 47045220,
 'rx_bps': 18054365184.0,
 'rx_bps_L1': 18801876384.0,
 'rx_pps': 4671945.0,
 'rx_util': 47.00469096,
 'tx_bps': 37429493760.0,
 'tx_bps_L1': 39049671680.0,
 'tx_pps': 10126112.0,
 'tx_util': 97.6241792}
18/03/2021 16:53:36                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 18054365184.000000, rx_pps: 4671945.000000
18/03/2021 16:53:36                         pktgen: throughput: pps_rx 4671945.000000, bps_rx 18054365184.000000
18/03/2021 16:53:36                         pktgen: traffic completed. 
18/03/2021 16:53:36         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1024
18/03/2021 16:53:36                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:36                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:36                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:36                         pktgen: trex port <0> not support flow control
18/03/2021 16:53:36                         pktgen: check the trex port link status
18/03/2021 16:53:36                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:36                         pktgen: begin traffic ......
18/03/2021 16:53:36                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:53:41                         pktgen: begin get port statistic ...
18/03/2021 16:53:41                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1024.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1024.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:53:41                         pktgen: {0: {'ibytes': 18641539072,
     'ierrors': 0,
     'ipackets': 18204631,
     'obytes': 24551795712,
     'oerrors': 0,
     'opackets': 23976367,
     'rx_bps': 29166505984.0,
     'rx_bps_L1': 29752758143.999996,
     'rx_pps': 3664076.0,
     'rx_util': 74.38189535999999,
     'tx_bps': 38987038720.0,
     'tx_bps_L1': 39785029599.99999,
     'tx_pps': 4987443.0,
     'tx_util': 99.46257399999998},
 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.806882858276367,
            'cpu_util': 85.47209167480469,
            'cpu_util_raw': 88.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14696033,
            'rx_bps': 29166505984.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9820532736.0,
            'rx_pps': 3664076.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38987038720.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4987443.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 18641539072,
           'ierrors': 0,
           'ipackets': 18204631,
           'obytes': 24551795712,
           'oerrors': 0,
           'opackets': 23976367,
           'rx_bps': 29166505984.0,
           'rx_bps_L1': 29752758143.999996,
           'rx_pps': 3664076.0,
           'rx_util': 74.38189535999999,
           'tx_bps': 38987038720.0,
           'tx_bps_L1': 39785029599.99999,
           'tx_pps': 4987443.0,
           'tx_util': 99.46257399999998}}
18/03/2021 16:53:41                         pktgen: {'ibytes': 18641539072,
 'ierrors': 0,
 'ipackets': 18204631,
 'obytes': 24551795712,
 'oerrors': 0,
 'opackets': 23976367,
 'rx_bps': 29166505984.0,
 'rx_bps_L1': 29752758143.999996,
 'rx_pps': 3664076.0,
 'rx_util': 74.38189535999999,
 'tx_bps': 38987038720.0,
 'tx_bps_L1': 39785029599.99999,
 'tx_pps': 4987443.0,
 'tx_util': 99.46257399999998}
18/03/2021 16:53:41                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38987038720.000000, tx_pps: 4987443.000000 
18/03/2021 16:53:41                         pktgen: {'ibytes': 18641539072,
 'ierrors': 0,
 'ipackets': 18204631,
 'obytes': 24551795712,
 'oerrors': 0,
 'opackets': 23976367,
 'rx_bps': 29166505984.0,
 'rx_bps_L1': 29752758143.999996,
 'rx_pps': 3664076.0,
 'rx_util': 74.38189535999999,
 'tx_bps': 38987038720.0,
 'tx_bps_L1': 39785029599.99999,
 'tx_pps': 4987443.0,
 'tx_util': 99.46257399999998}
18/03/2021 16:53:41                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 29166505984.000000, rx_pps: 3664076.000000
18/03/2021 16:53:41                         pktgen: throughput: pps_rx 3664076.000000, bps_rx 29166505984.000000
18/03/2021 16:53:41                         pktgen: traffic completed. 
18/03/2021 16:53:41         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1518
18/03/2021 16:53:41                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:41                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:41                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:41                         pktgen: trex port <0> not support flow control
18/03/2021 16:53:41                         pktgen: check the trex port link status
18/03/2021 16:53:41                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:41                         pktgen: begin traffic ......
18/03/2021 16:53:41                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:53:46                         pktgen: begin get port statistic ...
18/03/2021 16:53:46                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:53:46                         pktgen: {0: {'ibytes': 23852708946,
     'ierrors': 0,
     'ipackets': 15713251,
     'obytes': 24700817064,
     'oerrors': 0,
     'opackets': 16271953,
     'rx_bps': 37740998656.0,
     'rx_bps_L1': 38246874576.0,
     'rx_pps': 3161724.5,
     'rx_util': 95.61718644,
     'tx_bps': 39456669696.0,
     'tx_bps_L1': 39988457136.0,
     'tx_pps': 3323671.5,
     'tx_util': 99.97114284},
 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.122573852539062,
            'cpu_util': 75.52217102050781,
            'cpu_util_raw': 76.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12553398,
            'rx_bps': 37740998656.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3161724.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39456669696.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3323671.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 23852708946,
           'ierrors': 0,
           'ipackets': 15713251,
           'obytes': 24700817064,
           'oerrors': 0,
           'opackets': 16271953,
           'rx_bps': 37740998656.0,
           'rx_bps_L1': 38246874576.0,
           'rx_pps': 3161724.5,
           'rx_util': 95.61718644,
           'tx_bps': 39456669696.0,
           'tx_bps_L1': 39988457136.0,
           'tx_pps': 3323671.5,
           'tx_util': 99.97114284}}
18/03/2021 16:53:46                         pktgen: {'ibytes': 23852708946,
 'ierrors': 0,
 'ipackets': 15713251,
 'obytes': 24700817064,
 'oerrors': 0,
 'opackets': 16271953,
 'rx_bps': 37740998656.0,
 'rx_bps_L1': 38246874576.0,
 'rx_pps': 3161724.5,
 'rx_util': 95.61718644,
 'tx_bps': 39456669696.0,
 'tx_bps_L1': 39988457136.0,
 'tx_pps': 3323671.5,
 'tx_util': 99.97114284}
18/03/2021 16:53:46                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39456669696.000000, tx_pps: 3323671.500000 
18/03/2021 16:53:46                         pktgen: {'ibytes': 23852708946,
 'ierrors': 0,
 'ipackets': 15713251,
 'obytes': 24700817064,
 'oerrors': 0,
 'opackets': 16271953,
 'rx_bps': 37740998656.0,
 'rx_bps_L1': 38246874576.0,
 'rx_pps': 3161724.5,
 'rx_util': 95.61718644,
 'tx_bps': 39456669696.0,
 'tx_bps_L1': 39988457136.0,
 'tx_pps': 3323671.5,
 'tx_util': 99.97114284}
18/03/2021 16:53:46                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 37740998656.000000, rx_pps: 3161724.500000
18/03/2021 16:53:46                         pktgen: throughput: pps_rx 3161724.500000, bps_rx 37740998656.000000
18/03/2021 16:53:46                         pktgen: traffic completed. 
18/03/2021 16:53:46         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| 64               | 7.074            |
+------------------+------------------+
| 512              | 4.672            |
+------------------+------------------+
| 1024             | 3.664            |
+------------------+------------------+
| 1518             | 3.162            |
+------------------+------------------+
18/03/2021 16:53:47         TestVswitchSampleCBDMA: 
+------------------+------------+------------------+
| Frame Size(Byte) |    Mode    | Throughput(Mpps) |
+==================+============+==================+
| 64               | cbdma_copy | 6.446            |
+------------------+------------+------------------+
| 512              | cbdma_copy | 4.552            |
+------------------+------------+------------------+
| 1024             | cbdma_copy | 3.396            |
+------------------+------------+------------------+
| 1518             | cbdma_copy | 2.920            |
+------------------+------------+------------------+
| 64               | sync_copy  | 5.565            |
+------------------+------------+------------------+
| 512              | sync_copy  | 4.767            |
+------------------+------------+------------------+
| 1024             | sync_copy  | 3.822            |
+------------------+------------+------------------+
| 1518             | sync_copy  | 3.261            |
+------------------+------------+------------------+
| 64               | cpu_copy   | 7.074            |
+------------------+------------+------------------+
| 512              | cpu_copy   | 4.672            |
+------------------+------------+------------------+
| 1024             | cpu_copy   | 3.664            |
+------------------+------------+------------------+
| 1518             | cpu_copy   | 3.162            |
+------------------+------------+------------------+
18/03/2021 16:53:47         TestVswitchSampleCBDMA: Test Case test_perf_check_with_cbdma_channel_using_vhost_async_driver Result PASSED:
18/03/2021 16:53:47             dut.10.240.183.220: modprobe ioatdma
18/03/2021 16:53:47             dut.10.240.183.220: 
18/03/2021 16:53:47             dut.10.240.183.220: ./usertools/dpdk-devbind.py -u 0000:80:04.0
18/03/2021 16:53:47             dut.10.240.183.220: 
18/03/2021 16:53:47             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=ioatdma  0000:80:04.0
18/03/2021 16:53:48             dut.10.240.183.220: 
18/03/2021 16:53:48         TestVswitchSampleCBDMA: Test Case test_perf_check_with_multiple_cbdma_channels_using_vhost_async_driver Begin
18/03/2021 16:53:48             dut.10.240.183.220: 
18/03/2021 16:53:48                         tester: 
18/03/2021 16:53:48             dut.10.240.183.220: rm -rf /root/dpdk/vhost-net*
18/03/2021 16:53:48             dut.10.240.183.220: 
18/03/2021 16:53:48             dut.10.240.183.220: killall -I qemu-system-x86_64
18/03/2021 16:53:48             dut.10.240.183.220: qemu-system-x86_64: no process found
18/03/2021 16:53:48             dut.10.240.183.220: ./usertools/dpdk-devbind.py --status-dev misc
18/03/2021 16:53:48             dut.10.240.183.220: 
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.0 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.1 '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 
18/03/2021 16:53:48             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=igb_uio 0000:80:04.0 0000:80:04.1
18/03/2021 16:53:49             dut.10.240.183.220: 
18/03/2021 16:53:49         TestVswitchSampleCBDMA: Configure async_threshold to 256
18/03/2021 16:53:49             dut.10.240.183.220: sed -i -e 's/f.async_threshold = .*$/f.async_threshold = 256;/' ./examples/vhost/main.c
18/03/2021 16:53:49             dut.10.240.183.220: 
18/03/2021 16:53:49             dut.10.240.183.220: meson configure -Dexamples=vhost x86_64-native-linuxapp-gcc
18/03/2021 16:53:49             dut.10.240.183.220: 
18/03/2021 16:53:49             dut.10.240.183.220: ninja -C x86_64-native-linuxapp-gcc
18/03/2021 16:53:54             dut.10.240.183.220: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 21.05.0-rc0
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
Program pkg-config found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
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)
Found pkg-config: /usr/bin/pkg-config (0.29.1)
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:238: 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 -Waddress-of-packed-member: YES (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: 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 -Wformat-truncation: YES (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_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/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Dependency jansson found: YES 2.12 (cached)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_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/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_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/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: NO (tried pkgconfig)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-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"
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 -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-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"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
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/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"
Message: drivers/net/bonding: Defining dependency "net_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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 -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wstrict-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/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 -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-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 -Wstrict-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)
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 -Wmaybe-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-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/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
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 -Wstrict-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 -Wstrict-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 -Wstrict-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"
Message: drivers/event/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
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"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
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"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-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, sfc_efx, qat, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ionic, 
	ipn3ke, ixgbe, kni, liquidio, memif, netvsc, nfp, null, 
	octeontx, octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, 
	softnic, tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
	
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

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/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: 1022

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
[1/2] Compiling C object examples/dpdk-vhost.p/vhost_main.c.o
[2/2] Linking target examples/dpdk-vhost
18/03/2021 16:53:54             dut.10.240.183.220: ls x86_64-native-linuxapp-gcc/examples/dpdk-vhost 
18/03/2021 16:53:55             dut.10.240.183.220: x86_64-native-linuxapp-gcc/examples/dpdk-vhost
18/03/2021 16:53:55         TestVswitchSampleCBDMA: Launch vhost app perf test
18/03/2021 16:53:59             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:53:59             dut.10.240.183.220: 1048576
18/03/2021 16:54:10             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:54:10             dut.10.240.183.220: 1048576
18/03/2021 16:54:21         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1518
18/03/2021 16:54:21                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:21                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:21                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:21                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:21                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:54:21                         pktgen: trex port <0> not support flow control
18/03/2021 16:54:21                         pktgen: check the trex port link status
18/03/2021 16:54:21                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:54:21                         pktgen: begin traffic ......
18/03/2021 16:54:21                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:54:26                         pktgen: begin get port statistic ...
18/03/2021 16:54:26                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:54:26                         pktgen: {0: {'ibytes': 22216512912,
     'ierrors': 0,
     'ipackets': 14635387,
     'obytes': 24701519898,
     'oerrors': 0,
     'opackets': 16272415,
     'rx_bps': 34191656960.0,
     'rx_bps_L1': 34642140080.0,
     'rx_pps': 2815519.5,
     'rx_util': 86.6053502,
     'tx_bps': 38098681856.0,
     'tx_bps_L1': 38600640816.0,
     'tx_pps': 3137243.5,
     'tx_util': 96.50160204},
 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': 36.602821350097656,
            'cpu_util': 52.043365478515625,
            'cpu_util_raw': 78.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12681075,
            'rx_bps': 34191656960.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 3907027456.0,
            'rx_pps': 2815519.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38098681856.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3137243.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 22216512912,
           'ierrors': 0,
           'ipackets': 14635387,
           'obytes': 24701519898,
           'oerrors': 0,
           'opackets': 16272415,
           'rx_bps': 34191656960.0,
           'rx_bps_L1': 34642140080.0,
           'rx_pps': 2815519.5,
           'rx_util': 86.6053502,
           'tx_bps': 38098681856.0,
           'tx_bps_L1': 38600640816.0,
           'tx_pps': 3137243.5,
           'tx_util': 96.50160204}}
18/03/2021 16:54:26                         pktgen: {'ibytes': 22216512912,
 'ierrors': 0,
 'ipackets': 14635387,
 'obytes': 24701519898,
 'oerrors': 0,
 'opackets': 16272415,
 'rx_bps': 34191656960.0,
 'rx_bps_L1': 34642140080.0,
 'rx_pps': 2815519.5,
 'rx_util': 86.6053502,
 'tx_bps': 38098681856.0,
 'tx_bps_L1': 38600640816.0,
 'tx_pps': 3137243.5,
 'tx_util': 96.50160204}
18/03/2021 16:54:26                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38098681856.000000, tx_pps: 3137243.500000 
18/03/2021 16:54:26                         pktgen: {'ibytes': 22216512912,
 'ierrors': 0,
 'ipackets': 14635387,
 'obytes': 24701519898,
 'oerrors': 0,
 'opackets': 16272415,
 'rx_bps': 34191656960.0,
 'rx_bps_L1': 34642140080.0,
 'rx_pps': 2815519.5,
 'rx_util': 86.6053502,
 'tx_bps': 38098681856.0,
 'tx_bps_L1': 38600640816.0,
 'tx_pps': 3137243.5,
 'tx_util': 96.50160204}
18/03/2021 16:54:26                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 34191656960.000000, rx_pps: 2815519.500000
18/03/2021 16:54:26                         pktgen: throughput: pps_rx 2815519.500000, bps_rx 34191656960.000000
18/03/2021 16:54:26                         pktgen: traffic completed. 
18/03/2021 16:54:26         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| 1518             | 2.816            |
+------------------+------------------+
18/03/2021 16:54:27         TestVswitchSampleCBDMA: Relaunch vhost app perf test
18/03/2021 16:54:31         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1518
18/03/2021 16:54:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:54:31                         pktgen: trex port <0> not support flow control
18/03/2021 16:54:31                         pktgen: check the trex port link status
18/03/2021 16:54:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:54:31                         pktgen: begin traffic ......
18/03/2021 16:54:31                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:54:36                         pktgen: begin get port statistic ...
18/03/2021 16:54:36                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:54:36                         pktgen: {0: {'ibytes': 22270541568,
     'ierrors': 0,
     'ipackets': 14670978,
     'obytes': 24705114522,
     'oerrors': 0,
     'opackets': 16274783,
     'rx_bps': 33530976256.0,
     'rx_bps_L1': 33972754976.000004,
     'rx_pps': 2761117.0,
     'rx_util': 84.93188744000001,
     'tx_bps': 37253832704.0,
     'tx_bps_L1': 37744660624.0,
     'tx_pps': 3067674.5,
     'tx_util': 94.36165156},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 32.59001159667969,
            'cpu_util': 57.15529251098633,
            'cpu_util_raw': 76.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12585680,
            'rx_bps': 33530976256.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 2761117.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37253832704.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3067674.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 22270541568,
           'ierrors': 0,
           'ipackets': 14670978,
           'obytes': 24705114522,
           'oerrors': 0,
           'opackets': 16274783,
           'rx_bps': 33530976256.0,
           'rx_bps_L1': 33972754976.000004,
           'rx_pps': 2761117.0,
           'rx_util': 84.93188744000001,
           'tx_bps': 37253832704.0,
           'tx_bps_L1': 37744660624.0,
           'tx_pps': 3067674.5,
           'tx_util': 94.36165156}}
18/03/2021 16:54:36                         pktgen: {'ibytes': 22270541568,
 'ierrors': 0,
 'ipackets': 14670978,
 'obytes': 24705114522,
 'oerrors': 0,
 'opackets': 16274783,
 'rx_bps': 33530976256.0,
 'rx_bps_L1': 33972754976.000004,
 'rx_pps': 2761117.0,
 'rx_util': 84.93188744000001,
 'tx_bps': 37253832704.0,
 'tx_bps_L1': 37744660624.0,
 'tx_pps': 3067674.5,
 'tx_util': 94.36165156}
18/03/2021 16:54:36                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37253832704.000000, tx_pps: 3067674.500000 
18/03/2021 16:54:36                         pktgen: {'ibytes': 22270541568,
 'ierrors': 0,
 'ipackets': 14670978,
 'obytes': 24705114522,
 'oerrors': 0,
 'opackets': 16274783,
 'rx_bps': 33530976256.0,
 'rx_bps_L1': 33972754976.000004,
 'rx_pps': 2761117.0,
 'rx_util': 84.93188744000001,
 'tx_bps': 37253832704.0,
 'tx_bps_L1': 37744660624.0,
 'tx_pps': 3067674.5,
 'tx_util': 94.36165156}
18/03/2021 16:54:36                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 33530976256.000000, rx_pps: 2761117.000000
18/03/2021 16:54:36                         pktgen: throughput: pps_rx 2761117.000000, bps_rx 33530976256.000000
18/03/2021 16:54:36                         pktgen: traffic completed. 
18/03/2021 16:54:36         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| 1518             | 2.761            |
+------------------+------------------+
18/03/2021 16:54:38         TestVswitchSampleCBDMA: 
+------------------+------------------------+------------------+
| Frame Size(Byte) |          Mode          | Throughput(Mpps) |
+==================+========================+==================+
| 1518             | Before Re-launch vhost | 2.816            |
+------------------+------------------------+------------------+
| 1518             | After Re-launch vhost  | 2.761            |
+------------------+------------------------+------------------+
18/03/2021 16:54:38         TestVswitchSampleCBDMA: Test Case test_perf_check_with_multiple_cbdma_channels_using_vhost_async_driver Result PASSED:
18/03/2021 16:54:38             dut.10.240.183.220: modprobe ioatdma
18/03/2021 16:54:38             dut.10.240.183.220: 
18/03/2021 16:54:38             dut.10.240.183.220: ./usertools/dpdk-devbind.py -u 0000:80:04.0 0000:80:04.1
18/03/2021 16:54:38             dut.10.240.183.220: 
18/03/2021 16:54:38             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=ioatdma  0000:80:04.0 0000:80:04.1
18/03/2021 16:54:39             dut.10.240.183.220: 
18/03/2021 16:54:39                            dts: 
TEST SUITE ENDED: TestVswitchSampleCBDMA
18/03/2021 16:54:39         TestVswitchSampleCBDMA: Configure MAX_QUEUES to 128
18/03/2021 16:54:39         TestVswitchSampleCBDMA: Configure async_threshold to 256

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

* Re: [dts] [PATCH V1 0/9] modify hard code bind cbdma device to igb_uio by drivername in execution.cfg
  2021-03-19  6:45 [dts] [PATCH V1 0/9] modify hard code bind cbdma device to igb_uio by drivername in execution.cfg Ling Wei
  2021-03-19  6:51 ` Ling, WeiX
@ 2021-03-22  1:34 ` Ling, WeiX
  1 sibling, 0 replies; 4+ messages in thread
From: Ling, WeiX @ 2021-03-22  1:34 UTC (permalink / raw)
  To: dts

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

> -----Original Message-----
> From: Ling, WeiX <weix.ling@intel.com>
> Sent: Friday, March 19, 2021 02:46 PM
> To: dts@dpdk.org
> Cc: Ling, WeiX <weix.ling@intel.com>
> Subject: [dts][PATCH V1 0/9] modify hard code bind cbdma device to igb_uio
> by drivername in execution.cfg
> 
Tested-by: Wei Ling <weix.ling@intel.com>

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

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

18/03/2021 16:51:40                            dts: 
TEST SUITE : TestVswitchSampleCBDMA
18/03/2021 16:51:40                            dts: NIC :        fortville_spirit
18/03/2021 16:51:40             dut.10.240.183.220: 
18/03/2021 16:51:40                         tester: 
18/03/2021 16:51:40         TestVswitchSampleCBDMA: Configure MAX_QUEUES to 512
18/03/2021 16:51:40             dut.10.240.183.220: sed -i -e 's/#define MAX_QUEUES .*$/#define MAX_QUEUES 512/' ./examples/vhost/main.c
18/03/2021 16:51:40             dut.10.240.183.220: 
18/03/2021 16:51:40                         tester: ls -d /tmp
18/03/2021 16:51:40                         tester: /tmp
18/03/2021 16:51:45             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:51:45             dut.10.240.183.220: 1048576
18/03/2021 16:51:45         TestVswitchSampleCBDMA: Test Case test_perf_check_with_cbdma_channel_using_vhost_async_driver Begin
18/03/2021 16:51:45             dut.10.240.183.220: 
18/03/2021 16:51:45                         tester: 
18/03/2021 16:51:45             dut.10.240.183.220: rm -rf /root/dpdk/vhost-net*
18/03/2021 16:51:45             dut.10.240.183.220: 
18/03/2021 16:51:45             dut.10.240.183.220: killall -I qemu-system-x86_64
18/03/2021 16:51:45             dut.10.240.183.220: qemu-system-x86_64: no process found
18/03/2021 16:51:45             dut.10.240.183.220: ./usertools/dpdk-devbind.py --status-dev misc
18/03/2021 16:51:46             dut.10.240.183.220: 
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.0 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.1 '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 
18/03/2021 16:51:46             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=igb_uio 0000:80:04.0
18/03/2021 16:51:46             dut.10.240.183.220: 
18/03/2021 16:51:46         TestVswitchSampleCBDMA: Configure async_threshold to 1518
18/03/2021 16:51:46             dut.10.240.183.220: sed -i -e 's/f.async_threshold = .*$/f.async_threshold = 1518;/' ./examples/vhost/main.c
18/03/2021 16:51:46             dut.10.240.183.220: 
18/03/2021 16:51:46             dut.10.240.183.220: meson configure -Dexamples=vhost x86_64-native-linuxapp-gcc
18/03/2021 16:51:46             dut.10.240.183.220: 
18/03/2021 16:51:46             dut.10.240.183.220: ninja -C x86_64-native-linuxapp-gcc
18/03/2021 16:51:52             dut.10.240.183.220: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 21.05.0-rc0
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
Program pkg-config found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
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)
Found pkg-config: /usr/bin/pkg-config (0.29.1)
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:238: 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 -Waddress-of-packed-member: YES (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: 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 -Wformat-truncation: YES (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_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/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Dependency jansson found: YES 2.12 (cached)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_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/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_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/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: NO (tried pkgconfig)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-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"
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 -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-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"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
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/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"
Message: drivers/net/bonding: Defining dependency "net_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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 -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wstrict-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/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 -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-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 -Wstrict-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)
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 -Wmaybe-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-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/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
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 -Wstrict-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 -Wstrict-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 -Wstrict-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"
Message: drivers/event/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
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"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
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"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-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, sfc_efx, qat, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ionic, 
	ipn3ke, ixgbe, kni, liquidio, memif, netvsc, nfp, null, 
	octeontx, octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, 
	softnic, tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
	
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

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/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: 1022

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
18/03/2021 16:51:52             dut.10.240.183.220: ls x86_64-native-linuxapp-gcc/examples/dpdk-vhost 
18/03/2021 16:51:52             dut.10.240.183.220: x86_64-native-linuxapp-gcc/examples/dpdk-vhost
18/03/2021 16:51:56             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:51:56             dut.10.240.183.220: 1048576
18/03/2021 16:52:07         TestVswitchSampleCBDMA: Test running at parameters: framesize: 64
18/03/2021 16:52:07                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:07                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:07                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:07                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:07                         pktgen: check the trex port link status
18/03/2021 16:52:07                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:07                         pktgen: begin traffic ......
18/03/2021 16:52:07                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:52:12                         pktgen: begin get port statistic ...
18/03/2021 16:52:12                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:52:12                         pktgen: {0: {'ibytes': 2345525632,
     'ierrors': 0,
     'ipackets': 34493024,
     'obytes': 8741064832,
     'oerrors': 0,
     'opackets': 136579174,
     'rx_bps': 3506536192.0,
     'rx_bps_L1': 4537870112.0,
     'rx_pps': 6445837.0,
     'rx_util': 11.344675279999999,
     'tx_bps': 13102115840.0,
     'tx_bps_L1': 17196528000.0,
     'tx_pps': 25590076.0,
     'tx_util': 42.99132},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 9.039351463317871,
            'cpu_util': 72.47265625,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12247835,
            'rx_bps': 3506536192.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9595580416.0,
            'rx_pps': 6445837.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13102115840.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 25590076.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 2345525632,
           'ierrors': 0,
           'ipackets': 34493024,
           'obytes': 8741064832,
           'oerrors': 0,
           'opackets': 136579174,
           'rx_bps': 3506536192.0,
           'rx_bps_L1': 4537870112.0,
           'rx_pps': 6445837.0,
           'rx_util': 11.344675279999999,
           'tx_bps': 13102115840.0,
           'tx_bps_L1': 17196528000.0,
           'tx_pps': 25590076.0,
           'tx_util': 42.99132}}
18/03/2021 16:52:12                         pktgen: {'ibytes': 2345525632,
 'ierrors': 0,
 'ipackets': 34493024,
 'obytes': 8741064832,
 'oerrors': 0,
 'opackets': 136579174,
 'rx_bps': 3506536192.0,
 'rx_bps_L1': 4537870112.0,
 'rx_pps': 6445837.0,
 'rx_util': 11.344675279999999,
 'tx_bps': 13102115840.0,
 'tx_bps_L1': 17196528000.0,
 'tx_pps': 25590076.0,
 'tx_util': 42.99132}
18/03/2021 16:52:12                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13102115840.000000, tx_pps: 25590076.000000 
18/03/2021 16:52:12                         pktgen: {'ibytes': 2345525632,
 'ierrors': 0,
 'ipackets': 34493024,
 'obytes': 8741064832,
 'oerrors': 0,
 'opackets': 136579174,
 'rx_bps': 3506536192.0,
 'rx_bps_L1': 4537870112.0,
 'rx_pps': 6445837.0,
 'rx_util': 11.344675279999999,
 'tx_bps': 13102115840.0,
 'tx_bps_L1': 17196528000.0,
 'tx_pps': 25590076.0,
 'tx_util': 42.99132}
18/03/2021 16:52:12                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3506536192.000000, rx_pps: 6445837.000000
18/03/2021 16:52:12                         pktgen: throughput: pps_rx 6445837.000000, bps_rx 3506536192.000000
18/03/2021 16:52:12                         pktgen: traffic completed. 
18/03/2021 16:52:12         TestVswitchSampleCBDMA: Test running at parameters: framesize: 512
18/03/2021 16:52:12                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:12                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:12                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:12                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:12                         pktgen: check the trex port link status
18/03/2021 16:52:12                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:12                         pktgen: begin traffic ......
18/03/2021 16:52:12                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:52:17                         pktgen: begin get port statistic ...
18/03/2021 16:52:17                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_512.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_512.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:52:17                         pktgen: {0: {'ibytes': 11345641472,
     'ierrors': 0,
     'ipackets': 22159465,
     'obytes': 24087319040,
     'oerrors': 0,
     'opackets': 47045553,
     'rx_bps': 17212784640.0,
     'rx_bps_L1': 17941154480.0,
     'rx_pps': 4552311.5,
     'rx_util': 44.8528862,
     'tx_bps': 36819423232.0,
     'tx_bps_L1': 38482037152.0,
     'tx_pps': 10391337.0,
     'tx_util': 96.20509288},
 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': 20.846206665039062,
            'cpu_util': 88.31204986572266,
            'cpu_util_raw': 94.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 15233405,
            'rx_bps': 17212784640.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 19606636544.0,
            'rx_pps': 4552311.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 36819423232.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 10391337.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 11345641472,
           'ierrors': 0,
           'ipackets': 22159465,
           'obytes': 24087319040,
           'oerrors': 0,
           'opackets': 47045553,
           'rx_bps': 17212784640.0,
           'rx_bps_L1': 17941154480.0,
           'rx_pps': 4552311.5,
           'rx_util': 44.8528862,
           'tx_bps': 36819423232.0,
           'tx_bps_L1': 38482037152.0,
           'tx_pps': 10391337.0,
           'tx_util': 96.20509288}}
18/03/2021 16:52:17                         pktgen: {'ibytes': 11345641472,
 'ierrors': 0,
 'ipackets': 22159465,
 'obytes': 24087319040,
 'oerrors': 0,
 'opackets': 47045553,
 'rx_bps': 17212784640.0,
 'rx_bps_L1': 17941154480.0,
 'rx_pps': 4552311.5,
 'rx_util': 44.8528862,
 'tx_bps': 36819423232.0,
 'tx_bps_L1': 38482037152.0,
 'tx_pps': 10391337.0,
 'tx_util': 96.20509288}
18/03/2021 16:52:17                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 36819423232.000000, tx_pps: 10391337.000000 
18/03/2021 16:52:17                         pktgen: {'ibytes': 11345641472,
 'ierrors': 0,
 'ipackets': 22159465,
 'obytes': 24087319040,
 'oerrors': 0,
 'opackets': 47045553,
 'rx_bps': 17212784640.0,
 'rx_bps_L1': 17941154480.0,
 'rx_pps': 4552311.5,
 'rx_util': 44.8528862,
 'tx_bps': 36819423232.0,
 'tx_bps_L1': 38482037152.0,
 'tx_pps': 10391337.0,
 'tx_util': 96.20509288}
18/03/2021 16:52:17                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 17212784640.000000, rx_pps: 4552311.500000
18/03/2021 16:52:17                         pktgen: throughput: pps_rx 4552311.500000, bps_rx 17212784640.000000
18/03/2021 16:52:17                         pktgen: traffic completed. 
18/03/2021 16:52:17         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1024
18/03/2021 16:52:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:17                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:17                         pktgen: check the trex port link status
18/03/2021 16:52:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:17                         pktgen: begin traffic ......
18/03/2021 16:52:17                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:52:22                         pktgen: begin get port statistic ...
18/03/2021 16:52:22                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1024.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1024.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:52:22                         pktgen: {0: {'ibytes': 17050960896,
     'ierrors': 0,
     'ipackets': 16651333,
     'obytes': 24546544640,
     'oerrors': 0,
     'opackets': 23971239,
     'rx_bps': 26660861952.0,
     'rx_bps_L1': 27204288112.0,
     'rx_pps': 3396413.5,
     'rx_util': 68.01072028,
     'tx_bps': 39125151744.0,
     'tx_bps_L1': 39940903584.0,
     'tx_pps': 5098449.0,
     'tx_util': 99.85225896},
 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.79421043395996,
            'cpu_util': 85.82256317138672,
            'cpu_util_raw': 88.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14625536,
            'rx_bps': 26660861952.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 12464290816.0,
            'rx_pps': 3396413.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39125151744.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 5098449.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 17050960896,
           'ierrors': 0,
           'ipackets': 16651333,
           'obytes': 24546544640,
           'oerrors': 0,
           'opackets': 23971239,
           'rx_bps': 26660861952.0,
           'rx_bps_L1': 27204288112.0,
           'rx_pps': 3396413.5,
           'rx_util': 68.01072028,
           'tx_bps': 39125151744.0,
           'tx_bps_L1': 39940903584.0,
           'tx_pps': 5098449.0,
           'tx_util': 99.85225896}}
18/03/2021 16:52:22                         pktgen: {'ibytes': 17050960896,
 'ierrors': 0,
 'ipackets': 16651333,
 'obytes': 24546544640,
 'oerrors': 0,
 'opackets': 23971239,
 'rx_bps': 26660861952.0,
 'rx_bps_L1': 27204288112.0,
 'rx_pps': 3396413.5,
 'rx_util': 68.01072028,
 'tx_bps': 39125151744.0,
 'tx_bps_L1': 39940903584.0,
 'tx_pps': 5098449.0,
 'tx_util': 99.85225896}
18/03/2021 16:52:22                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39125151744.000000, tx_pps: 5098449.000000 
18/03/2021 16:52:22                         pktgen: {'ibytes': 17050960896,
 'ierrors': 0,
 'ipackets': 16651333,
 'obytes': 24546544640,
 'oerrors': 0,
 'opackets': 23971239,
 'rx_bps': 26660861952.0,
 'rx_bps_L1': 27204288112.0,
 'rx_pps': 3396413.5,
 'rx_util': 68.01072028,
 'tx_bps': 39125151744.0,
 'tx_bps_L1': 39940903584.0,
 'tx_pps': 5098449.0,
 'tx_util': 99.85225896}
18/03/2021 16:52:22                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 26660861952.000000, rx_pps: 3396413.500000
18/03/2021 16:52:22                         pktgen: throughput: pps_rx 3396413.500000, bps_rx 26660861952.000000
18/03/2021 16:52:22                         pktgen: traffic completed. 
18/03/2021 16:52:22         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1518
18/03/2021 16:52:22                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:22                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:22                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:22                         pktgen: check the trex port link status
18/03/2021 16:52:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:22                         pktgen: begin traffic ......
18/03/2021 16:52:22                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:52:27                         pktgen: begin get port statistic ...
18/03/2021 16:52:27                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:52:27                         pktgen: {0: {'ibytes': 22012932414,
     'ierrors': 0,
     'ipackets': 14501276,
     'obytes': 24703557054,
     'oerrors': 0,
     'opackets': 16273756,
     'rx_bps': 34604150784.0,
     'rx_bps_L1': 35071305904.0,
     'rx_pps': 2919719.5,
     'rx_util': 87.67826476,
     'tx_bps': 39383760896.0,
     'tx_bps_L1': 39919571576.00001,
     'tx_pps': 3348816.75,
     'tx_util': 99.79892894000002},
 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.927047729492188,
            'cpu_util': 75.95111083984375,
            'cpu_util_raw': 77.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12591390,
            'rx_bps': 34604150784.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 4779609600.0,
            'rx_pps': 2919719.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39383760896.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3348816.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 22012932414,
           'ierrors': 0,
           'ipackets': 14501276,
           'obytes': 24703557054,
           'oerrors': 0,
           'opackets': 16273756,
           'rx_bps': 34604150784.0,
           'rx_bps_L1': 35071305904.0,
           'rx_pps': 2919719.5,
           'rx_util': 87.67826476,
           'tx_bps': 39383760896.0,
           'tx_bps_L1': 39919571576.00001,
           'tx_pps': 3348816.75,
           'tx_util': 99.79892894000002}}
18/03/2021 16:52:27                         pktgen: {'ibytes': 22012932414,
 'ierrors': 0,
 'ipackets': 14501276,
 'obytes': 24703557054,
 'oerrors': 0,
 'opackets': 16273756,
 'rx_bps': 34604150784.0,
 'rx_bps_L1': 35071305904.0,
 'rx_pps': 2919719.5,
 'rx_util': 87.67826476,
 'tx_bps': 39383760896.0,
 'tx_bps_L1': 39919571576.00001,
 'tx_pps': 3348816.75,
 'tx_util': 99.79892894000002}
18/03/2021 16:52:27                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39383760896.000000, tx_pps: 3348816.750000 
18/03/2021 16:52:27                         pktgen: {'ibytes': 22012932414,
 'ierrors': 0,
 'ipackets': 14501276,
 'obytes': 24703557054,
 'oerrors': 0,
 'opackets': 16273756,
 'rx_bps': 34604150784.0,
 'rx_bps_L1': 35071305904.0,
 'rx_pps': 2919719.5,
 'rx_util': 87.67826476,
 'tx_bps': 39383760896.0,
 'tx_bps_L1': 39919571576.00001,
 'tx_pps': 3348816.75,
 'tx_util': 99.79892894000002}
18/03/2021 16:52:27                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 34604150784.000000, rx_pps: 2919719.500000
18/03/2021 16:52:27                         pktgen: throughput: pps_rx 2919719.500000, bps_rx 34604150784.000000
18/03/2021 16:52:27                         pktgen: traffic completed. 
18/03/2021 16:52:27         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| 64               | 6.446            |
+------------------+------------------+
| 512              | 4.552            |
+------------------+------------------+
| 1024             | 3.396            |
+------------------+------------------+
| 1518             | 2.920            |
+------------------+------------------+
18/03/2021 16:52:28         TestVswitchSampleCBDMA: Configure async_threshold to 0
18/03/2021 16:52:28             dut.10.240.183.220: sed -i -e 's/f.async_threshold = .*$/f.async_threshold = 0;/' ./examples/vhost/main.c
18/03/2021 16:52:28             dut.10.240.183.220: 
18/03/2021 16:52:28             dut.10.240.183.220: meson configure -Dexamples=vhost x86_64-native-linuxapp-gcc
18/03/2021 16:52:29             dut.10.240.183.220: 
18/03/2021 16:52:29             dut.10.240.183.220: ninja -C x86_64-native-linuxapp-gcc
18/03/2021 16:52:34             dut.10.240.183.220: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 21.05.0-rc0
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
Program pkg-config found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
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)
Found pkg-config: /usr/bin/pkg-config (0.29.1)
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:238: 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 -Waddress-of-packed-member: YES (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: 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 -Wformat-truncation: YES (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_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/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Dependency jansson found: YES 2.12 (cached)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_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/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_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/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: NO (tried pkgconfig)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-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"
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 -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-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"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
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/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"
Message: drivers/net/bonding: Defining dependency "net_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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 -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wstrict-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/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 -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-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 -Wstrict-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)
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 -Wmaybe-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-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/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
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 -Wstrict-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 -Wstrict-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 -Wstrict-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"
Message: drivers/event/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
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"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
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"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-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, sfc_efx, qat, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ionic, 
	ipn3ke, ixgbe, kni, liquidio, memif, netvsc, nfp, null, 
	octeontx, octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, 
	softnic, tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
	
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

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/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: 1022

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
[1/2] Compiling C object examples/dpdk-vhost.p/vhost_main.c.o
[2/2] Linking target examples/dpdk-vhost
18/03/2021 16:52:34             dut.10.240.183.220: ls x86_64-native-linuxapp-gcc/examples/dpdk-vhost 
18/03/2021 16:52:34             dut.10.240.183.220: x86_64-native-linuxapp-gcc/examples/dpdk-vhost
18/03/2021 16:52:38             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:52:38             dut.10.240.183.220: 1048576
18/03/2021 16:52:49         TestVswitchSampleCBDMA: Test running at parameters: framesize: 64
18/03/2021 16:52:49                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:49                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:49                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:49                         pktgen: check the trex port link status
18/03/2021 16:52:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:49                         pktgen: begin traffic ......
18/03/2021 16:52:49                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:52:54                         pktgen: begin get port statistic ...
18/03/2021 16:52:54                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:52:54                         pktgen: {0: {'ibytes': 1988753092,
     'ierrors': 0,
     'ipackets': 29246369,
     'obytes': 8775812864,
     'oerrors': 0,
     'opackets': 137122119,
     'rx_bps': 3027557888.0,
     'rx_bps_L1': 3918015648.0,
     'rx_pps': 5565361.0,
     'rx_util': 9.79503912,
     'tx_bps': 13358281728.0,
     'tx_bps_L1': 17532745408.0,
     'tx_pps': 26090398.0,
     'tx_util': 43.83186352},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 9.705321311950684,
            'cpu_util': 68.81936645507812,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12195578,
            'rx_bps': 3027557888.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10330724352.0,
            'rx_pps': 5565361.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13358281728.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26090398.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 1988753092,
           'ierrors': 0,
           'ipackets': 29246369,
           'obytes': 8775812864,
           'oerrors': 0,
           'opackets': 137122119,
           'rx_bps': 3027557888.0,
           'rx_bps_L1': 3918015648.0,
           'rx_pps': 5565361.0,
           'rx_util': 9.79503912,
           'tx_bps': 13358281728.0,
           'tx_bps_L1': 17532745408.0,
           'tx_pps': 26090398.0,
           'tx_util': 43.83186352}}
18/03/2021 16:52:54                         pktgen: {'ibytes': 1988753092,
 'ierrors': 0,
 'ipackets': 29246369,
 'obytes': 8775812864,
 'oerrors': 0,
 'opackets': 137122119,
 'rx_bps': 3027557888.0,
 'rx_bps_L1': 3918015648.0,
 'rx_pps': 5565361.0,
 'rx_util': 9.79503912,
 'tx_bps': 13358281728.0,
 'tx_bps_L1': 17532745408.0,
 'tx_pps': 26090398.0,
 'tx_util': 43.83186352}
18/03/2021 16:52:54                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13358281728.000000, tx_pps: 26090398.000000 
18/03/2021 16:52:54                         pktgen: {'ibytes': 1988753092,
 'ierrors': 0,
 'ipackets': 29246369,
 'obytes': 8775812864,
 'oerrors': 0,
 'opackets': 137122119,
 'rx_bps': 3027557888.0,
 'rx_bps_L1': 3918015648.0,
 'rx_pps': 5565361.0,
 'rx_util': 9.79503912,
 'tx_bps': 13358281728.0,
 'tx_bps_L1': 17532745408.0,
 'tx_pps': 26090398.0,
 'tx_util': 43.83186352}
18/03/2021 16:52:54                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3027557888.000000, rx_pps: 5565361.000000
18/03/2021 16:52:54                         pktgen: throughput: pps_rx 5565361.000000, bps_rx 3027557888.000000
18/03/2021 16:52:54                         pktgen: traffic completed. 
18/03/2021 16:52:54         TestVswitchSampleCBDMA: Test running at parameters: framesize: 512
18/03/2021 16:52:54                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:54                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:54                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:54                         pktgen: check the trex port link status
18/03/2021 16:52:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:54                         pktgen: begin traffic ......
18/03/2021 16:52:54                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:52:59                         pktgen: begin get port statistic ...
18/03/2021 16:52:59                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_512.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_512.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:52:59                         pktgen: {0: {'ibytes': 12133838336,
     'ierrors': 0,
     'ipackets': 23698913,
     'obytes': 24088454144,
     'oerrors': 0,
     'opackets': 47047770,
     'rx_bps': 18659590144.0,
     'rx_bps_L1': 19422359264.0,
     'rx_pps': 4767307.0,
     'rx_util': 48.55589816,
     'tx_bps': 37361549312.0,
     'tx_bps_L1': 38981225152.0,
     'tx_pps': 10122974.0,
     'tx_util': 97.45306287999999},
 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.286298751831055,
            'cpu_util': 87.7596206665039,
            'cpu_util_raw': 95.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 15218989,
            'rx_bps': 18659590144.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 18701961216.0,
            'rx_pps': 4767307.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37361549312.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 10122974.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 12133838336,
           'ierrors': 0,
           'ipackets': 23698913,
           'obytes': 24088454144,
           'oerrors': 0,
           'opackets': 47047770,
           'rx_bps': 18659590144.0,
           'rx_bps_L1': 19422359264.0,
           'rx_pps': 4767307.0,
           'rx_util': 48.55589816,
           'tx_bps': 37361549312.0,
           'tx_bps_L1': 38981225152.0,
           'tx_pps': 10122974.0,
           'tx_util': 97.45306287999999}}
18/03/2021 16:52:59                         pktgen: {'ibytes': 12133838336,
 'ierrors': 0,
 'ipackets': 23698913,
 'obytes': 24088454144,
 'oerrors': 0,
 'opackets': 47047770,
 'rx_bps': 18659590144.0,
 'rx_bps_L1': 19422359264.0,
 'rx_pps': 4767307.0,
 'rx_util': 48.55589816,
 'tx_bps': 37361549312.0,
 'tx_bps_L1': 38981225152.0,
 'tx_pps': 10122974.0,
 'tx_util': 97.45306287999999}
18/03/2021 16:52:59                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37361549312.000000, tx_pps: 10122974.000000 
18/03/2021 16:52:59                         pktgen: {'ibytes': 12133838336,
 'ierrors': 0,
 'ipackets': 23698913,
 'obytes': 24088454144,
 'oerrors': 0,
 'opackets': 47047770,
 'rx_bps': 18659590144.0,
 'rx_bps_L1': 19422359264.0,
 'rx_pps': 4767307.0,
 'rx_util': 48.55589816,
 'tx_bps': 37361549312.0,
 'tx_bps_L1': 38981225152.0,
 'tx_pps': 10122974.0,
 'tx_util': 97.45306287999999}
18/03/2021 16:52:59                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 18659590144.000000, rx_pps: 4767307.000000
18/03/2021 16:52:59                         pktgen: throughput: pps_rx 4767307.000000, bps_rx 18659590144.000000
18/03/2021 16:52:59                         pktgen: traffic completed. 
18/03/2021 16:52:59         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1024
18/03/2021 16:52:59                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:59                         pktgen: test port 0 map gen port 0
18/03/2021 16:52:59                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:59                         pktgen: trex port <0> not support flow control
18/03/2021 16:52:59                         pktgen: check the trex port link status
18/03/2021 16:52:59                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:52:59                         pktgen: begin traffic ......
18/03/2021 16:52:59                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:53:04                         pktgen: begin get port statistic ...
18/03/2021 16:53:04                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1024.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1024.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:53:04                         pktgen: {0: {'ibytes': 19453355520,
     'ierrors': 0,
     'ipackets': 18997424,
     'obytes': 24549137408,
     'oerrors': 0,
     'opackets': 23973773,
     'rx_bps': 30428540928.0,
     'rx_bps_L1': 31040038288.000004,
     'rx_pps': 3821858.5,
     'rx_util': 77.60009572000001,
     'tx_bps': 38995636224.0,
     'tx_bps_L1': 39794489344.0,
     'tx_pps': 4992832.0,
     'tx_util': 99.48622336},
 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.728038787841797,
            'cpu_util': 85.78750610351562,
            'cpu_util_raw': 89.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14795159,
            'rx_bps': 30428540928.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 8567095808.0,
            'rx_pps': 3821858.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38995636224.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4992832.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 19453355520,
           'ierrors': 0,
           'ipackets': 18997424,
           'obytes': 24549137408,
           'oerrors': 0,
           'opackets': 23973773,
           'rx_bps': 30428540928.0,
           'rx_bps_L1': 31040038288.000004,
           'rx_pps': 3821858.5,
           'rx_util': 77.60009572000001,
           'tx_bps': 38995636224.0,
           'tx_bps_L1': 39794489344.0,
           'tx_pps': 4992832.0,
           'tx_util': 99.48622336}}
18/03/2021 16:53:04                         pktgen: {'ibytes': 19453355520,
 'ierrors': 0,
 'ipackets': 18997424,
 'obytes': 24549137408,
 'oerrors': 0,
 'opackets': 23973773,
 'rx_bps': 30428540928.0,
 'rx_bps_L1': 31040038288.000004,
 'rx_pps': 3821858.5,
 'rx_util': 77.60009572000001,
 'tx_bps': 38995636224.0,
 'tx_bps_L1': 39794489344.0,
 'tx_pps': 4992832.0,
 'tx_util': 99.48622336}
18/03/2021 16:53:04                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38995636224.000000, tx_pps: 4992832.000000 
18/03/2021 16:53:04                         pktgen: {'ibytes': 19453355520,
 'ierrors': 0,
 'ipackets': 18997424,
 'obytes': 24549137408,
 'oerrors': 0,
 'opackets': 23973773,
 'rx_bps': 30428540928.0,
 'rx_bps_L1': 31040038288.000004,
 'rx_pps': 3821858.5,
 'rx_util': 77.60009572000001,
 'tx_bps': 38995636224.0,
 'tx_bps_L1': 39794489344.0,
 'tx_pps': 4992832.0,
 'tx_util': 99.48622336}
18/03/2021 16:53:04                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 30428540928.000000, rx_pps: 3821858.500000
18/03/2021 16:53:04                         pktgen: throughput: pps_rx 3821858.500000, bps_rx 30428540928.000000
18/03/2021 16:53:04                         pktgen: traffic completed. 
18/03/2021 16:53:04         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1518
18/03/2021 16:53:04                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:04                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:04                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:04                         pktgen: trex port <0> not support flow control
18/03/2021 16:53:04                         pktgen: check the trex port link status
18/03/2021 16:53:04                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:04                         pktgen: begin traffic ......
18/03/2021 16:53:04                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:53:10                         pktgen: begin get port statistic ...
18/03/2021 16:53:10                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:53:10                         pktgen: {0: {'ibytes': 24707638956,
     'ierrors': 0,
     'ipackets': 16276445,
     'obytes': 24707767986,
     'oerrors': 0,
     'opackets': 16276531,
     'rx_bps': 38912671744.0,
     'rx_bps_L1': 39434508384.0,
     'rx_pps': 3261479.0,
     'rx_util': 98.58627096,
     'tx_bps': 39285764096.0,
     'tx_bps_L1': 39815513976.0,
     'tx_pps': 3310936.75,
     'tx_util': 99.53878494},
 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.781917572021484,
            'cpu_util': 76.1885986328125,
            'cpu_util_raw': 77.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12615665,
            'rx_bps': 38912671744.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3261479.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39285764096.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3310936.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 24707638956,
           'ierrors': 0,
           'ipackets': 16276445,
           'obytes': 24707767986,
           'oerrors': 0,
           'opackets': 16276531,
           'rx_bps': 38912671744.0,
           'rx_bps_L1': 39434508384.0,
           'rx_pps': 3261479.0,
           'rx_util': 98.58627096,
           'tx_bps': 39285764096.0,
           'tx_bps_L1': 39815513976.0,
           'tx_pps': 3310936.75,
           'tx_util': 99.53878494}}
18/03/2021 16:53:10                         pktgen: {'ibytes': 24707638956,
 'ierrors': 0,
 'ipackets': 16276445,
 'obytes': 24707767986,
 'oerrors': 0,
 'opackets': 16276531,
 'rx_bps': 38912671744.0,
 'rx_bps_L1': 39434508384.0,
 'rx_pps': 3261479.0,
 'rx_util': 98.58627096,
 'tx_bps': 39285764096.0,
 'tx_bps_L1': 39815513976.0,
 'tx_pps': 3310936.75,
 'tx_util': 99.53878494}
18/03/2021 16:53:10                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39285764096.000000, tx_pps: 3310936.750000 
18/03/2021 16:53:10                         pktgen: {'ibytes': 24707638956,
 'ierrors': 0,
 'ipackets': 16276445,
 'obytes': 24707767986,
 'oerrors': 0,
 'opackets': 16276531,
 'rx_bps': 38912671744.0,
 'rx_bps_L1': 39434508384.0,
 'rx_pps': 3261479.0,
 'rx_util': 98.58627096,
 'tx_bps': 39285764096.0,
 'tx_bps_L1': 39815513976.0,
 'tx_pps': 3310936.75,
 'tx_util': 99.53878494}
18/03/2021 16:53:10                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 38912671744.000000, rx_pps: 3261479.000000
18/03/2021 16:53:10                         pktgen: throughput: pps_rx 3261479.000000, bps_rx 38912671744.000000
18/03/2021 16:53:10                         pktgen: traffic completed. 
18/03/2021 16:53:10         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| 64               | 5.565            |
+------------------+------------------+
| 512              | 4.767            |
+------------------+------------------+
| 1024             | 3.822            |
+------------------+------------------+
| 1518             | 3.261            |
+------------------+------------------+
18/03/2021 16:53:14             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:53:15             dut.10.240.183.220: 1048576
18/03/2021 16:53:26         TestVswitchSampleCBDMA: Test running at parameters: framesize: 64
18/03/2021 16:53:26                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:26                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:26                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:26                         pktgen: trex port <0> not support flow control
18/03/2021 16:53:26                         pktgen: check the trex port link status
18/03/2021 16:53:26                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:26                         pktgen: begin traffic ......
18/03/2021 16:53:26                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:53:31                         pktgen: begin get port statistic ...
18/03/2021 16:53:31                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:53:31                         pktgen: {0: {'ibytes': 2517392640,
     'ierrors': 0,
     'ipackets': 37020501,
     'obytes': 8776952896,
     'oerrors': 0,
     'opackets': 137139901,
     'rx_bps': 3848065792.0,
     'rx_bps_L1': 4979841792.0,
     'rx_pps': 7073600.0,
     'rx_util': 12.44960448,
     'tx_bps': 13424875520.0,
     'tx_bps_L1': 17620142080.0,
     'tx_pps': 26220416.0,
     'tx_util': 44.0503552},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 9.703933715820312,
            'cpu_util': 69.1723403930664,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12156170,
            'rx_bps': 3848065792.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9576810496.0,
            'rx_pps': 7073600.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 13424875520.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 26220416.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 2517392640,
           'ierrors': 0,
           'ipackets': 37020501,
           'obytes': 8776952896,
           'oerrors': 0,
           'opackets': 137139901,
           'rx_bps': 3848065792.0,
           'rx_bps_L1': 4979841792.0,
           'rx_pps': 7073600.0,
           'rx_util': 12.44960448,
           'tx_bps': 13424875520.0,
           'tx_bps_L1': 17620142080.0,
           'tx_pps': 26220416.0,
           'tx_util': 44.0503552}}
18/03/2021 16:53:31                         pktgen: {'ibytes': 2517392640,
 'ierrors': 0,
 'ipackets': 37020501,
 'obytes': 8776952896,
 'oerrors': 0,
 'opackets': 137139901,
 'rx_bps': 3848065792.0,
 'rx_bps_L1': 4979841792.0,
 'rx_pps': 7073600.0,
 'rx_util': 12.44960448,
 'tx_bps': 13424875520.0,
 'tx_bps_L1': 17620142080.0,
 'tx_pps': 26220416.0,
 'tx_util': 44.0503552}
18/03/2021 16:53:31                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 13424875520.000000, tx_pps: 26220416.000000 
18/03/2021 16:53:31                         pktgen: {'ibytes': 2517392640,
 'ierrors': 0,
 'ipackets': 37020501,
 'obytes': 8776952896,
 'oerrors': 0,
 'opackets': 137139901,
 'rx_bps': 3848065792.0,
 'rx_bps_L1': 4979841792.0,
 'rx_pps': 7073600.0,
 'rx_util': 12.44960448,
 'tx_bps': 13424875520.0,
 'tx_bps_L1': 17620142080.0,
 'tx_pps': 26220416.0,
 'tx_util': 44.0503552}
18/03/2021 16:53:31                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3848065792.000000, rx_pps: 7073600.000000
18/03/2021 16:53:31                         pktgen: throughput: pps_rx 7073600.000000, bps_rx 3848065792.000000
18/03/2021 16:53:31                         pktgen: traffic completed. 
18/03/2021 16:53:31         TestVswitchSampleCBDMA: Test running at parameters: framesize: 512
18/03/2021 16:53:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:31                         pktgen: trex port <0> not support flow control
18/03/2021 16:53:31                         pktgen: check the trex port link status
18/03/2021 16:53:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:31                         pktgen: begin traffic ......
18/03/2021 16:53:31                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:53:36                         pktgen: begin get port statistic ...
18/03/2021 16:53:36                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_512.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_512.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:53:36                         pktgen: {0: {'ibytes': 11704906240,
     'ierrors': 0,
     'ipackets': 22861145,
     'obytes': 24087148544,
     'oerrors': 0,
     'opackets': 47045220,
     'rx_bps': 18054365184.0,
     'rx_bps_L1': 18801876384.0,
     'rx_pps': 4671945.0,
     'rx_util': 47.00469096,
     'tx_bps': 37429493760.0,
     'tx_bps_L1': 39049671680.0,
     'tx_pps': 10126112.0,
     'tx_util': 97.6241792},
 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.419206619262695,
            'cpu_util': 87.37367248535156,
            'cpu_util_raw': 94.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 15304037,
            'rx_bps': 18054365184.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 19375126528.0,
            'rx_pps': 4671945.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37429493760.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 10126112.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 11704906240,
           'ierrors': 0,
           'ipackets': 22861145,
           'obytes': 24087148544,
           'oerrors': 0,
           'opackets': 47045220,
           'rx_bps': 18054365184.0,
           'rx_bps_L1': 18801876384.0,
           'rx_pps': 4671945.0,
           'rx_util': 47.00469096,
           'tx_bps': 37429493760.0,
           'tx_bps_L1': 39049671680.0,
           'tx_pps': 10126112.0,
           'tx_util': 97.6241792}}
18/03/2021 16:53:36                         pktgen: {'ibytes': 11704906240,
 'ierrors': 0,
 'ipackets': 22861145,
 'obytes': 24087148544,
 'oerrors': 0,
 'opackets': 47045220,
 'rx_bps': 18054365184.0,
 'rx_bps_L1': 18801876384.0,
 'rx_pps': 4671945.0,
 'rx_util': 47.00469096,
 'tx_bps': 37429493760.0,
 'tx_bps_L1': 39049671680.0,
 'tx_pps': 10126112.0,
 'tx_util': 97.6241792}
18/03/2021 16:53:36                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37429493760.000000, tx_pps: 10126112.000000 
18/03/2021 16:53:36                         pktgen: {'ibytes': 11704906240,
 'ierrors': 0,
 'ipackets': 22861145,
 'obytes': 24087148544,
 'oerrors': 0,
 'opackets': 47045220,
 'rx_bps': 18054365184.0,
 'rx_bps_L1': 18801876384.0,
 'rx_pps': 4671945.0,
 'rx_util': 47.00469096,
 'tx_bps': 37429493760.0,
 'tx_bps_L1': 39049671680.0,
 'tx_pps': 10126112.0,
 'tx_util': 97.6241792}
18/03/2021 16:53:36                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 18054365184.000000, rx_pps: 4671945.000000
18/03/2021 16:53:36                         pktgen: throughput: pps_rx 4671945.000000, bps_rx 18054365184.000000
18/03/2021 16:53:36                         pktgen: traffic completed. 
18/03/2021 16:53:36         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1024
18/03/2021 16:53:36                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:36                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:36                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:36                         pktgen: trex port <0> not support flow control
18/03/2021 16:53:36                         pktgen: check the trex port link status
18/03/2021 16:53:36                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:36                         pktgen: begin traffic ......
18/03/2021 16:53:36                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:53:41                         pktgen: begin get port statistic ...
18/03/2021 16:53:41                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1024.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1024.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:53:41                         pktgen: {0: {'ibytes': 18641539072,
     'ierrors': 0,
     'ipackets': 18204631,
     'obytes': 24551795712,
     'oerrors': 0,
     'opackets': 23976367,
     'rx_bps': 29166505984.0,
     'rx_bps_L1': 29752758143.999996,
     'rx_pps': 3664076.0,
     'rx_util': 74.38189535999999,
     'tx_bps': 38987038720.0,
     'tx_bps_L1': 39785029599.99999,
     'tx_pps': 4987443.0,
     'tx_util': 99.46257399999998},
 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.806882858276367,
            'cpu_util': 85.47209167480469,
            'cpu_util_raw': 88.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 14696033,
            'rx_bps': 29166505984.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 9820532736.0,
            'rx_pps': 3664076.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38987038720.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 4987443.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 18641539072,
           'ierrors': 0,
           'ipackets': 18204631,
           'obytes': 24551795712,
           'oerrors': 0,
           'opackets': 23976367,
           'rx_bps': 29166505984.0,
           'rx_bps_L1': 29752758143.999996,
           'rx_pps': 3664076.0,
           'rx_util': 74.38189535999999,
           'tx_bps': 38987038720.0,
           'tx_bps_L1': 39785029599.99999,
           'tx_pps': 4987443.0,
           'tx_util': 99.46257399999998}}
18/03/2021 16:53:41                         pktgen: {'ibytes': 18641539072,
 'ierrors': 0,
 'ipackets': 18204631,
 'obytes': 24551795712,
 'oerrors': 0,
 'opackets': 23976367,
 'rx_bps': 29166505984.0,
 'rx_bps_L1': 29752758143.999996,
 'rx_pps': 3664076.0,
 'rx_util': 74.38189535999999,
 'tx_bps': 38987038720.0,
 'tx_bps_L1': 39785029599.99999,
 'tx_pps': 4987443.0,
 'tx_util': 99.46257399999998}
18/03/2021 16:53:41                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38987038720.000000, tx_pps: 4987443.000000 
18/03/2021 16:53:41                         pktgen: {'ibytes': 18641539072,
 'ierrors': 0,
 'ipackets': 18204631,
 'obytes': 24551795712,
 'oerrors': 0,
 'opackets': 23976367,
 'rx_bps': 29166505984.0,
 'rx_bps_L1': 29752758143.999996,
 'rx_pps': 3664076.0,
 'rx_util': 74.38189535999999,
 'tx_bps': 38987038720.0,
 'tx_bps_L1': 39785029599.99999,
 'tx_pps': 4987443.0,
 'tx_util': 99.46257399999998}
18/03/2021 16:53:41                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 29166505984.000000, rx_pps: 3664076.000000
18/03/2021 16:53:41                         pktgen: throughput: pps_rx 3664076.000000, bps_rx 29166505984.000000
18/03/2021 16:53:41                         pktgen: traffic completed. 
18/03/2021 16:53:41         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1518
18/03/2021 16:53:41                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:41                         pktgen: test port 0 map gen port 0
18/03/2021 16:53:41                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:41                         pktgen: trex port <0> not support flow control
18/03/2021 16:53:41                         pktgen: check the trex port link status
18/03/2021 16:53:41                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:53:41                         pktgen: begin traffic ......
18/03/2021 16:53:41                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:53:46                         pktgen: begin get port statistic ...
18/03/2021 16:53:46                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:53:46                         pktgen: {0: {'ibytes': 23852708946,
     'ierrors': 0,
     'ipackets': 15713251,
     'obytes': 24700817064,
     'oerrors': 0,
     'opackets': 16271953,
     'rx_bps': 37740998656.0,
     'rx_bps_L1': 38246874576.0,
     'rx_pps': 3161724.5,
     'rx_util': 95.61718644,
     'tx_bps': 39456669696.0,
     'tx_bps_L1': 39988457136.0,
     'tx_pps': 3323671.5,
     'tx_util': 99.97114284},
 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.122573852539062,
            'cpu_util': 75.52217102050781,
            'cpu_util_raw': 76.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12553398,
            'rx_bps': 37740998656.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3161724.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39456669696.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3323671.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 23852708946,
           'ierrors': 0,
           'ipackets': 15713251,
           'obytes': 24700817064,
           'oerrors': 0,
           'opackets': 16271953,
           'rx_bps': 37740998656.0,
           'rx_bps_L1': 38246874576.0,
           'rx_pps': 3161724.5,
           'rx_util': 95.61718644,
           'tx_bps': 39456669696.0,
           'tx_bps_L1': 39988457136.0,
           'tx_pps': 3323671.5,
           'tx_util': 99.97114284}}
18/03/2021 16:53:46                         pktgen: {'ibytes': 23852708946,
 'ierrors': 0,
 'ipackets': 15713251,
 'obytes': 24700817064,
 'oerrors': 0,
 'opackets': 16271953,
 'rx_bps': 37740998656.0,
 'rx_bps_L1': 38246874576.0,
 'rx_pps': 3161724.5,
 'rx_util': 95.61718644,
 'tx_bps': 39456669696.0,
 'tx_bps_L1': 39988457136.0,
 'tx_pps': 3323671.5,
 'tx_util': 99.97114284}
18/03/2021 16:53:46                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39456669696.000000, tx_pps: 3323671.500000 
18/03/2021 16:53:46                         pktgen: {'ibytes': 23852708946,
 'ierrors': 0,
 'ipackets': 15713251,
 'obytes': 24700817064,
 'oerrors': 0,
 'opackets': 16271953,
 'rx_bps': 37740998656.0,
 'rx_bps_L1': 38246874576.0,
 'rx_pps': 3161724.5,
 'rx_util': 95.61718644,
 'tx_bps': 39456669696.0,
 'tx_bps_L1': 39988457136.0,
 'tx_pps': 3323671.5,
 'tx_util': 99.97114284}
18/03/2021 16:53:46                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 37740998656.000000, rx_pps: 3161724.500000
18/03/2021 16:53:46                         pktgen: throughput: pps_rx 3161724.500000, bps_rx 37740998656.000000
18/03/2021 16:53:46                         pktgen: traffic completed. 
18/03/2021 16:53:46         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| 64               | 7.074            |
+------------------+------------------+
| 512              | 4.672            |
+------------------+------------------+
| 1024             | 3.664            |
+------------------+------------------+
| 1518             | 3.162            |
+------------------+------------------+
18/03/2021 16:53:47         TestVswitchSampleCBDMA: 
+------------------+------------+------------------+
| Frame Size(Byte) |    Mode    | Throughput(Mpps) |
+==================+============+==================+
| 64               | cbdma_copy | 6.446            |
+------------------+------------+------------------+
| 512              | cbdma_copy | 4.552            |
+------------------+------------+------------------+
| 1024             | cbdma_copy | 3.396            |
+------------------+------------+------------------+
| 1518             | cbdma_copy | 2.920            |
+------------------+------------+------------------+
| 64               | sync_copy  | 5.565            |
+------------------+------------+------------------+
| 512              | sync_copy  | 4.767            |
+------------------+------------+------------------+
| 1024             | sync_copy  | 3.822            |
+------------------+------------+------------------+
| 1518             | sync_copy  | 3.261            |
+------------------+------------+------------------+
| 64               | cpu_copy   | 7.074            |
+------------------+------------+------------------+
| 512              | cpu_copy   | 4.672            |
+------------------+------------+------------------+
| 1024             | cpu_copy   | 3.664            |
+------------------+------------+------------------+
| 1518             | cpu_copy   | 3.162            |
+------------------+------------+------------------+
18/03/2021 16:53:47         TestVswitchSampleCBDMA: Test Case test_perf_check_with_cbdma_channel_using_vhost_async_driver Result PASSED:
18/03/2021 16:53:47             dut.10.240.183.220: modprobe ioatdma
18/03/2021 16:53:47             dut.10.240.183.220: 
18/03/2021 16:53:47             dut.10.240.183.220: ./usertools/dpdk-devbind.py -u 0000:80:04.0
18/03/2021 16:53:47             dut.10.240.183.220: 
18/03/2021 16:53:47             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=ioatdma  0000:80:04.0
18/03/2021 16:53:48             dut.10.240.183.220: 
18/03/2021 16:53:48         TestVswitchSampleCBDMA: Test Case test_perf_check_with_multiple_cbdma_channels_using_vhost_async_driver Begin
18/03/2021 16:53:48             dut.10.240.183.220: 
18/03/2021 16:53:48                         tester: 
18/03/2021 16:53:48             dut.10.240.183.220: rm -rf /root/dpdk/vhost-net*
18/03/2021 16:53:48             dut.10.240.183.220: 
18/03/2021 16:53:48             dut.10.240.183.220: killall -I qemu-system-x86_64
18/03/2021 16:53:48             dut.10.240.183.220: qemu-system-x86_64: no process found
18/03/2021 16:53:48             dut.10.240.183.220: ./usertools/dpdk-devbind.py --status-dev misc
18/03/2021 16:53:48             dut.10.240.183.220: 
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.0 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.1 '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 
18/03/2021 16:53:48             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=igb_uio 0000:80:04.0 0000:80:04.1
18/03/2021 16:53:49             dut.10.240.183.220: 
18/03/2021 16:53:49         TestVswitchSampleCBDMA: Configure async_threshold to 256
18/03/2021 16:53:49             dut.10.240.183.220: sed -i -e 's/f.async_threshold = .*$/f.async_threshold = 256;/' ./examples/vhost/main.c
18/03/2021 16:53:49             dut.10.240.183.220: 
18/03/2021 16:53:49             dut.10.240.183.220: meson configure -Dexamples=vhost x86_64-native-linuxapp-gcc
18/03/2021 16:53:49             dut.10.240.183.220: 
18/03/2021 16:53:49             dut.10.240.183.220: ninja -C x86_64-native-linuxapp-gcc
18/03/2021 16:53:54             dut.10.240.183.220: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 21.05.0-rc0
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
Program pkg-config found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
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)
Found pkg-config: /usr/bin/pkg-config (0.29.1)
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:238: 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 -Waddress-of-packed-member: YES (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: 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 -Wformat-truncation: YES (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_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/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Dependency jansson found: YES 2.12 (cached)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_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/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_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/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: NO (tried pkgconfig)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-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"
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 -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-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"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
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/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"
Message: drivers/net/bonding: Defining dependency "net_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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 -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wstrict-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/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 -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-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 -Wstrict-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)
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 -Wmaybe-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-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/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
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 -Wstrict-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 -Wstrict-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 -Wstrict-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"
Message: drivers/event/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
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"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
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"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-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, sfc_efx, qat, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ionic, 
	ipn3ke, ixgbe, kni, liquidio, memif, netvsc, nfp, null, 
	octeontx, octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, 
	softnic, tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
	
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

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/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: 1022

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
[1/2] Compiling C object examples/dpdk-vhost.p/vhost_main.c.o
[2/2] Linking target examples/dpdk-vhost
18/03/2021 16:53:54             dut.10.240.183.220: ls x86_64-native-linuxapp-gcc/examples/dpdk-vhost 
18/03/2021 16:53:55             dut.10.240.183.220: x86_64-native-linuxapp-gcc/examples/dpdk-vhost
18/03/2021 16:53:55         TestVswitchSampleCBDMA: Launch vhost app perf test
18/03/2021 16:53:59             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:53:59             dut.10.240.183.220: 1048576
18/03/2021 16:54:10             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:54:10             dut.10.240.183.220: 1048576
18/03/2021 16:54:21         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1518
18/03/2021 16:54:21                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:21                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:21                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:21                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:21                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:54:21                         pktgen: trex port <0> not support flow control
18/03/2021 16:54:21                         pktgen: check the trex port link status
18/03/2021 16:54:21                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:54:21                         pktgen: begin traffic ......
18/03/2021 16:54:21                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:54:26                         pktgen: begin get port statistic ...
18/03/2021 16:54:26                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:54:26                         pktgen: {0: {'ibytes': 22216512912,
     'ierrors': 0,
     'ipackets': 14635387,
     'obytes': 24701519898,
     'oerrors': 0,
     'opackets': 16272415,
     'rx_bps': 34191656960.0,
     'rx_bps_L1': 34642140080.0,
     'rx_pps': 2815519.5,
     'rx_util': 86.6053502,
     'tx_bps': 38098681856.0,
     'tx_bps_L1': 38600640816.0,
     'tx_pps': 3137243.5,
     'tx_util': 96.50160204},
 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': 36.602821350097656,
            'cpu_util': 52.043365478515625,
            'cpu_util_raw': 78.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12681075,
            'rx_bps': 34191656960.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 3907027456.0,
            'rx_pps': 2815519.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 38098681856.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3137243.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 22216512912,
           'ierrors': 0,
           'ipackets': 14635387,
           'obytes': 24701519898,
           'oerrors': 0,
           'opackets': 16272415,
           'rx_bps': 34191656960.0,
           'rx_bps_L1': 34642140080.0,
           'rx_pps': 2815519.5,
           'rx_util': 86.6053502,
           'tx_bps': 38098681856.0,
           'tx_bps_L1': 38600640816.0,
           'tx_pps': 3137243.5,
           'tx_util': 96.50160204}}
18/03/2021 16:54:26                         pktgen: {'ibytes': 22216512912,
 'ierrors': 0,
 'ipackets': 14635387,
 'obytes': 24701519898,
 'oerrors': 0,
 'opackets': 16272415,
 'rx_bps': 34191656960.0,
 'rx_bps_L1': 34642140080.0,
 'rx_pps': 2815519.5,
 'rx_util': 86.6053502,
 'tx_bps': 38098681856.0,
 'tx_bps_L1': 38600640816.0,
 'tx_pps': 3137243.5,
 'tx_util': 96.50160204}
18/03/2021 16:54:26                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 38098681856.000000, tx_pps: 3137243.500000 
18/03/2021 16:54:26                         pktgen: {'ibytes': 22216512912,
 'ierrors': 0,
 'ipackets': 14635387,
 'obytes': 24701519898,
 'oerrors': 0,
 'opackets': 16272415,
 'rx_bps': 34191656960.0,
 'rx_bps_L1': 34642140080.0,
 'rx_pps': 2815519.5,
 'rx_util': 86.6053502,
 'tx_bps': 38098681856.0,
 'tx_bps_L1': 38600640816.0,
 'tx_pps': 3137243.5,
 'tx_util': 96.50160204}
18/03/2021 16:54:26                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 34191656960.000000, rx_pps: 2815519.500000
18/03/2021 16:54:26                         pktgen: throughput: pps_rx 2815519.500000, bps_rx 34191656960.000000
18/03/2021 16:54:26                         pktgen: traffic completed. 
18/03/2021 16:54:26         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| 1518             | 2.816            |
+------------------+------------------+
18/03/2021 16:54:27         TestVswitchSampleCBDMA: Relaunch vhost app perf test
18/03/2021 16:54:31         TestVswitchSampleCBDMA: Test running at parameters: framesize: 1518
18/03/2021 16:54:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:54:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:54:31                         pktgen: trex port <0> not support flow control
18/03/2021 16:54:31                         pktgen: check the trex port link status
18/03/2021 16:54:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:54:31                         pktgen: begin traffic ......
18/03/2021 16:54:31                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:54:36                         pktgen: begin get port statistic ...
18/03/2021 16:54:36                         pktgen: {'options': {'pcap': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vswitch_sample_cbdma_0_00:11:22:33:44:10_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:54:36                         pktgen: {0: {'ibytes': 22270541568,
     'ierrors': 0,
     'ipackets': 14670978,
     'obytes': 24705114522,
     'oerrors': 0,
     'opackets': 16274783,
     'rx_bps': 33530976256.0,
     'rx_bps_L1': 33972754976.000004,
     'rx_pps': 2761117.0,
     'rx_util': 84.93188744000001,
     'tx_bps': 37253832704.0,
     'tx_bps_L1': 37744660624.0,
     'tx_pps': 3067674.5,
     'tx_util': 94.36165156},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 32.59001159667969,
            'cpu_util': 57.15529251098633,
            'cpu_util_raw': 76.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 12585680,
            'rx_bps': 33530976256.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 2761117.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 37253832704.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3067674.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 22270541568,
           'ierrors': 0,
           'ipackets': 14670978,
           'obytes': 24705114522,
           'oerrors': 0,
           'opackets': 16274783,
           'rx_bps': 33530976256.0,
           'rx_bps_L1': 33972754976.000004,
           'rx_pps': 2761117.0,
           'rx_util': 84.93188744000001,
           'tx_bps': 37253832704.0,
           'tx_bps_L1': 37744660624.0,
           'tx_pps': 3067674.5,
           'tx_util': 94.36165156}}
18/03/2021 16:54:36                         pktgen: {'ibytes': 22270541568,
 'ierrors': 0,
 'ipackets': 14670978,
 'obytes': 24705114522,
 'oerrors': 0,
 'opackets': 16274783,
 'rx_bps': 33530976256.0,
 'rx_bps_L1': 33972754976.000004,
 'rx_pps': 2761117.0,
 'rx_util': 84.93188744000001,
 'tx_bps': 37253832704.0,
 'tx_bps_L1': 37744660624.0,
 'tx_pps': 3067674.5,
 'tx_util': 94.36165156}
18/03/2021 16:54:36                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 37253832704.000000, tx_pps: 3067674.500000 
18/03/2021 16:54:36                         pktgen: {'ibytes': 22270541568,
 'ierrors': 0,
 'ipackets': 14670978,
 'obytes': 24705114522,
 'oerrors': 0,
 'opackets': 16274783,
 'rx_bps': 33530976256.0,
 'rx_bps_L1': 33972754976.000004,
 'rx_pps': 2761117.0,
 'rx_util': 84.93188744000001,
 'tx_bps': 37253832704.0,
 'tx_bps_L1': 37744660624.0,
 'tx_pps': 3067674.5,
 'tx_util': 94.36165156}
18/03/2021 16:54:36                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 33530976256.000000, rx_pps: 2761117.000000
18/03/2021 16:54:36                         pktgen: throughput: pps_rx 2761117.000000, bps_rx 33530976256.000000
18/03/2021 16:54:36                         pktgen: traffic completed. 
18/03/2021 16:54:36         TestVswitchSampleCBDMA: 
+------------------+------------------+
| Frame Size(Byte) | Throughput(Mpps) |
+==================+==================+
| 1518             | 2.761            |
+------------------+------------------+
18/03/2021 16:54:38         TestVswitchSampleCBDMA: 
+------------------+------------------------+------------------+
| Frame Size(Byte) |          Mode          | Throughput(Mpps) |
+==================+========================+==================+
| 1518             | Before Re-launch vhost | 2.816            |
+------------------+------------------------+------------------+
| 1518             | After Re-launch vhost  | 2.761            |
+------------------+------------------------+------------------+
18/03/2021 16:54:38         TestVswitchSampleCBDMA: Test Case test_perf_check_with_multiple_cbdma_channels_using_vhost_async_driver Result PASSED:
18/03/2021 16:54:38             dut.10.240.183.220: modprobe ioatdma
18/03/2021 16:54:38             dut.10.240.183.220: 
18/03/2021 16:54:38             dut.10.240.183.220: ./usertools/dpdk-devbind.py -u 0000:80:04.0 0000:80:04.1
18/03/2021 16:54:38             dut.10.240.183.220: 
18/03/2021 16:54:38             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=ioatdma  0000:80:04.0 0000:80:04.1
18/03/2021 16:54:39             dut.10.240.183.220: 
18/03/2021 16:54:39                            dts: 
TEST SUITE ENDED: TestVswitchSampleCBDMA
18/03/2021 16:54:39         TestVswitchSampleCBDMA: Configure MAX_QUEUES to 128
18/03/2021 16:54:39         TestVswitchSampleCBDMA: Configure async_threshold to 256

[-- Attachment #4: TestCBDMA.log --]
[-- Type: application/octet-stream, Size: 438399 bytes --]

[-- Attachment #5: TestDPDKGROLib.log --]
[-- Type: application/octet-stream, Size: 260430 bytes --]

[-- Attachment #6: TestVhostUserInterrupt.log --]
[-- Type: application/octet-stream, Size: 37363 bytes --]

18/03/2021 17:59:36                            dts: 
TEST SUITE : TestVhostUserInterrupt
18/03/2021 17:59:36                            dts: NIC :        fortville_spirit
18/03/2021 17:59:36             dut.10.240.183.220: 
18/03/2021 17:59:37                         tester: 
18/03/2021 17:59:37             dut.10.240.183.220: cp ./examples/l3fwd-power/main.c .
18/03/2021 17:59:37             dut.10.240.183.220: 
18/03/2021 17:59:37             dut.10.240.183.220: sed -i '/DEV_RX_OFFLOAD_CHECKSUM/d' ./examples/l3fwd-power/main.c
18/03/2021 17:59:37             dut.10.240.183.220: 
18/03/2021 17:59:37             dut.10.240.183.220: meson configure -Dexamples=l3fwd-power x86_64-native-linuxapp-gcc
18/03/2021 17:59:37             dut.10.240.183.220: 
18/03/2021 17:59:37             dut.10.240.183.220: ninja -C x86_64-native-linuxapp-gcc
18/03/2021 17:59:42             dut.10.240.183.220: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Regenerating build files.
The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 21.05.0-rc0
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
Program pkg-config found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
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)
Found pkg-config: /usr/bin/pkg-config (0.29.1)
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:238: 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 -Waddress-of-packed-member: YES (cached)
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES (cached)
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: 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 -Wformat-truncation: YES (cached)
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES (cached)
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_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/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Dependency jansson found: YES 2.12 (cached)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_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/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES (cached)
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_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/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: NO (tried pkgconfig)
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-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"
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 -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-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"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
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/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"
Message: drivers/net/bonding: Defining dependency "net_bond"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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 -Wuninitialized: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES (cached)
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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 -Wstrict-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/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 -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES (cached)
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO (cached)
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO (cached)
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO (cached)
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-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 -Wstrict-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)
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 -Wmaybe-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-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/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
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 -Wstrict-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 -Wstrict-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 -Wstrict-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"
Message: drivers/event/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
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"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
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"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-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, sfc_efx, qat, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ionic, 
	ipn3ke, ixgbe, kni, liquidio, memif, netvsc, nfp, null, 
	octeontx, octeontx2, octeontx_ep, pcap, pfe, qede, ring, sfc, 
	softnic, tap, thunderx, txgbe, vdev_netvsc, vhost, virtio, vmxnet3, 
	
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

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/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: 1022

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
[1/3] Compiling C object examples/dpdk-l3fwd-power.p/l3fwd-power_perf_core.c.o
[2/3] Compiling C object examples/dpdk-l3fwd-power.p/l3fwd-power_main.c.o
[3/3] Linking target examples/dpdk-l3fwd-power
18/03/2021 17:59:42             dut.10.240.183.220: ls x86_64-native-linuxapp-gcc/examples/dpdk-l3fwd-power 
18/03/2021 17:59:42             dut.10.240.183.220: x86_64-native-linuxapp-gcc/examples/dpdk-l3fwd-power
18/03/2021 17:59:42             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 17:59:42             dut.10.240.183.220: 1048576
18/03/2021 17:59:42         TestVhostUserInterrupt: Test Case test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled_and_cbdma_enabled Begin
18/03/2021 17:59:43             dut.10.240.183.220: 
18/03/2021 17:59:43                         tester: 
18/03/2021 17:59:43             dut.10.240.183.220: killall -s INT dpdk-testpmd 
18/03/2021 17:59:43             dut.10.240.183.220: dpdk-testpmd: no process found
18/03/2021 17:59:43             dut.10.240.183.220: killall dpdk-l3fwd-power 
18/03/2021 17:59:43             dut.10.240.183.220: dpdk-l3fwd-power: no process found
18/03/2021 17:59:43             dut.10.240.183.220: rm -rf ./vhost-net*
18/03/2021 17:59:43             dut.10.240.183.220: 
18/03/2021 17:59:46             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 17:59:46             dut.10.240.183.220: 1048576
18/03/2021 17:59:47         TestVhostUserInterrupt: Launch l3fwd_sample sample:
18/03/2021 17:59:47             dut.10.240.183.220: ./usertools/dpdk-devbind.py --status-dev misc
18/03/2021 17:59:47             dut.10.240.183.220: 
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.0 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.1 '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 
18/03/2021 17:59:47             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=igb_uio 0000:80:04.0 0000:80:04.1 0000:80:04.2 0000:80:04.3
18/03/2021 17:59:47             dut.10.240.183.220: 
18/03/2021 18:00:15         TestVhostUserInterrupt: Launch l3fwd-power sample finished
18/03/2021 18:00:30         TestVhostUserInterrupt: lcore 6 is waked up from rx interrupt on port 0 queue 0
18/03/2021 18:00:30         TestVhostUserInterrupt: lcore 7 is waked up from rx interrupt on port 0 queue 1
18/03/2021 18:00:30         TestVhostUserInterrupt: lcore 8 is waked up from rx interrupt on port 0 queue 2
18/03/2021 18:00:30         TestVhostUserInterrupt: lcore 9 is waked up from rx interrupt on port 0 queue 3
18/03/2021 18:00:45         TestVhostUserInterrupt: lcore 6 sleeps until interrupt triggers
18/03/2021 18:00:45         TestVhostUserInterrupt: lcore 7 sleeps until interrupt triggers
18/03/2021 18:00:45         TestVhostUserInterrupt: lcore 8 sleeps until interrupt triggers
18/03/2021 18:00:45         TestVhostUserInterrupt: lcore 9 sleeps until interrupt triggers
18/03/2021 18:01:01         TestVhostUserInterrupt: lcore 6 is waked up from rx interrupt on port 0 queue 0
18/03/2021 18:01:01         TestVhostUserInterrupt: lcore 7 is waked up from rx interrupt on port 0 queue 1
18/03/2021 18:01:01         TestVhostUserInterrupt: lcore 8 is waked up from rx interrupt on port 0 queue 2
18/03/2021 18:01:01         TestVhostUserInterrupt: lcore 9 is waked up from rx interrupt on port 0 queue 3
18/03/2021 18:01:01         TestVhostUserInterrupt: Test Case test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled_and_cbdma_enabled Result PASSED:
18/03/2021 18:01:02             dut.10.240.183.220: killall dpdk-l3fwd-power 
18/03/2021 18:01:02             dut.10.240.183.220: dpdk-l3fwd-power: no process found
18/03/2021 18:01:02             dut.10.240.183.220: killall -s INT dpdk-testpmd 
18/03/2021 18:01:02             dut.10.240.183.220: dpdk-testpmd: no process found
18/03/2021 18:01:02             dut.10.240.183.220: kill_all: called by dut and prefix list has value.
18/03/2021 18:01:03             dut.10.240.183.220: modprobe ioatdma
18/03/2021 18:01:03             dut.10.240.183.220: 
18/03/2021 18:01:03             dut.10.240.183.220: ./usertools/dpdk-devbind.py -u 0000:80:04.0 0000:80:04.1 0000:80:04.2 0000:80:04.3
18/03/2021 18:01:04             dut.10.240.183.220: 
18/03/2021 18:01:04             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=ioatdma  0000:80:04.0 0000:80:04.1 0000:80:04.2 0000:80:04.3
18/03/2021 18:01:04             dut.10.240.183.220: 
18/03/2021 18:01:04                            dts: 
TEST SUITE ENDED: TestVhostUserInterrupt

[-- Attachment #7: TestVhostVirtioPmdInterrupt.log --]
[-- Type: application/octet-stream, Size: 444798 bytes --]

[-- Attachment #8: TestVirTioVhostCbdma.log --]
[-- Type: application/octet-stream, Size: 274807 bytes --]

18/03/2021 16:30:06                            dts: 
TEST SUITE : TestVirTioVhostCbdma
18/03/2021 16:30:06                            dts: NIC :        fortville_spirit
18/03/2021 16:30:06             dut.10.240.183.220: 
18/03/2021 16:30:06                         tester: 
18/03/2021 16:30:11                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:30:11                         tester: /tmp/vhost_cbdma
18/03/2021 16:30:11             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:30:11             dut.10.240.183.220: 1048576
18/03/2021 16:30:11           TestVirTioVhostCbdma: Test Case test_perf_dynamic_queue_number_cbdma_vhost_enqueue_operations Begin
18/03/2021 16:30:12             dut.10.240.183.220: 
18/03/2021 16:30:12                         tester: 
18/03/2021 16:30:12             dut.10.240.183.220: killall -I dpdk-testpmd 
18/03/2021 16:30:12             dut.10.240.183.220: dpdk-testpmd: no process found
18/03/2021 16:30:12             dut.10.240.183.220: rm -rf /root/dpdk/vhost-net*
18/03/2021 16:30:12             dut.10.240.183.220: 
18/03/2021 16:30:12             dut.10.240.183.220: rm -rf /tmp/s0
18/03/2021 16:30:12             dut.10.240.183.220: 
18/03/2021 16:30:12             dut.10.240.183.220: ./usertools/dpdk-devbind.py --status-dev misc
18/03/2021 16:30:12             dut.10.240.183.220: 
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.0 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.1 '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 
18/03/2021 16:30:12             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=igb_uio 0000:80:04.0 0000:80:04.1 0000:80:04.2 0000:80:04.3
18/03/2021 16:30:13             dut.10.240.183.220: 
18/03/2021 16:30:24             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:30:24             dut.10.240.183.220: 1048576
18/03/2021 16:30:35                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:30:35                         tester: /tmp/vhost_cbdma
18/03/2021 16:30:35                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:30:37                         pktgen: test port 0 map gen port 0
18/03/2021 16:30:37                         pktgen: test port 0 map gen port 0
18/03/2021 16:30:37                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:30:37                         pktgen: trex port <0> not support flow control
18/03/2021 16:30:37                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:30:37                         pktgen: check the trex port link status
18/03/2021 16:30:37                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:30:37                         pktgen: begin traffic ......
18/03/2021 16:30:37                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:30:42                         pktgen: traffic completed. 
18/03/2021 16:30:42                         pktgen: check the trex port link status
18/03/2021 16:30:42                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:30:42                         pktgen: begin traffic ......
18/03/2021 16:30:42                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:31:02                         pktgen: begin get port statistic ...
18/03/2021 16:31:02                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:31:02                         pktgen: {0: {'ibytes': 9630869568,
     'ierrors': 0,
     'ipackets': 150482358,
     'obytes': 37827934848,
     'oerrors': 0,
     'opackets': 591061512,
     'rx_bps': 3877851392.0,
     'rx_bps_L1': 5089680351.999999,
     'rx_pps': 7573931.0,
     'rx_util': 12.724200879999998,
     'tx_bps': 15131528192.0,
     'tx_bps_L1': 19860131712.0,
     'tx_pps': 29553772.0,
     'tx_util': 49.65032928},
 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': 7.572915077209473,
            'cpu_util': 99.90557098388672,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3877851392.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11253677056.0,
            'rx_pps': 7573931.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15131528192.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29553772.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9630869568,
           'ierrors': 0,
           'ipackets': 150482358,
           'obytes': 37827934848,
           'oerrors': 0,
           'opackets': 591061512,
           'rx_bps': 3877851392.0,
           'rx_bps_L1': 5089680351.999999,
           'rx_pps': 7573931.0,
           'rx_util': 12.724200879999998,
           'tx_bps': 15131528192.0,
           'tx_bps_L1': 19860131712.0,
           'tx_pps': 29553772.0,
           'tx_util': 49.65032928}}
18/03/2021 16:31:02                         pktgen: {'ibytes': 9630869568,
 'ierrors': 0,
 'ipackets': 150482358,
 'obytes': 37827934848,
 'oerrors': 0,
 'opackets': 591061512,
 'rx_bps': 3877851392.0,
 'rx_bps_L1': 5089680351.999999,
 'rx_pps': 7573931.0,
 'rx_util': 12.724200879999998,
 'tx_bps': 15131528192.0,
 'tx_bps_L1': 19860131712.0,
 'tx_pps': 29553772.0,
 'tx_util': 49.65032928}
18/03/2021 16:31:02                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15131528192.000000, tx_pps: 29553772.000000 
18/03/2021 16:31:02                         pktgen: {'ibytes': 9630869568,
 'ierrors': 0,
 'ipackets': 150482358,
 'obytes': 37827934848,
 'oerrors': 0,
 'opackets': 591061512,
 'rx_bps': 3877851392.0,
 'rx_bps_L1': 5089680351.999999,
 'rx_pps': 7573931.0,
 'rx_util': 12.724200879999998,
 'tx_bps': 15131528192.0,
 'tx_bps_L1': 19860131712.0,
 'tx_pps': 29553772.0,
 'tx_util': 49.65032928}
18/03/2021 16:31:02                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3877851392.000000, rx_pps: 7573931.000000
18/03/2021 16:31:02                         pktgen: throughput: pps_rx 7573931.000000, bps_rx 3877851392.000000
18/03/2021 16:31:02                         pktgen: traffic completed. 
18/03/2021 16:31:02                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:31:02                         tester: /tmp/vhost_cbdma
18/03/2021 16:31:02                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:31:04                         pktgen: test port 0 map gen port 0
18/03/2021 16:31:04                         pktgen: test port 0 map gen port 0
18/03/2021 16:31:04                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:31:04                         pktgen: trex port <0> not support flow control
18/03/2021 16:31:04                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:31:04                         pktgen: check the trex port link status
18/03/2021 16:31:04                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:31:04                         pktgen: begin traffic ......
18/03/2021 16:31:04                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:31:09                         pktgen: traffic completed. 
18/03/2021 16:31:09                         pktgen: check the trex port link status
18/03/2021 16:31:09                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:31:09                         pktgen: begin traffic ......
18/03/2021 16:31:09                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:31:29                         pktgen: begin get port statistic ...
18/03/2021 16:31:29                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:31:29                         pktgen: {0: {'ibytes': 83436745524,
     'ierrors': 0,
     'ipackets': 54964921,
     'obytes': 98801754810,
     'oerrors': 0,
     'opackets': 65086797,
     'rx_bps': 33363257344.0,
     'rx_bps_L1': 33802826023.999996,
     'rx_pps': 2747304.25,
     'rx_util': 84.50706505999999,
     'tx_bps': 39488172032.0,
     'tx_bps_L1': 40008437752.0,
     'tx_pps': 3251660.75,
     'tx_util': 100.02109438},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.183454513549805,
            'cpu_util': 85.16455841064453,
            'cpu_util_raw': 84.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56613898,
            'rx_bps': 33363257344.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 6124914176.0,
            'rx_pps': 2747304.25,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39488172032.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3251660.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 83436745524,
           'ierrors': 0,
           'ipackets': 54964921,
           'obytes': 98801754810,
           'oerrors': 0,
           'opackets': 65086797,
           'rx_bps': 33363257344.0,
           'rx_bps_L1': 33802826023.999996,
           'rx_pps': 2747304.25,
           'rx_util': 84.50706505999999,
           'tx_bps': 39488172032.0,
           'tx_bps_L1': 40008437752.0,
           'tx_pps': 3251660.75,
           'tx_util': 100.02109438}}
18/03/2021 16:31:29                         pktgen: {'ibytes': 83436745524,
 'ierrors': 0,
 'ipackets': 54964921,
 'obytes': 98801754810,
 'oerrors': 0,
 'opackets': 65086797,
 'rx_bps': 33363257344.0,
 'rx_bps_L1': 33802826023.999996,
 'rx_pps': 2747304.25,
 'rx_util': 84.50706505999999,
 'tx_bps': 39488172032.0,
 'tx_bps_L1': 40008437752.0,
 'tx_pps': 3251660.75,
 'tx_util': 100.02109438}
18/03/2021 16:31:29                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39488172032.000000, tx_pps: 3251660.750000 
18/03/2021 16:31:29                         pktgen: {'ibytes': 83436745524,
 'ierrors': 0,
 'ipackets': 54964921,
 'obytes': 98801754810,
 'oerrors': 0,
 'opackets': 65086797,
 'rx_bps': 33363257344.0,
 'rx_bps_L1': 33802826023.999996,
 'rx_pps': 2747304.25,
 'rx_util': 84.50706505999999,
 'tx_bps': 39488172032.0,
 'tx_bps_L1': 40008437752.0,
 'tx_pps': 3251660.75,
 'tx_util': 100.02109438}
18/03/2021 16:31:29                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 33363257344.000000, rx_pps: 2747304.250000
18/03/2021 16:31:29                         pktgen: throughput: pps_rx 2747304.250000, bps_rx 33363257344.000000
18/03/2021 16:31:29                         pktgen: traffic completed. 
18/03/2021 16:31:35                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:31:35                         tester: /tmp/vhost_cbdma
18/03/2021 16:31:35                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:31:37                         pktgen: test port 0 map gen port 0
18/03/2021 16:31:37                         pktgen: test port 0 map gen port 0
18/03/2021 16:31:37                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:31:37                         pktgen: trex port <0> not support flow control
18/03/2021 16:31:37                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:31:37                         pktgen: check the trex port link status
18/03/2021 16:31:37                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:31:37                         pktgen: begin traffic ......
18/03/2021 16:31:37                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:31:42                         pktgen: traffic completed. 
18/03/2021 16:31:42                         pktgen: check the trex port link status
18/03/2021 16:31:42                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:31:42                         pktgen: begin traffic ......
18/03/2021 16:31:42                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:32:02                         pktgen: begin get port statistic ...
18/03/2021 16:32:02                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:32:02                         pktgen: {0: {'ibytes': 8267502144,
     'ierrors': 0,
     'ipackets': 129179737,
     'obytes': 37745749312,
     'oerrors': 0,
     'opackets': 589777365,
     'rx_bps': 3310901248.0,
     'rx_bps_L1': 4345557888.0,
     'rx_pps': 6466604.0,
     'rx_util': 10.863894720000001,
     'tx_bps': 15073758208.0,
     'tx_bps_L1': 19784309888.0,
     'tx_pps': 29440948.0,
     'tx_util': 49.46077472},
 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': 7.544287204742432,
            'cpu_util': 99.90180206298828,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3310901248.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11762855936.0,
            'rx_pps': 6466604.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15073758208.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29440948.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 8267502144,
           'ierrors': 0,
           'ipackets': 129179737,
           'obytes': 37745749312,
           'oerrors': 0,
           'opackets': 589777365,
           'rx_bps': 3310901248.0,
           'rx_bps_L1': 4345557888.0,
           'rx_pps': 6466604.0,
           'rx_util': 10.863894720000001,
           'tx_bps': 15073758208.0,
           'tx_bps_L1': 19784309888.0,
           'tx_pps': 29440948.0,
           'tx_util': 49.46077472}}
18/03/2021 16:32:02                         pktgen: {'ibytes': 8267502144,
 'ierrors': 0,
 'ipackets': 129179737,
 'obytes': 37745749312,
 'oerrors': 0,
 'opackets': 589777365,
 'rx_bps': 3310901248.0,
 'rx_bps_L1': 4345557888.0,
 'rx_pps': 6466604.0,
 'rx_util': 10.863894720000001,
 'tx_bps': 15073758208.0,
 'tx_bps_L1': 19784309888.0,
 'tx_pps': 29440948.0,
 'tx_util': 49.46077472}
18/03/2021 16:32:02                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15073758208.000000, tx_pps: 29440948.000000 
18/03/2021 16:32:02                         pktgen: {'ibytes': 8267502144,
 'ierrors': 0,
 'ipackets': 129179737,
 'obytes': 37745749312,
 'oerrors': 0,
 'opackets': 589777365,
 'rx_bps': 3310901248.0,
 'rx_bps_L1': 4345557888.0,
 'rx_pps': 6466604.0,
 'rx_util': 10.863894720000001,
 'tx_bps': 15073758208.0,
 'tx_bps_L1': 19784309888.0,
 'tx_pps': 29440948.0,
 'tx_util': 49.46077472}
18/03/2021 16:32:02                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3310901248.000000, rx_pps: 6466604.000000
18/03/2021 16:32:02                         pktgen: throughput: pps_rx 6466604.000000, bps_rx 3310901248.000000
18/03/2021 16:32:02                         pktgen: traffic completed. 
18/03/2021 16:32:02                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:32:03                         tester: /tmp/vhost_cbdma
18/03/2021 16:32:03                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:32:05                         pktgen: test port 0 map gen port 0
18/03/2021 16:32:05                         pktgen: test port 0 map gen port 0
18/03/2021 16:32:05                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:32:05                         pktgen: trex port <0> not support flow control
18/03/2021 16:32:05                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:32:05                         pktgen: check the trex port link status
18/03/2021 16:32:05                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:32:05                         pktgen: begin traffic ......
18/03/2021 16:32:05                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:32:10                         pktgen: traffic completed. 
18/03/2021 16:32:10                         pktgen: check the trex port link status
18/03/2021 16:32:10                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:32:10                         pktgen: begin traffic ......
18/03/2021 16:32:10                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:32:30                         pktgen: begin get port statistic ...
18/03/2021 16:32:30                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:32:30                         pktgen: {0: {'ibytes': 49408395300,
     'ierrors': 0,
     'ipackets': 32548352,
     'obytes': 98804086458,
     'oerrors': 0,
     'opackets': 65088335,
     'rx_bps': 19695151104.0,
     'rx_bps_L1': 19954639224.0,
     'rx_pps': 1621800.75,
     'rx_util': 49.88659806,
     'tx_bps': 39394312192.0,
     'tx_bps_L1': 39913341272.0,
     'tx_pps': 3243931.75,
     'tx_util': 99.78335318},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.239864349365234,
            'cpu_util': 84.75589752197266,
            'cpu_util_raw': 84.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56167655,
            'rx_bps': 19695151104.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 19699161088.0,
            'rx_pps': 1621800.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39394312192.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243931.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 49408395300,
           'ierrors': 0,
           'ipackets': 32548352,
           'obytes': 98804086458,
           'oerrors': 0,
           'opackets': 65088335,
           'rx_bps': 19695151104.0,
           'rx_bps_L1': 19954639224.0,
           'rx_pps': 1621800.75,
           'rx_util': 49.88659806,
           'tx_bps': 39394312192.0,
           'tx_bps_L1': 39913341272.0,
           'tx_pps': 3243931.75,
           'tx_util': 99.78335318}}
18/03/2021 16:32:30                         pktgen: {'ibytes': 49408395300,
 'ierrors': 0,
 'ipackets': 32548352,
 'obytes': 98804086458,
 'oerrors': 0,
 'opackets': 65088335,
 'rx_bps': 19695151104.0,
 'rx_bps_L1': 19954639224.0,
 'rx_pps': 1621800.75,
 'rx_util': 49.88659806,
 'tx_bps': 39394312192.0,
 'tx_bps_L1': 39913341272.0,
 'tx_pps': 3243931.75,
 'tx_util': 99.78335318}
18/03/2021 16:32:30                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39394312192.000000, tx_pps: 3243931.750000 
18/03/2021 16:32:30                         pktgen: {'ibytes': 49408395300,
 'ierrors': 0,
 'ipackets': 32548352,
 'obytes': 98804086458,
 'oerrors': 0,
 'opackets': 65088335,
 'rx_bps': 19695151104.0,
 'rx_bps_L1': 19954639224.0,
 'rx_pps': 1621800.75,
 'rx_util': 49.88659806,
 'tx_bps': 39394312192.0,
 'tx_bps_L1': 39913341272.0,
 'tx_pps': 3243931.75,
 'tx_util': 99.78335318}
18/03/2021 16:32:30                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 19695151104.000000, rx_pps: 1621800.750000
18/03/2021 16:32:30                         pktgen: throughput: pps_rx 1621800.750000, bps_rx 19695151104.000000
18/03/2021 16:32:30                         pktgen: traffic completed. 
18/03/2021 16:32:36             dut.10.240.183.220: rm -rf /tmp/s0
18/03/2021 16:32:36             dut.10.240.183.220: 
18/03/2021 16:32:36             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:32:36             dut.10.240.183.220: 1048576
18/03/2021 16:32:47                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:32:47                         tester: /tmp/vhost_cbdma
18/03/2021 16:32:47                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:32:49                         pktgen: test port 0 map gen port 0
18/03/2021 16:32:49                         pktgen: test port 0 map gen port 0
18/03/2021 16:32:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:32:49                         pktgen: trex port <0> not support flow control
18/03/2021 16:32:49                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:32:49                         pktgen: check the trex port link status
18/03/2021 16:32:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:32:49                         pktgen: begin traffic ......
18/03/2021 16:32:49                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:32:55                         pktgen: traffic completed. 
18/03/2021 16:32:55                         pktgen: check the trex port link status
18/03/2021 16:32:55                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:32:55                         pktgen: begin traffic ......
18/03/2021 16:32:55                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:33:15                         pktgen: begin get port statistic ...
18/03/2021 16:33:15                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:33:15                         pktgen: {0: {'ibytes': 9717170816,
     'ierrors': 0,
     'ipackets': 151830796,
     'obytes': 37767446336,
     'oerrors': 0,
     'opackets': 590116376,
     'rx_bps': 3911887104.0,
     'rx_bps_L1': 5134351424.0,
     'rx_pps': 7640402.0,
     'rx_util': 12.83587856,
     'tx_bps': 15111632896.0,
     'tx_bps_L1': 19834019456.0,
     'tx_pps': 29514916.0,
     'tx_util': 49.585048640000004},
 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': 7.564024448394775,
            'cpu_util': 99.89148712158203,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3911887104.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11199746048.0,
            'rx_pps': 7640402.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15111632896.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29514916.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9717170816,
           'ierrors': 0,
           'ipackets': 151830796,
           'obytes': 37767446336,
           'oerrors': 0,
           'opackets': 590116376,
           'rx_bps': 3911887104.0,
           'rx_bps_L1': 5134351424.0,
           'rx_pps': 7640402.0,
           'rx_util': 12.83587856,
           'tx_bps': 15111632896.0,
           'tx_bps_L1': 19834019456.0,
           'tx_pps': 29514916.0,
           'tx_util': 49.585048640000004}}
18/03/2021 16:33:15                         pktgen: {'ibytes': 9717170816,
 'ierrors': 0,
 'ipackets': 151830796,
 'obytes': 37767446336,
 'oerrors': 0,
 'opackets': 590116376,
 'rx_bps': 3911887104.0,
 'rx_bps_L1': 5134351424.0,
 'rx_pps': 7640402.0,
 'rx_util': 12.83587856,
 'tx_bps': 15111632896.0,
 'tx_bps_L1': 19834019456.0,
 'tx_pps': 29514916.0,
 'tx_util': 49.585048640000004}
18/03/2021 16:33:15                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15111632896.000000, tx_pps: 29514916.000000 
18/03/2021 16:33:15                         pktgen: {'ibytes': 9717170816,
 'ierrors': 0,
 'ipackets': 151830796,
 'obytes': 37767446336,
 'oerrors': 0,
 'opackets': 590116376,
 'rx_bps': 3911887104.0,
 'rx_bps_L1': 5134351424.0,
 'rx_pps': 7640402.0,
 'rx_util': 12.83587856,
 'tx_bps': 15111632896.0,
 'tx_bps_L1': 19834019456.0,
 'tx_pps': 29514916.0,
 'tx_util': 49.585048640000004}
18/03/2021 16:33:15                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3911887104.000000, rx_pps: 7640402.000000
18/03/2021 16:33:15                         pktgen: throughput: pps_rx 7640402.000000, bps_rx 3911887104.000000
18/03/2021 16:33:15                         pktgen: traffic completed. 
18/03/2021 16:33:15                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:33:15                         tester: /tmp/vhost_cbdma
18/03/2021 16:33:15                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:33:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:33:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:33:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:33:17                         pktgen: trex port <0> not support flow control
18/03/2021 16:33:17                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:33:17                         pktgen: check the trex port link status
18/03/2021 16:33:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:33:17                         pktgen: begin traffic ......
18/03/2021 16:33:17                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:33:22                         pktgen: traffic completed. 
18/03/2021 16:33:22                         pktgen: check the trex port link status
18/03/2021 16:33:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:33:22                         pktgen: begin traffic ......
18/03/2021 16:33:22                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:33:42                         pktgen: begin get port statistic ...
18/03/2021 16:33:42                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:33:42                         pktgen: {0: {'ibytes': 81600451284,
     'ierrors': 0,
     'ipackets': 53755239,
     'obytes': 98799886152,
     'oerrors': 0,
     'opackets': 65085568,
     'rx_bps': 32536930304.0,
     'rx_bps_L1': 32965611743.999996,
     'rx_pps': 2679259.0,
     'rx_util': 82.41402935999999,
     'tx_bps': 39395840000.0,
     'tx_bps_L1': 39914889360.0,
     'tx_pps': 3244058.5,
     'tx_util': 99.7872234},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.144248962402344,
            'cpu_util': 85.1093521118164,
            'cpu_util_raw': 84.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56731277,
            'rx_bps': 32536930304.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 6858910208.0,
            'rx_pps': 2679259.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39395840000.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3244058.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 81600451284,
           'ierrors': 0,
           'ipackets': 53755239,
           'obytes': 98799886152,
           'oerrors': 0,
           'opackets': 65085568,
           'rx_bps': 32536930304.0,
           'rx_bps_L1': 32965611743.999996,
           'rx_pps': 2679259.0,
           'rx_util': 82.41402935999999,
           'tx_bps': 39395840000.0,
           'tx_bps_L1': 39914889360.0,
           'tx_pps': 3244058.5,
           'tx_util': 99.7872234}}
18/03/2021 16:33:42                         pktgen: {'ibytes': 81600451284,
 'ierrors': 0,
 'ipackets': 53755239,
 'obytes': 98799886152,
 'oerrors': 0,
 'opackets': 65085568,
 'rx_bps': 32536930304.0,
 'rx_bps_L1': 32965611743.999996,
 'rx_pps': 2679259.0,
 'rx_util': 82.41402935999999,
 'tx_bps': 39395840000.0,
 'tx_bps_L1': 39914889360.0,
 'tx_pps': 3244058.5,
 'tx_util': 99.7872234}
18/03/2021 16:33:42                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39395840000.000000, tx_pps: 3244058.500000 
18/03/2021 16:33:42                         pktgen: {'ibytes': 81600451284,
 'ierrors': 0,
 'ipackets': 53755239,
 'obytes': 98799886152,
 'oerrors': 0,
 'opackets': 65085568,
 'rx_bps': 32536930304.0,
 'rx_bps_L1': 32965611743.999996,
 'rx_pps': 2679259.0,
 'rx_util': 82.41402935999999,
 'tx_bps': 39395840000.0,
 'tx_bps_L1': 39914889360.0,
 'tx_pps': 3244058.5,
 'tx_util': 99.7872234}
18/03/2021 16:33:42                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 32536930304.000000, rx_pps: 2679259.000000
18/03/2021 16:33:42                         pktgen: throughput: pps_rx 2679259.000000, bps_rx 32536930304.000000
18/03/2021 16:33:42                         pktgen: traffic completed. 
18/03/2021 16:33:48                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:33:48                         tester: /tmp/vhost_cbdma
18/03/2021 16:33:48                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:33:50                         pktgen: test port 0 map gen port 0
18/03/2021 16:33:50                         pktgen: test port 0 map gen port 0
18/03/2021 16:33:50                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:33:50                         pktgen: trex port <0> not support flow control
18/03/2021 16:33:50                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:33:50                         pktgen: check the trex port link status
18/03/2021 16:33:50                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:33:50                         pktgen: begin traffic ......
18/03/2021 16:33:50                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:33:55                         pktgen: traffic completed. 
18/03/2021 16:33:55                         pktgen: check the trex port link status
18/03/2021 16:33:55                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:33:55                         pktgen: begin traffic ......
18/03/2021 16:33:55                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:34:15                         pktgen: begin get port statistic ...
18/03/2021 16:34:15                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:34:15                         pktgen: {0: {'ibytes': 10402382848,
     'ierrors': 0,
     'ipackets': 162537251,
     'obytes': 37766023360,
     'oerrors': 0,
     'opackets': 590094149,
     'rx_bps': 4165145600.0,
     'rx_bps_L1': 5466754720.0,
     'rx_pps': 8135057.0,
     'rx_util': 13.6668868,
     'tx_bps': 15100334080.0,
     'tx_bps_L1': 19819189120.0,
     'tx_pps': 29492844.0,
     'tx_util': 49.547972800000004},
 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': 7.556849002838135,
            'cpu_util': 99.91157531738281,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 4165145600.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10935188480.0,
            'rx_pps': 8135057.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15100334080.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29492844.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 10402382848,
           'ierrors': 0,
           'ipackets': 162537251,
           'obytes': 37766023360,
           'oerrors': 0,
           'opackets': 590094149,
           'rx_bps': 4165145600.0,
           'rx_bps_L1': 5466754720.0,
           'rx_pps': 8135057.0,
           'rx_util': 13.6668868,
           'tx_bps': 15100334080.0,
           'tx_bps_L1': 19819189120.0,
           'tx_pps': 29492844.0,
           'tx_util': 49.547972800000004}}
18/03/2021 16:34:15                         pktgen: {'ibytes': 10402382848,
 'ierrors': 0,
 'ipackets': 162537251,
 'obytes': 37766023360,
 'oerrors': 0,
 'opackets': 590094149,
 'rx_bps': 4165145600.0,
 'rx_bps_L1': 5466754720.0,
 'rx_pps': 8135057.0,
 'rx_util': 13.6668868,
 'tx_bps': 15100334080.0,
 'tx_bps_L1': 19819189120.0,
 'tx_pps': 29492844.0,
 'tx_util': 49.547972800000004}
18/03/2021 16:34:15                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15100334080.000000, tx_pps: 29492844.000000 
18/03/2021 16:34:15                         pktgen: {'ibytes': 10402382848,
 'ierrors': 0,
 'ipackets': 162537251,
 'obytes': 37766023360,
 'oerrors': 0,
 'opackets': 590094149,
 'rx_bps': 4165145600.0,
 'rx_bps_L1': 5466754720.0,
 'rx_pps': 8135057.0,
 'rx_util': 13.6668868,
 'tx_bps': 15100334080.0,
 'tx_bps_L1': 19819189120.0,
 'tx_pps': 29492844.0,
 'tx_util': 49.547972800000004}
18/03/2021 16:34:15                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4165145600.000000, rx_pps: 8135057.000000
18/03/2021 16:34:15                         pktgen: throughput: pps_rx 8135057.000000, bps_rx 4165145600.000000
18/03/2021 16:34:15                         pktgen: traffic completed. 
18/03/2021 16:34:15                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:34:15                         tester: /tmp/vhost_cbdma
18/03/2021 16:34:15                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:34:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:34:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:34:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:34:17                         pktgen: trex port <0> not support flow control
18/03/2021 16:34:17                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:34:17                         pktgen: check the trex port link status
18/03/2021 16:34:17                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:34:17                         pktgen: begin traffic ......
18/03/2021 16:34:17                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:34:22                         pktgen: traffic completed. 
18/03/2021 16:34:22                         pktgen: check the trex port link status
18/03/2021 16:34:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:34:22                         pktgen: begin traffic ......
18/03/2021 16:34:22                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:34:42                         pktgen: begin get port statistic ...
18/03/2021 16:34:42                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:34:42                         pktgen: {0: {'ibytes': 91826087892,
     'ierrors': 0,
     'ipackets': 60491497,
     'obytes': 98797293408,
     'oerrors': 0,
     'opackets': 65083860,
     'rx_bps': 36588593152.0,
     'rx_bps_L1': 37070656432.0,
     'rx_pps': 3012895.5,
     'rx_util': 92.67664108,
     'tx_bps': 39367426048.0,
     'tx_bps_L1': 39886101008.0,
     'tx_pps': 3241718.5,
     'tx_util': 99.71525251999999},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.196950912475586,
            'cpu_util': 84.85474395751953,
            'cpu_util_raw': 84.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56700907,
            'rx_bps': 36588593152.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3012895.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39367426048.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3241718.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 91826087892,
           'ierrors': 0,
           'ipackets': 60491497,
           'obytes': 98797293408,
           'oerrors': 0,
           'opackets': 65083860,
           'rx_bps': 36588593152.0,
           'rx_bps_L1': 37070656432.0,
           'rx_pps': 3012895.5,
           'rx_util': 92.67664108,
           'tx_bps': 39367426048.0,
           'tx_bps_L1': 39886101008.0,
           'tx_pps': 3241718.5,
           'tx_util': 99.71525251999999}}
18/03/2021 16:34:42                         pktgen: {'ibytes': 91826087892,
 'ierrors': 0,
 'ipackets': 60491497,
 'obytes': 98797293408,
 'oerrors': 0,
 'opackets': 65083860,
 'rx_bps': 36588593152.0,
 'rx_bps_L1': 37070656432.0,
 'rx_pps': 3012895.5,
 'rx_util': 92.67664108,
 'tx_bps': 39367426048.0,
 'tx_bps_L1': 39886101008.0,
 'tx_pps': 3241718.5,
 'tx_util': 99.71525251999999}
18/03/2021 16:34:42                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39367426048.000000, tx_pps: 3241718.500000 
18/03/2021 16:34:42                         pktgen: {'ibytes': 91826087892,
 'ierrors': 0,
 'ipackets': 60491497,
 'obytes': 98797293408,
 'oerrors': 0,
 'opackets': 65083860,
 'rx_bps': 36588593152.0,
 'rx_bps_L1': 37070656432.0,
 'rx_pps': 3012895.5,
 'rx_util': 92.67664108,
 'tx_bps': 39367426048.0,
 'tx_bps_L1': 39886101008.0,
 'tx_pps': 3241718.5,
 'tx_util': 99.71525251999999}
18/03/2021 16:34:42                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 36588593152.000000, rx_pps: 3012895.500000
18/03/2021 16:34:42                         pktgen: throughput: pps_rx 3012895.500000, bps_rx 36588593152.000000
18/03/2021 16:34:42                         pktgen: traffic completed. 
18/03/2021 16:34:56                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:34:56                         tester: /tmp/vhost_cbdma
18/03/2021 16:34:56                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:34:58                         pktgen: test port 0 map gen port 0
18/03/2021 16:34:58                         pktgen: test port 0 map gen port 0
18/03/2021 16:34:58                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:34:58                         pktgen: trex port <0> not support flow control
18/03/2021 16:34:58                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:34:58                         pktgen: check the trex port link status
18/03/2021 16:34:58                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:34:58                         pktgen: begin traffic ......
18/03/2021 16:34:58                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:35:03                         pktgen: traffic completed. 
18/03/2021 16:35:03                         pktgen: check the trex port link status
18/03/2021 16:35:03                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:35:03                         pktgen: begin traffic ......
18/03/2021 16:35:03                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:35:23                         pktgen: begin get port statistic ...
18/03/2021 16:35:23                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:35:23                         pktgen: {0: {'ibytes': 9464168832,
     'ierrors': 0,
     'ipackets': 147877659,
     'obytes': 37551222592,
     'oerrors': 0,
     'opackets': 586737883,
     'rx_bps': 3831008768.0,
     'rx_bps_L1': 5028200128.0,
     'rx_pps': 7482446.0,
     'rx_util': 12.57050032,
     'tx_bps': 14893887488.0,
     'tx_bps_L1': 19548226048.0,
     'tx_pps': 29089616.0,
     'tx_util': 48.870565119999995},
 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': 7.454379081726074,
            'cpu_util': 99.90025329589844,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3831008768.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11062879232.0,
            'rx_pps': 7482446.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 14893887488.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29089616.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9464168832,
           'ierrors': 0,
           'ipackets': 147877659,
           'obytes': 37551222592,
           'oerrors': 0,
           'opackets': 586737883,
           'rx_bps': 3831008768.0,
           'rx_bps_L1': 5028200128.0,
           'rx_pps': 7482446.0,
           'rx_util': 12.57050032,
           'tx_bps': 14893887488.0,
           'tx_bps_L1': 19548226048.0,
           'tx_pps': 29089616.0,
           'tx_util': 48.870565119999995}}
18/03/2021 16:35:23                         pktgen: {'ibytes': 9464168832,
 'ierrors': 0,
 'ipackets': 147877659,
 'obytes': 37551222592,
 'oerrors': 0,
 'opackets': 586737883,
 'rx_bps': 3831008768.0,
 'rx_bps_L1': 5028200128.0,
 'rx_pps': 7482446.0,
 'rx_util': 12.57050032,
 'tx_bps': 14893887488.0,
 'tx_bps_L1': 19548226048.0,
 'tx_pps': 29089616.0,
 'tx_util': 48.870565119999995}
18/03/2021 16:35:23                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 14893887488.000000, tx_pps: 29089616.000000 
18/03/2021 16:35:23                         pktgen: {'ibytes': 9464168832,
 'ierrors': 0,
 'ipackets': 147877659,
 'obytes': 37551222592,
 'oerrors': 0,
 'opackets': 586737883,
 'rx_bps': 3831008768.0,
 'rx_bps_L1': 5028200128.0,
 'rx_pps': 7482446.0,
 'rx_util': 12.57050032,
 'tx_bps': 14893887488.0,
 'tx_bps_L1': 19548226048.0,
 'tx_pps': 29089616.0,
 'tx_util': 48.870565119999995}
18/03/2021 16:35:23                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3831008768.000000, rx_pps: 7482446.000000
18/03/2021 16:35:23                         pktgen: throughput: pps_rx 7482446.000000, bps_rx 3831008768.000000
18/03/2021 16:35:23                         pktgen: traffic completed. 
18/03/2021 16:35:23                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:35:23                         tester: /tmp/vhost_cbdma
18/03/2021 16:35:23                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:35:25                         pktgen: test port 0 map gen port 0
18/03/2021 16:35:25                         pktgen: test port 0 map gen port 0
18/03/2021 16:35:25                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:35:25                         pktgen: trex port <0> not support flow control
18/03/2021 16:35:25                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:35:25                         pktgen: check the trex port link status
18/03/2021 16:35:25                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:35:25                         pktgen: begin traffic ......
18/03/2021 16:35:25                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:35:30                         pktgen: traffic completed. 
18/03/2021 16:35:30                         pktgen: check the trex port link status
18/03/2021 16:35:30                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:35:30                         pktgen: begin traffic ......
18/03/2021 16:35:30                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:35:50                         pktgen: begin get port statistic ...
18/03/2021 16:35:50                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:35:50                         pktgen: {0: {'ibytes': 83459483646,
     'ierrors': 0,
     'ipackets': 54979900,
     'obytes': 98800827312,
     'oerrors': 0,
     'opackets': 65086187,
     'rx_bps': 33343393792.0,
     'rx_bps_L1': 33782700712.0,
     'rx_pps': 2745668.25,
     'rx_util': 84.45675177999999,
     'tx_bps': 39502999552.0,
     'tx_bps_L1': 40023460752.0,
     'tx_pps': 3252882.5,
     'tx_util': 100.05865188},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.122289657592773,
            'cpu_util': 85.42190551757812,
            'cpu_util_raw': 86.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56537138,
            'rx_bps': 33343393792.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 6159605248.0,
            'rx_pps': 2745668.25,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39502999552.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3252882.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 83459483646,
           'ierrors': 0,
           'ipackets': 54979900,
           'obytes': 98800827312,
           'oerrors': 0,
           'opackets': 65086187,
           'rx_bps': 33343393792.0,
           'rx_bps_L1': 33782700712.0,
           'rx_pps': 2745668.25,
           'rx_util': 84.45675177999999,
           'tx_bps': 39502999552.0,
           'tx_bps_L1': 40023460752.0,
           'tx_pps': 3252882.5,
           'tx_util': 100.05865188}}
18/03/2021 16:35:50                         pktgen: {'ibytes': 83459483646,
 'ierrors': 0,
 'ipackets': 54979900,
 'obytes': 98800827312,
 'oerrors': 0,
 'opackets': 65086187,
 'rx_bps': 33343393792.0,
 'rx_bps_L1': 33782700712.0,
 'rx_pps': 2745668.25,
 'rx_util': 84.45675177999999,
 'tx_bps': 39502999552.0,
 'tx_bps_L1': 40023460752.0,
 'tx_pps': 3252882.5,
 'tx_util': 100.05865188}
18/03/2021 16:35:50                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39502999552.000000, tx_pps: 3252882.500000 
18/03/2021 16:35:50                         pktgen: {'ibytes': 83459483646,
 'ierrors': 0,
 'ipackets': 54979900,
 'obytes': 98800827312,
 'oerrors': 0,
 'opackets': 65086187,
 'rx_bps': 33343393792.0,
 'rx_bps_L1': 33782700712.0,
 'rx_pps': 2745668.25,
 'rx_util': 84.45675177999999,
 'tx_bps': 39502999552.0,
 'tx_bps_L1': 40023460752.0,
 'tx_pps': 3252882.5,
 'tx_util': 100.05865188}
18/03/2021 16:35:50                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 33343393792.000000, rx_pps: 2745668.250000
18/03/2021 16:35:50                         pktgen: throughput: pps_rx 2745668.250000, bps_rx 33343393792.000000
18/03/2021 16:35:50                         pktgen: traffic completed. 
18/03/2021 16:35:52           TestVirTioVhostCbdma: 
+-------+-----------------------------------------------+-------+------------+
| Frame |                 Mode/RXD-TXD                  | Mpps  | % linerate |
+=======+===============================================+=======+============+
| 64    | dynamic_queue2                                | 7.574 | 12.724     |
+-------+-----------------------------------------------+-------+------------+
| 1518  | dynamic_queue2                                | 2.747 | 84.507     |
+-------+-----------------------------------------------+-------+------------+
| 64    | virtio_user_dynamic_queue2_change_to_1        | 6.467 | 10.864     |
+-------+-----------------------------------------------+-------+------------+
| 1518  | virtio_user_dynamic_queue2_change_to_1        | 1.622 | 49.887     |
+-------+-----------------------------------------------+-------+------------+
| 64    | Relaunch_dynamic_queue2                       | 7.640 | 12.836     |
+-------+-----------------------------------------------+-------+------------+
| 1518  | Relaunch_dynamic_queue2                       | 2.679 | 82.414     |
+-------+-----------------------------------------------+-------+------------+
| 64    | vhost_userRelaunch_dynamic_queue2_change_to_1 | 8.135 | 13.667     |
+-------+-----------------------------------------------+-------+------------+
| 1518  | vhost_userRelaunch_dynamic_queue2_change_to_1 | 3.013 | 92.677     |
+-------+-----------------------------------------------+-------+------------+
| 64    | Relaunch_vhost_2_cbdma                        | 7.482 | 12.571     |
+-------+-----------------------------------------------+-------+------------+
| 1518  | Relaunch_vhost_2_cbdma                        | 2.746 | 84.457     |
+-------+-----------------------------------------------+-------+------------+
18/03/2021 16:35:52           TestVirTioVhostCbdma: 
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| Frame |                 Mode/RXD-TXD                  |    Mpps    | % linerate | nb_desc | Expected Throughput | Throughput Difference |
+=======+===============================================+============+============+=========+=====================+=======================+
| 64    | dynamic_queue2                                | 7.574 Mpps | 12.724%    | 1024    | 0.000 Mpps          | 7.574 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | dynamic_queue2                                | 2.747 Mpps | 84.507%    | 1024    | 0.000 Mpps          | 2.747 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | virtio_user_dynamic_queue2_change_to_1        | 6.467 Mpps | 10.864%    | 1024    | 0.000 Mpps          | 6.467 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | virtio_user_dynamic_queue2_change_to_1        | 1.622 Mpps | 49.887%    | 1024    | 0.000 Mpps          | 1.622 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | Relaunch_dynamic_queue2                       | 7.640 Mpps | 12.836%    | 1024    | 0.000 Mpps          | 7.640 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | Relaunch_dynamic_queue2                       | 2.679 Mpps | 82.414%    | 1024    | 0.000 Mpps          | 2.679 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | vhost_userRelaunch_dynamic_queue2_change_to_1 | 8.135 Mpps | 13.667%    | 1024    | 0.000 Mpps          | 8.135 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | vhost_userRelaunch_dynamic_queue2_change_to_1 | 3.013 Mpps | 92.677%    | 1024    | 0.000 Mpps          | 3.013 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | Relaunch_vhost_2_cbdma                        | 7.482 Mpps | 12.571%    | 1024    | 0.000 Mpps          | 7.482 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | Relaunch_vhost_2_cbdma                        | 2.746 Mpps | 84.457%    | 1024    | 0.000 Mpps          | 2.746 Mpps            |
+-------+-----------------------------------------------+------------+------------+---------+---------------------+-----------------------+
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.574000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 2.747000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 6.467000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 1.622000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.640000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 2.679000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 8.135000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.013000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.482000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 2.746000
18/03/2021 16:35:52           TestVirTioVhostCbdma: Test Case test_perf_dynamic_queue_number_cbdma_vhost_enqueue_operations Result PASSED:
18/03/2021 16:35:52             dut.10.240.183.220: killall -I dpdk-testpmd 
18/03/2021 16:35:52             dut.10.240.183.220: dpdk-testpmd: no process found
18/03/2021 16:35:52             dut.10.240.183.220: modprobe ioatdma
18/03/2021 16:35:52             dut.10.240.183.220: 
18/03/2021 16:35:52             dut.10.240.183.220: ./usertools/dpdk-devbind.py -u 0000:80:04.0 0000:80:04.1 0000:80:04.2 0000:80:04.3
18/03/2021 16:35:53             dut.10.240.183.220: 
18/03/2021 16:35:53             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=ioatdma  0000:80:04.0 0000:80:04.1 0000:80:04.2 0000:80:04.3
18/03/2021 16:35:53             dut.10.240.183.220: 
18/03/2021 16:35:53           TestVirTioVhostCbdma: Test Case test_perf_pvp_spilt_all_path_with_cbdma_vhost_enqueue_operations Begin
18/03/2021 16:35:53             dut.10.240.183.220: 
18/03/2021 16:35:53                         tester: 
18/03/2021 16:35:53             dut.10.240.183.220: killall -I dpdk-testpmd 
18/03/2021 16:35:53             dut.10.240.183.220: dpdk-testpmd: no process found
18/03/2021 16:35:53             dut.10.240.183.220: rm -rf /root/dpdk/vhost-net*
18/03/2021 16:35:54             dut.10.240.183.220: 
18/03/2021 16:35:54             dut.10.240.183.220: rm -rf /tmp/s0
18/03/2021 16:35:54             dut.10.240.183.220: 
18/03/2021 16:35:54             dut.10.240.183.220: ./usertools/dpdk-devbind.py --status-dev misc
18/03/2021 16:35:54             dut.10.240.183.220: 
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.0 'Sky Lake-E CBDMA Registers 2021' drv=ioatdma unused=igb_uio,vfio-pci 
0000:80:04.1 '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 
18/03/2021 16:35:54             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=igb_uio 0000:80:04.0
18/03/2021 16:35:54             dut.10.240.183.220: 
18/03/2021 16:36:05             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:36:05             dut.10.240.183.220: 1048576
18/03/2021 16:36:16                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:36:17                         tester: /tmp/vhost_cbdma
18/03/2021 16:36:17                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:36:19                         pktgen: test port 0 map gen port 0
18/03/2021 16:36:19                         pktgen: test port 0 map gen port 0
18/03/2021 16:36:19                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:36:19                         pktgen: trex port <0> not support flow control
18/03/2021 16:36:19                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:36:19                         pktgen: check the trex port link status
18/03/2021 16:36:19                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:36:19                         pktgen: begin traffic ......
18/03/2021 16:36:19                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:36:24                         pktgen: traffic completed. 
18/03/2021 16:36:24                         pktgen: check the trex port link status
18/03/2021 16:36:24                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:36:24                         pktgen: begin traffic ......
18/03/2021 16:36:24                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:36:44                         pktgen: begin get port statistic ...
18/03/2021 16:36:44                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:36:44                         pktgen: {0: {'ibytes': 9751176192,
     'ierrors': 0,
     'ipackets': 152362128,
     'obytes': 37868070592,
     'oerrors': 0,
     'opackets': 591688614,
     'rx_bps': 3903111936.0,
     'rx_bps_L1': 5122834816.0,
     'rx_pps': 7623268.0,
     'rx_util': 12.80708704,
     'tx_bps': 15082984448.0,
     'tx_bps_L1': 19796417088.0,
     'tx_pps': 29458954.0,
     'tx_util': 49.49104272},
 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': 7.549833297729492,
            'cpu_util': 99.88951873779297,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3903111936.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11179872256.0,
            'rx_pps': 7623268.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15082984448.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29458954.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9751176192,
           'ierrors': 0,
           'ipackets': 152362128,
           'obytes': 37868070592,
           'oerrors': 0,
           'opackets': 591688614,
           'rx_bps': 3903111936.0,
           'rx_bps_L1': 5122834816.0,
           'rx_pps': 7623268.0,
           'rx_util': 12.80708704,
           'tx_bps': 15082984448.0,
           'tx_bps_L1': 19796417088.0,
           'tx_pps': 29458954.0,
           'tx_util': 49.49104272}}
18/03/2021 16:36:44                         pktgen: {'ibytes': 9751176192,
 'ierrors': 0,
 'ipackets': 152362128,
 'obytes': 37868070592,
 'oerrors': 0,
 'opackets': 591688614,
 'rx_bps': 3903111936.0,
 'rx_bps_L1': 5122834816.0,
 'rx_pps': 7623268.0,
 'rx_util': 12.80708704,
 'tx_bps': 15082984448.0,
 'tx_bps_L1': 19796417088.0,
 'tx_pps': 29458954.0,
 'tx_util': 49.49104272}
18/03/2021 16:36:44                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15082984448.000000, tx_pps: 29458954.000000 
18/03/2021 16:36:44                         pktgen: {'ibytes': 9751176192,
 'ierrors': 0,
 'ipackets': 152362128,
 'obytes': 37868070592,
 'oerrors': 0,
 'opackets': 591688614,
 'rx_bps': 3903111936.0,
 'rx_bps_L1': 5122834816.0,
 'rx_pps': 7623268.0,
 'rx_util': 12.80708704,
 'tx_bps': 15082984448.0,
 'tx_bps_L1': 19796417088.0,
 'tx_pps': 29458954.0,
 'tx_util': 49.49104272}
18/03/2021 16:36:44                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3903111936.000000, rx_pps: 7623268.000000
18/03/2021 16:36:44                         pktgen: throughput: pps_rx 7623268.000000, bps_rx 3903111936.000000
18/03/2021 16:36:44                         pktgen: traffic completed. 
18/03/2021 16:36:44                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:36:44                         tester: /tmp/vhost_cbdma
18/03/2021 16:36:44                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:36:46                         pktgen: test port 0 map gen port 0
18/03/2021 16:36:46                         pktgen: test port 0 map gen port 0
18/03/2021 16:36:46                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:36:46                         pktgen: trex port <0> not support flow control
18/03/2021 16:36:46                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:36:46                         pktgen: check the trex port link status
18/03/2021 16:36:46                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:36:46                         pktgen: begin traffic ......
18/03/2021 16:36:46                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:36:51                         pktgen: traffic completed. 
18/03/2021 16:36:51                         pktgen: check the trex port link status
18/03/2021 16:36:51                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:36:51                         pktgen: begin traffic ......
18/03/2021 16:36:51                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:37:11                         pktgen: begin get port statistic ...
18/03/2021 16:37:11                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:37:11                         pktgen: {0: {'ibytes': 98802720258,
     'ierrors': 0,
     'ipackets': 65087435,
     'obytes': 98802736956,
     'oerrors': 0,
     'opackets': 65087446,
     'rx_bps': 39390736384.0,
     'rx_bps_L1': 39909718464.0,
     'rx_pps': 3243638.0,
     'rx_util': 99.77429615999999,
     'tx_bps': 39390777344.0,
     'tx_bps_L1': 39909759864.0,
     'tx_pps': 3243640.75,
     'tx_util': 99.77439966},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.150121688842773,
            'cpu_util': 85.07682800292969,
            'cpu_util_raw': 85.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56718843,
            'rx_bps': 39390736384.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243638.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39390777344.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243640.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98802720258,
           'ierrors': 0,
           'ipackets': 65087435,
           'obytes': 98802736956,
           'oerrors': 0,
           'opackets': 65087446,
           'rx_bps': 39390736384.0,
           'rx_bps_L1': 39909718464.0,
           'rx_pps': 3243638.0,
           'rx_util': 99.77429615999999,
           'tx_bps': 39390777344.0,
           'tx_bps_L1': 39909759864.0,
           'tx_pps': 3243640.75,
           'tx_util': 99.77439966}}
18/03/2021 16:37:11                         pktgen: {'ibytes': 98802720258,
 'ierrors': 0,
 'ipackets': 65087435,
 'obytes': 98802736956,
 'oerrors': 0,
 'opackets': 65087446,
 'rx_bps': 39390736384.0,
 'rx_bps_L1': 39909718464.0,
 'rx_pps': 3243638.0,
 'rx_util': 99.77429615999999,
 'tx_bps': 39390777344.0,
 'tx_bps_L1': 39909759864.0,
 'tx_pps': 3243640.75,
 'tx_util': 99.77439966}
18/03/2021 16:37:11                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39390777344.000000, tx_pps: 3243640.750000 
18/03/2021 16:37:11                         pktgen: {'ibytes': 98802720258,
 'ierrors': 0,
 'ipackets': 65087435,
 'obytes': 98802736956,
 'oerrors': 0,
 'opackets': 65087446,
 'rx_bps': 39390736384.0,
 'rx_bps_L1': 39909718464.0,
 'rx_pps': 3243638.0,
 'rx_util': 99.77429615999999,
 'tx_bps': 39390777344.0,
 'tx_bps_L1': 39909759864.0,
 'tx_pps': 3243640.75,
 'tx_util': 99.77439966}
18/03/2021 16:37:11                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39390736384.000000, rx_pps: 3243638.000000
18/03/2021 16:37:11                         pktgen: throughput: pps_rx 3243638.000000, bps_rx 39390736384.000000
18/03/2021 16:37:11                         pktgen: traffic completed. 
18/03/2021 16:37:11                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:37:11                         tester: /tmp/vhost_cbdma
18/03/2021 16:37:11                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:37:13                         pktgen: test port 0 map gen port 0
18/03/2021 16:37:13                         pktgen: test port 0 map gen port 0
18/03/2021 16:37:13                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:37:13                         pktgen: trex port <0> not support flow control
18/03/2021 16:37:13                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:37:13                         pktgen: check the trex port link status
18/03/2021 16:37:13                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:37:13                         pktgen: begin traffic ......
18/03/2021 16:37:13                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:37:18                         pktgen: traffic completed. 
18/03/2021 16:37:18                         pktgen: check the trex port link status
18/03/2021 16:37:18                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:37:18                         pktgen: begin traffic ......
18/03/2021 16:37:18                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:37:38                         pktgen: begin get port statistic ...
18/03/2021 16:37:38                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:37:38                         pktgen: {0: {'ibytes': 9804894336,
     'ierrors': 0,
     'ipackets': 153201501,
     'obytes': 37644122240,
     'oerrors': 0,
     'opackets': 588189423,
     'rx_bps': 3924344832.0,
     'rx_bps_L1': 5150701312.0,
     'rx_pps': 7664728.0,
     'rx_util': 12.87675328,
     'tx_bps': 15069239296.0,
     'tx_bps_L1': 19778373696.0,
     'tx_pps': 29432090.0,
     'tx_util': 49.44593424},
 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': 7.539594650268555,
            'cpu_util': 99.93401336669922,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3924344832.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11144894464.0,
            'rx_pps': 7664728.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15069239296.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29432090.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9804894336,
           'ierrors': 0,
           'ipackets': 153201501,
           'obytes': 37644122240,
           'oerrors': 0,
           'opackets': 588189423,
           'rx_bps': 3924344832.0,
           'rx_bps_L1': 5150701312.0,
           'rx_pps': 7664728.0,
           'rx_util': 12.87675328,
           'tx_bps': 15069239296.0,
           'tx_bps_L1': 19778373696.0,
           'tx_pps': 29432090.0,
           'tx_util': 49.44593424}}
18/03/2021 16:37:38                         pktgen: {'ibytes': 9804894336,
 'ierrors': 0,
 'ipackets': 153201501,
 'obytes': 37644122240,
 'oerrors': 0,
 'opackets': 588189423,
 'rx_bps': 3924344832.0,
 'rx_bps_L1': 5150701312.0,
 'rx_pps': 7664728.0,
 'rx_util': 12.87675328,
 'tx_bps': 15069239296.0,
 'tx_bps_L1': 19778373696.0,
 'tx_pps': 29432090.0,
 'tx_util': 49.44593424}
18/03/2021 16:37:38                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15069239296.000000, tx_pps: 29432090.000000 
18/03/2021 16:37:38                         pktgen: {'ibytes': 9804894336,
 'ierrors': 0,
 'ipackets': 153201501,
 'obytes': 37644122240,
 'oerrors': 0,
 'opackets': 588189423,
 'rx_bps': 3924344832.0,
 'rx_bps_L1': 5150701312.0,
 'rx_pps': 7664728.0,
 'rx_util': 12.87675328,
 'tx_bps': 15069239296.0,
 'tx_bps_L1': 19778373696.0,
 'tx_pps': 29432090.0,
 'tx_util': 49.44593424}
18/03/2021 16:37:38                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3924344832.000000, rx_pps: 7664728.000000
18/03/2021 16:37:38                         pktgen: throughput: pps_rx 7664728.000000, bps_rx 3924344832.000000
18/03/2021 16:37:38                         pktgen: traffic completed. 
18/03/2021 16:37:38                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:37:39                         tester: /tmp/vhost_cbdma
18/03/2021 16:37:39                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:37:41                         pktgen: test port 0 map gen port 0
18/03/2021 16:37:41                         pktgen: test port 0 map gen port 0
18/03/2021 16:37:41                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:37:41                         pktgen: trex port <0> not support flow control
18/03/2021 16:37:41                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:37:41                         pktgen: check the trex port link status
18/03/2021 16:37:41                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:37:41                         pktgen: begin traffic ......
18/03/2021 16:37:41                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:37:46                         pktgen: traffic completed. 
18/03/2021 16:37:46                         pktgen: check the trex port link status
18/03/2021 16:37:46                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:37:46                         pktgen: begin traffic ......
18/03/2021 16:37:46                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:38:06                         pktgen: begin get port statistic ...
18/03/2021 16:38:06                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:38:06                         pktgen: {0: {'ibytes': 98798047854,
     'ierrors': 0,
     'ipackets': 65084356,
     'obytes': 98798034192,
     'oerrors': 0,
     'opackets': 65084346,
     'rx_bps': 39391207424.0,
     'rx_bps_L1': 39910195664.0,
     'rx_pps': 3243676.5,
     'rx_util': 99.77548915999999,
     'tx_bps': 39391227904.0,
     'tx_bps_L1': 39910216344.0,
     'tx_pps': 3243677.75,
     'tx_util': 99.77554086},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.116138458251953,
            'cpu_util': 85.20287322998047,
            'cpu_util_raw': 84.75,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56591397,
            'rx_bps': 39391207424.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243676.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39391227904.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243677.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98798047854,
           'ierrors': 0,
           'ipackets': 65084356,
           'obytes': 98798034192,
           'oerrors': 0,
           'opackets': 65084346,
           'rx_bps': 39391207424.0,
           'rx_bps_L1': 39910195664.0,
           'rx_pps': 3243676.5,
           'rx_util': 99.77548915999999,
           'tx_bps': 39391227904.0,
           'tx_bps_L1': 39910216344.0,
           'tx_pps': 3243677.75,
           'tx_util': 99.77554086}}
18/03/2021 16:38:06                         pktgen: {'ibytes': 98798047854,
 'ierrors': 0,
 'ipackets': 65084356,
 'obytes': 98798034192,
 'oerrors': 0,
 'opackets': 65084346,
 'rx_bps': 39391207424.0,
 'rx_bps_L1': 39910195664.0,
 'rx_pps': 3243676.5,
 'rx_util': 99.77548915999999,
 'tx_bps': 39391227904.0,
 'tx_bps_L1': 39910216344.0,
 'tx_pps': 3243677.75,
 'tx_util': 99.77554086}
18/03/2021 16:38:06                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39391227904.000000, tx_pps: 3243677.750000 
18/03/2021 16:38:06                         pktgen: {'ibytes': 98798047854,
 'ierrors': 0,
 'ipackets': 65084356,
 'obytes': 98798034192,
 'oerrors': 0,
 'opackets': 65084346,
 'rx_bps': 39391207424.0,
 'rx_bps_L1': 39910195664.0,
 'rx_pps': 3243676.5,
 'rx_util': 99.77548915999999,
 'tx_bps': 39391227904.0,
 'tx_bps_L1': 39910216344.0,
 'tx_pps': 3243677.75,
 'tx_util': 99.77554086}
18/03/2021 16:38:06                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39391207424.000000, rx_pps: 3243676.500000
18/03/2021 16:38:06                         pktgen: throughput: pps_rx 3243676.500000, bps_rx 39391207424.000000
18/03/2021 16:38:06                         pktgen: traffic completed. 
18/03/2021 16:38:09             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:38:09             dut.10.240.183.220: 1048576
18/03/2021 16:38:21                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:38:21                         tester: /tmp/vhost_cbdma
18/03/2021 16:38:21                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:38:23                         pktgen: test port 0 map gen port 0
18/03/2021 16:38:23                         pktgen: test port 0 map gen port 0
18/03/2021 16:38:23                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:38:23                         pktgen: trex port <0> not support flow control
18/03/2021 16:38:23                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:38:23                         pktgen: check the trex port link status
18/03/2021 16:38:23                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:38:23                         pktgen: begin traffic ......
18/03/2021 16:38:23                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:38:28                         pktgen: traffic completed. 
18/03/2021 16:38:28                         pktgen: check the trex port link status
18/03/2021 16:38:28                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:38:28                         pktgen: begin traffic ......
18/03/2021 16:38:28                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:38:48                         pktgen: begin get port statistic ...
18/03/2021 16:38:48                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:38:48                         pktgen: {0: {'ibytes': 9667923456,
     'ierrors': 0,
     'ipackets': 151061304,
     'obytes': 37551756224,
     'oerrors': 0,
     'opackets': 586746223,
     'rx_bps': 3868271360.0,
     'rx_bps_L1': 5077104960.0,
     'rx_pps': 7555210.0,
     'rx_util': 12.6927624,
     'tx_bps': 14987688960.0,
     'tx_bps_L1': 19671340800.0,
     'tx_pps': 29272824.0,
     'tx_util': 49.178352},
 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': 7.500730514526367,
            'cpu_util': 99.90819549560547,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3868271360.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11119418368.0,
            'rx_pps': 7555210.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 14987688960.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29272824.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9667923456,
           'ierrors': 0,
           'ipackets': 151061304,
           'obytes': 37551756224,
           'oerrors': 0,
           'opackets': 586746223,
           'rx_bps': 3868271360.0,
           'rx_bps_L1': 5077104960.0,
           'rx_pps': 7555210.0,
           'rx_util': 12.6927624,
           'tx_bps': 14987688960.0,
           'tx_bps_L1': 19671340800.0,
           'tx_pps': 29272824.0,
           'tx_util': 49.178352}}
18/03/2021 16:38:48                         pktgen: {'ibytes': 9667923456,
 'ierrors': 0,
 'ipackets': 151061304,
 'obytes': 37551756224,
 'oerrors': 0,
 'opackets': 586746223,
 'rx_bps': 3868271360.0,
 'rx_bps_L1': 5077104960.0,
 'rx_pps': 7555210.0,
 'rx_util': 12.6927624,
 'tx_bps': 14987688960.0,
 'tx_bps_L1': 19671340800.0,
 'tx_pps': 29272824.0,
 'tx_util': 49.178352}
18/03/2021 16:38:48                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 14987688960.000000, tx_pps: 29272824.000000 
18/03/2021 16:38:48                         pktgen: {'ibytes': 9667923456,
 'ierrors': 0,
 'ipackets': 151061304,
 'obytes': 37551756224,
 'oerrors': 0,
 'opackets': 586746223,
 'rx_bps': 3868271360.0,
 'rx_bps_L1': 5077104960.0,
 'rx_pps': 7555210.0,
 'rx_util': 12.6927624,
 'tx_bps': 14987688960.0,
 'tx_bps_L1': 19671340800.0,
 'tx_pps': 29272824.0,
 'tx_util': 49.178352}
18/03/2021 16:38:48                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3868271360.000000, rx_pps: 7555210.000000
18/03/2021 16:38:48                         pktgen: throughput: pps_rx 7555210.000000, bps_rx 3868271360.000000
18/03/2021 16:38:48                         pktgen: traffic completed. 
18/03/2021 16:38:48                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:38:48                         tester: /tmp/vhost_cbdma
18/03/2021 16:38:48                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:38:50                         pktgen: test port 0 map gen port 0
18/03/2021 16:38:50                         pktgen: test port 0 map gen port 0
18/03/2021 16:38:50                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:38:50                         pktgen: trex port <0> not support flow control
18/03/2021 16:38:50                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:38:50                         pktgen: check the trex port link status
18/03/2021 16:38:50                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:38:50                         pktgen: begin traffic ......
18/03/2021 16:38:50                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:38:55                         pktgen: traffic completed. 
18/03/2021 16:38:55                         pktgen: check the trex port link status
18/03/2021 16:38:55                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:38:55                         pktgen: begin traffic ......
18/03/2021 16:38:55                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:39:15                         pktgen: begin get port statistic ...
18/03/2021 16:39:15                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:39:15                         pktgen: {0: {'ibytes': 98797674426,
     'ierrors': 0,
     'ipackets': 65084110,
     'obytes': 98797650138,
     'oerrors': 0,
     'opackets': 65084093,
     'rx_bps': 39562100736.0,
     'rx_bps_L1': 40083340536.0,
     'rx_pps': 3257748.75,
     'rx_util': 100.20835134,
     'tx_bps': 39562084352.0,
     'tx_bps_L1': 40083324072.0,
     'tx_pps': 3257748.25,
     'tx_util': 100.20831018},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.371158599853516,
            'cpu_util': 84.63868713378906,
            'cpu_util_raw': 84.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56437603,
            'rx_bps': 39562100736.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3257748.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39562084352.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3257748.25},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98797674426,
           'ierrors': 0,
           'ipackets': 65084110,
           'obytes': 98797650138,
           'oerrors': 0,
           'opackets': 65084093,
           'rx_bps': 39562100736.0,
           'rx_bps_L1': 40083340536.0,
           'rx_pps': 3257748.75,
           'rx_util': 100.20835134,
           'tx_bps': 39562084352.0,
           'tx_bps_L1': 40083324072.0,
           'tx_pps': 3257748.25,
           'tx_util': 100.20831018}}
18/03/2021 16:39:15                         pktgen: {'ibytes': 98797674426,
 'ierrors': 0,
 'ipackets': 65084110,
 'obytes': 98797650138,
 'oerrors': 0,
 'opackets': 65084093,
 'rx_bps': 39562100736.0,
 'rx_bps_L1': 40083340536.0,
 'rx_pps': 3257748.75,
 'rx_util': 100.20835134,
 'tx_bps': 39562084352.0,
 'tx_bps_L1': 40083324072.0,
 'tx_pps': 3257748.25,
 'tx_util': 100.20831018}
18/03/2021 16:39:15                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39562084352.000000, tx_pps: 3257748.250000 
18/03/2021 16:39:15                         pktgen: {'ibytes': 98797674426,
 'ierrors': 0,
 'ipackets': 65084110,
 'obytes': 98797650138,
 'oerrors': 0,
 'opackets': 65084093,
 'rx_bps': 39562100736.0,
 'rx_bps_L1': 40083340536.0,
 'rx_pps': 3257748.75,
 'rx_util': 100.20835134,
 'tx_bps': 39562084352.0,
 'tx_bps_L1': 40083324072.0,
 'tx_pps': 3257748.25,
 'tx_util': 100.20831018}
18/03/2021 16:39:15                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39562100736.000000, rx_pps: 3257748.750000
18/03/2021 16:39:15                         pktgen: throughput: pps_rx 3257748.750000, bps_rx 39562100736.000000
18/03/2021 16:39:15                         pktgen: traffic completed. 
18/03/2021 16:39:15                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:39:15                         tester: /tmp/vhost_cbdma
18/03/2021 16:39:15                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:39:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:39:17                         pktgen: test port 0 map gen port 0
18/03/2021 16:39:18                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:39:18                         pktgen: trex port <0> not support flow control
18/03/2021 16:39:18                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:39:18                         pktgen: check the trex port link status
18/03/2021 16:39:18                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:39:18                         pktgen: begin traffic ......
18/03/2021 16:39:18                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:39:23                         pktgen: traffic completed. 
18/03/2021 16:39:23                         pktgen: check the trex port link status
18/03/2021 16:39:23                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:39:23                         pktgen: begin traffic ......
18/03/2021 16:39:23                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:39:43                         pktgen: begin get port statistic ...
18/03/2021 16:39:43                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:39:43                         pktgen: {0: {'ibytes': 9671731840,
     'ierrors': 0,
     'ipackets': 151120810,
     'obytes': 37545101440,
     'oerrors': 0,
     'opackets': 586642243,
     'rx_bps': 3873792768.0,
     'rx_bps_L1': 5084351568.0,
     'rx_pps': 7565992.5,
     'rx_util': 12.710878919999999,
     'tx_bps': 15022844928.0,
     'tx_bps_L1': 19717485248.0,
     'tx_pps': 29341502.0,
     'tx_util': 49.29371312},
 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': 7.5156097412109375,
            'cpu_util': 99.94428253173828,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3873792768.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11149051904.0,
            'rx_pps': 7565992.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15022844928.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29341502.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9671731840,
           'ierrors': 0,
           'ipackets': 151120810,
           'obytes': 37545101440,
           'oerrors': 0,
           'opackets': 586642243,
           'rx_bps': 3873792768.0,
           'rx_bps_L1': 5084351568.0,
           'rx_pps': 7565992.5,
           'rx_util': 12.710878919999999,
           'tx_bps': 15022844928.0,
           'tx_bps_L1': 19717485248.0,
           'tx_pps': 29341502.0,
           'tx_util': 49.29371312}}
18/03/2021 16:39:43                         pktgen: {'ibytes': 9671731840,
 'ierrors': 0,
 'ipackets': 151120810,
 'obytes': 37545101440,
 'oerrors': 0,
 'opackets': 586642243,
 'rx_bps': 3873792768.0,
 'rx_bps_L1': 5084351568.0,
 'rx_pps': 7565992.5,
 'rx_util': 12.710878919999999,
 'tx_bps': 15022844928.0,
 'tx_bps_L1': 19717485248.0,
 'tx_pps': 29341502.0,
 'tx_util': 49.29371312}
18/03/2021 16:39:43                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15022844928.000000, tx_pps: 29341502.000000 
18/03/2021 16:39:43                         pktgen: {'ibytes': 9671731840,
 'ierrors': 0,
 'ipackets': 151120810,
 'obytes': 37545101440,
 'oerrors': 0,
 'opackets': 586642243,
 'rx_bps': 3873792768.0,
 'rx_bps_L1': 5084351568.0,
 'rx_pps': 7565992.5,
 'rx_util': 12.710878919999999,
 'tx_bps': 15022844928.0,
 'tx_bps_L1': 19717485248.0,
 'tx_pps': 29341502.0,
 'tx_util': 49.29371312}
18/03/2021 16:39:43                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3873792768.000000, rx_pps: 7565992.500000
18/03/2021 16:39:43                         pktgen: throughput: pps_rx 7565992.500000, bps_rx 3873792768.000000
18/03/2021 16:39:43                         pktgen: traffic completed. 
18/03/2021 16:39:43                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:39:43                         tester: /tmp/vhost_cbdma
18/03/2021 16:39:43                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:39:45                         pktgen: test port 0 map gen port 0
18/03/2021 16:39:45                         pktgen: test port 0 map gen port 0
18/03/2021 16:39:45                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:39:45                         pktgen: trex port <0> not support flow control
18/03/2021 16:39:45                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:39:45                         pktgen: check the trex port link status
18/03/2021 16:39:45                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:39:45                         pktgen: begin traffic ......
18/03/2021 16:39:45                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:39:50                         pktgen: traffic completed. 
18/03/2021 16:39:50                         pktgen: check the trex port link status
18/03/2021 16:39:50                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:39:50                         pktgen: begin traffic ......
18/03/2021 16:39:50                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:40:10                         pktgen: begin get port statistic ...
18/03/2021 16:40:10                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:40:10                         pktgen: {0: {'ibytes': 98803042074,
     'ierrors': 0,
     'ipackets': 65087646,
     'obytes': 98803057254,
     'oerrors': 0,
     'opackets': 65087658,
     'rx_bps': 39388717056.0,
     'rx_bps_L1': 39907672496.0,
     'rx_pps': 3243471.5,
     'rx_util': 99.76918124000001,
     'tx_bps': 39388655616.0,
     'tx_bps_L1': 39907610336.0,
     'tx_pps': 3243467.0,
     'tx_util': 99.76902584},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.17392349243164,
            'cpu_util': 84.98486328125,
            'cpu_util_raw': 85.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56740407,
            'rx_bps': 39388717056.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243471.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39388655616.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243467.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98803042074,
           'ierrors': 0,
           'ipackets': 65087646,
           'obytes': 98803057254,
           'oerrors': 0,
           'opackets': 65087658,
           'rx_bps': 39388717056.0,
           'rx_bps_L1': 39907672496.0,
           'rx_pps': 3243471.5,
           'rx_util': 99.76918124000001,
           'tx_bps': 39388655616.0,
           'tx_bps_L1': 39907610336.0,
           'tx_pps': 3243467.0,
           'tx_util': 99.76902584}}
18/03/2021 16:40:10                         pktgen: {'ibytes': 98803042074,
 'ierrors': 0,
 'ipackets': 65087646,
 'obytes': 98803057254,
 'oerrors': 0,
 'opackets': 65087658,
 'rx_bps': 39388717056.0,
 'rx_bps_L1': 39907672496.0,
 'rx_pps': 3243471.5,
 'rx_util': 99.76918124000001,
 'tx_bps': 39388655616.0,
 'tx_bps_L1': 39907610336.0,
 'tx_pps': 3243467.0,
 'tx_util': 99.76902584}
18/03/2021 16:40:10                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39388655616.000000, tx_pps: 3243467.000000 
18/03/2021 16:40:10                         pktgen: {'ibytes': 98803042074,
 'ierrors': 0,
 'ipackets': 65087646,
 'obytes': 98803057254,
 'oerrors': 0,
 'opackets': 65087658,
 'rx_bps': 39388717056.0,
 'rx_bps_L1': 39907672496.0,
 'rx_pps': 3243471.5,
 'rx_util': 99.76918124000001,
 'tx_bps': 39388655616.0,
 'tx_bps_L1': 39907610336.0,
 'tx_pps': 3243467.0,
 'tx_util': 99.76902584}
18/03/2021 16:40:10                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39388717056.000000, rx_pps: 3243471.500000
18/03/2021 16:40:10                         pktgen: throughput: pps_rx 3243471.500000, bps_rx 39388717056.000000
18/03/2021 16:40:10                         pktgen: traffic completed. 
18/03/2021 16:40:14             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:40:14             dut.10.240.183.220: 1048576
18/03/2021 16:40:25                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:40:25                         tester: /tmp/vhost_cbdma
18/03/2021 16:40:25                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:40:27                         pktgen: test port 0 map gen port 0
18/03/2021 16:40:27                         pktgen: test port 0 map gen port 0
18/03/2021 16:40:27                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:40:27                         pktgen: trex port <0> not support flow control
18/03/2021 16:40:27                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:40:27                         pktgen: check the trex port link status
18/03/2021 16:40:27                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:40:27                         pktgen: begin traffic ......
18/03/2021 16:40:27                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:40:32                         pktgen: traffic completed. 
18/03/2021 16:40:32                         pktgen: check the trex port link status
18/03/2021 16:40:32                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:40:32                         pktgen: begin traffic ......
18/03/2021 16:40:32                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:40:52                         pktgen: begin get port statistic ...
18/03/2021 16:40:52                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:40:52                         pktgen: {0: {'ibytes': 10033323584,
     'ierrors': 0,
     'ipackets': 156770690,
     'obytes': 37776048256,
     'oerrors': 0,
     'opackets': 590250787,
     'rx_bps': 4017932544.0,
     'rx_bps_L1': 5273536304.0,
     'rx_pps': 7847523.5,
     'rx_util': 13.18384076,
     'tx_bps': 15084418048.0,
     'tx_bps_L1': 19798299008.0,
     'tx_pps': 29461756.0,
     'tx_util': 49.49574752},
 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': 7.54997444152832,
            'cpu_util': 99.89714813232422,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 4017932544.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11066485760.0,
            'rx_pps': 7847523.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15084418048.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29461756.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 10033323584,
           'ierrors': 0,
           'ipackets': 156770690,
           'obytes': 37776048256,
           'oerrors': 0,
           'opackets': 590250787,
           'rx_bps': 4017932544.0,
           'rx_bps_L1': 5273536304.0,
           'rx_pps': 7847523.5,
           'rx_util': 13.18384076,
           'tx_bps': 15084418048.0,
           'tx_bps_L1': 19798299008.0,
           'tx_pps': 29461756.0,
           'tx_util': 49.49574752}}
18/03/2021 16:40:52                         pktgen: {'ibytes': 10033323584,
 'ierrors': 0,
 'ipackets': 156770690,
 'obytes': 37776048256,
 'oerrors': 0,
 'opackets': 590250787,
 'rx_bps': 4017932544.0,
 'rx_bps_L1': 5273536304.0,
 'rx_pps': 7847523.5,
 'rx_util': 13.18384076,
 'tx_bps': 15084418048.0,
 'tx_bps_L1': 19798299008.0,
 'tx_pps': 29461756.0,
 'tx_util': 49.49574752}
18/03/2021 16:40:52                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15084418048.000000, tx_pps: 29461756.000000 
18/03/2021 16:40:52                         pktgen: {'ibytes': 10033323584,
 'ierrors': 0,
 'ipackets': 156770690,
 'obytes': 37776048256,
 'oerrors': 0,
 'opackets': 590250787,
 'rx_bps': 4017932544.0,
 'rx_bps_L1': 5273536304.0,
 'rx_pps': 7847523.5,
 'rx_util': 13.18384076,
 'tx_bps': 15084418048.0,
 'tx_bps_L1': 19798299008.0,
 'tx_pps': 29461756.0,
 'tx_util': 49.49574752}
18/03/2021 16:40:52                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4017932544.000000, rx_pps: 7847523.500000
18/03/2021 16:40:52                         pktgen: throughput: pps_rx 7847523.500000, bps_rx 4017932544.000000
18/03/2021 16:40:52                         pktgen: traffic completed. 
18/03/2021 16:40:52                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:40:52                         tester: /tmp/vhost_cbdma
18/03/2021 16:40:52                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:40:54                         pktgen: test port 0 map gen port 0
18/03/2021 16:40:54                         pktgen: test port 0 map gen port 0
18/03/2021 16:40:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:40:54                         pktgen: trex port <0> not support flow control
18/03/2021 16:40:54                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:40:54                         pktgen: check the trex port link status
18/03/2021 16:40:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:40:54                         pktgen: begin traffic ......
18/03/2021 16:40:54                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:40:59                         pktgen: traffic completed. 
18/03/2021 16:40:59                         pktgen: check the trex port link status
18/03/2021 16:40:59                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:40:59                         pktgen: begin traffic ......
18/03/2021 16:40:59                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:41:19                         pktgen: begin get port statistic ...
18/03/2021 16:41:19                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:41:19                         pktgen: {0: {'ibytes': 98802193512,
     'ierrors': 0,
     'ipackets': 65087087,
     'obytes': 98802188958,
     'oerrors': 0,
     'opackets': 65087086,
     'rx_bps': 39555473408.0,
     'rx_bps_L1': 40076625888.0,
     'rx_pps': 3257203.0,
     'rx_util': 100.19156471999999,
     'tx_bps': 39555452928.0,
     'tx_bps_L1': 40076605168.0,
     'tx_pps': 3257201.5,
     'tx_util': 100.19151292},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.241161346435547,
            'cpu_util': 85.09783935546875,
            'cpu_util_raw': 85.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56708057,
            'rx_bps': 39555473408.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3257203.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39555452928.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3257201.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98802193512,
           'ierrors': 0,
           'ipackets': 65087087,
           'obytes': 98802188958,
           'oerrors': 0,
           'opackets': 65087086,
           'rx_bps': 39555473408.0,
           'rx_bps_L1': 40076625888.0,
           'rx_pps': 3257203.0,
           'rx_util': 100.19156471999999,
           'tx_bps': 39555452928.0,
           'tx_bps_L1': 40076605168.0,
           'tx_pps': 3257201.5,
           'tx_util': 100.19151292}}
18/03/2021 16:41:19                         pktgen: {'ibytes': 98802193512,
 'ierrors': 0,
 'ipackets': 65087087,
 'obytes': 98802188958,
 'oerrors': 0,
 'opackets': 65087086,
 'rx_bps': 39555473408.0,
 'rx_bps_L1': 40076625888.0,
 'rx_pps': 3257203.0,
 'rx_util': 100.19156471999999,
 'tx_bps': 39555452928.0,
 'tx_bps_L1': 40076605168.0,
 'tx_pps': 3257201.5,
 'tx_util': 100.19151292}
18/03/2021 16:41:19                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39555452928.000000, tx_pps: 3257201.500000 
18/03/2021 16:41:19                         pktgen: {'ibytes': 98802193512,
 'ierrors': 0,
 'ipackets': 65087087,
 'obytes': 98802188958,
 'oerrors': 0,
 'opackets': 65087086,
 'rx_bps': 39555473408.0,
 'rx_bps_L1': 40076625888.0,
 'rx_pps': 3257203.0,
 'rx_util': 100.19156471999999,
 'tx_bps': 39555452928.0,
 'tx_bps_L1': 40076605168.0,
 'tx_pps': 3257201.5,
 'tx_util': 100.19151292}
18/03/2021 16:41:19                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39555473408.000000, rx_pps: 3257203.000000
18/03/2021 16:41:19                         pktgen: throughput: pps_rx 3257203.000000, bps_rx 39555473408.000000
18/03/2021 16:41:19                         pktgen: traffic completed. 
18/03/2021 16:41:20                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:41:20                         tester: /tmp/vhost_cbdma
18/03/2021 16:41:20                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:41:22                         pktgen: test port 0 map gen port 0
18/03/2021 16:41:22                         pktgen: test port 0 map gen port 0
18/03/2021 16:41:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:41:22                         pktgen: trex port <0> not support flow control
18/03/2021 16:41:22                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:41:22                         pktgen: check the trex port link status
18/03/2021 16:41:22                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:41:22                         pktgen: begin traffic ......
18/03/2021 16:41:22                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:41:27                         pktgen: traffic completed. 
18/03/2021 16:41:27                         pktgen: check the trex port link status
18/03/2021 16:41:27                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:41:27                         pktgen: begin traffic ......
18/03/2021 16:41:27                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:41:47                         pktgen: begin get port statistic ...
18/03/2021 16:41:47                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:41:47                         pktgen: {0: {'ibytes': 10033633728,
     'ierrors': 0,
     'ipackets': 156775538,
     'obytes': 37323705280,
     'oerrors': 0,
     'opackets': 583182917,
     'rx_bps': 4000210944.0,
     'rx_bps_L1': 5250277184.0,
     'rx_pps': 7812914.0,
     'rx_util': 13.125692959999999,
     'tx_bps': 14882255872.0,
     'tx_bps_L1': 19532960832.0,
     'tx_pps': 29066906.0,
     'tx_util': 48.83240208},
 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': 7.445773601531982,
            'cpu_util': 99.93760681152344,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 4000210944.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10882044928.0,
            'rx_pps': 7812914.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 14882255872.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29066906.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 10033633728,
           'ierrors': 0,
           'ipackets': 156775538,
           'obytes': 37323705280,
           'oerrors': 0,
           'opackets': 583182917,
           'rx_bps': 4000210944.0,
           'rx_bps_L1': 5250277184.0,
           'rx_pps': 7812914.0,
           'rx_util': 13.125692959999999,
           'tx_bps': 14882255872.0,
           'tx_bps_L1': 19532960832.0,
           'tx_pps': 29066906.0,
           'tx_util': 48.83240208}}
18/03/2021 16:41:47                         pktgen: {'ibytes': 10033633728,
 'ierrors': 0,
 'ipackets': 156775538,
 'obytes': 37323705280,
 'oerrors': 0,
 'opackets': 583182917,
 'rx_bps': 4000210944.0,
 'rx_bps_L1': 5250277184.0,
 'rx_pps': 7812914.0,
 'rx_util': 13.125692959999999,
 'tx_bps': 14882255872.0,
 'tx_bps_L1': 19532960832.0,
 'tx_pps': 29066906.0,
 'tx_util': 48.83240208}
18/03/2021 16:41:47                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 14882255872.000000, tx_pps: 29066906.000000 
18/03/2021 16:41:47                         pktgen: {'ibytes': 10033633728,
 'ierrors': 0,
 'ipackets': 156775538,
 'obytes': 37323705280,
 'oerrors': 0,
 'opackets': 583182917,
 'rx_bps': 4000210944.0,
 'rx_bps_L1': 5250277184.0,
 'rx_pps': 7812914.0,
 'rx_util': 13.125692959999999,
 'tx_bps': 14882255872.0,
 'tx_bps_L1': 19532960832.0,
 'tx_pps': 29066906.0,
 'tx_util': 48.83240208}
18/03/2021 16:41:47                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 4000210944.000000, rx_pps: 7812914.000000
18/03/2021 16:41:47                         pktgen: throughput: pps_rx 7812914.000000, bps_rx 4000210944.000000
18/03/2021 16:41:47                         pktgen: traffic completed. 
18/03/2021 16:41:47                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:41:47                         tester: /tmp/vhost_cbdma
18/03/2021 16:41:47                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:41:49                         pktgen: test port 0 map gen port 0
18/03/2021 16:41:49                         pktgen: test port 0 map gen port 0
18/03/2021 16:41:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:41:49                         pktgen: trex port <0> not support flow control
18/03/2021 16:41:49                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:41:49                         pktgen: check the trex port link status
18/03/2021 16:41:49                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:41:49                         pktgen: begin traffic ......
18/03/2021 16:41:49                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:41:54                         pktgen: traffic completed. 
18/03/2021 16:41:54                         pktgen: check the trex port link status
18/03/2021 16:41:54                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:41:54                         pktgen: begin traffic ......
18/03/2021 16:41:54                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:42:14                         pktgen: begin get port statistic ...
18/03/2021 16:42:14                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:42:14                         pktgen: {0: {'ibytes': 98797581828,
     'ierrors': 0,
     'ipackets': 65084050,
     'obytes': 98797586382,
     'oerrors': 0,
     'opackets': 65084052,
     'rx_bps': 39502077952.0,
     'rx_bps_L1': 40022526992.0,
     'rx_pps': 3252806.5,
     'rx_util': 100.05631747999999,
     'tx_bps': 39502086144.0,
     'tx_bps_L1': 40022535264.0,
     'tx_pps': 3252807.0,
     'tx_util': 100.05633816},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.237852096557617,
            'cpu_util': 84.99513244628906,
            'cpu_util_raw': 85.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56714053,
            'rx_bps': 39502077952.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3252806.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39502086144.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3252807.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98797581828,
           'ierrors': 0,
           'ipackets': 65084050,
           'obytes': 98797586382,
           'oerrors': 0,
           'opackets': 65084052,
           'rx_bps': 39502077952.0,
           'rx_bps_L1': 40022526992.0,
           'rx_pps': 3252806.5,
           'rx_util': 100.05631747999999,
           'tx_bps': 39502086144.0,
           'tx_bps_L1': 40022535264.0,
           'tx_pps': 3252807.0,
           'tx_util': 100.05633816}}
18/03/2021 16:42:14                         pktgen: {'ibytes': 98797581828,
 'ierrors': 0,
 'ipackets': 65084050,
 'obytes': 98797586382,
 'oerrors': 0,
 'opackets': 65084052,
 'rx_bps': 39502077952.0,
 'rx_bps_L1': 40022526992.0,
 'rx_pps': 3252806.5,
 'rx_util': 100.05631747999999,
 'tx_bps': 39502086144.0,
 'tx_bps_L1': 40022535264.0,
 'tx_pps': 3252807.0,
 'tx_util': 100.05633816}
18/03/2021 16:42:14                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39502086144.000000, tx_pps: 3252807.000000 
18/03/2021 16:42:14                         pktgen: {'ibytes': 98797581828,
 'ierrors': 0,
 'ipackets': 65084050,
 'obytes': 98797586382,
 'oerrors': 0,
 'opackets': 65084052,
 'rx_bps': 39502077952.0,
 'rx_bps_L1': 40022526992.0,
 'rx_pps': 3252806.5,
 'rx_util': 100.05631747999999,
 'tx_bps': 39502086144.0,
 'tx_bps_L1': 40022535264.0,
 'tx_pps': 3252807.0,
 'tx_util': 100.05633816}
18/03/2021 16:42:14                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39502077952.000000, rx_pps: 3252806.500000
18/03/2021 16:42:14                         pktgen: throughput: pps_rx 3252806.500000, bps_rx 39502077952.000000
18/03/2021 16:42:14                         pktgen: traffic completed. 
18/03/2021 16:42:18             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:42:18             dut.10.240.183.220: 1048576
18/03/2021 16:42:29                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:42:29                         tester: /tmp/vhost_cbdma
18/03/2021 16:42:29                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:42:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:42:31                         pktgen: test port 0 map gen port 0
18/03/2021 16:42:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:42:31                         pktgen: trex port <0> not support flow control
18/03/2021 16:42:31                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:42:31                         pktgen: check the trex port link status
18/03/2021 16:42:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:42:31                         pktgen: begin traffic ......
18/03/2021 16:42:31                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:42:36                         pktgen: traffic completed. 
18/03/2021 16:42:36                         pktgen: check the trex port link status
18/03/2021 16:42:36                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:42:36                         pktgen: begin traffic ......
18/03/2021 16:42:36                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:42:56                         pktgen: begin get port statistic ...
18/03/2021 16:42:56                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:42:56                         pktgen: {0: {'ibytes': 9869236096,
     'ierrors': 0,
     'ipackets': 154206814,
     'obytes': 37217930944,
     'oerrors': 0,
     'opackets': 581530171,
     'rx_bps': 3947087360.0,
     'rx_bps_L1': 5180552160.0,
     'rx_pps': 7709155.0,
     'rx_util': 12.951380400000001,
     'tx_bps': 14868022272.0,
     'tx_bps_L1': 19514280192.0,
     'tx_pps': 29039112.0,
     'tx_util': 48.78570048},
 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': 7.440581798553467,
            'cpu_util': 99.91168975830078,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3947087360.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 10920935424.0,
            'rx_pps': 7709155.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 14868022272.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29039112.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9869236096,
           'ierrors': 0,
           'ipackets': 154206814,
           'obytes': 37217930944,
           'oerrors': 0,
           'opackets': 581530171,
           'rx_bps': 3947087360.0,
           'rx_bps_L1': 5180552160.0,
           'rx_pps': 7709155.0,
           'rx_util': 12.951380400000001,
           'tx_bps': 14868022272.0,
           'tx_bps_L1': 19514280192.0,
           'tx_pps': 29039112.0,
           'tx_util': 48.78570048}}
18/03/2021 16:42:56                         pktgen: {'ibytes': 9869236096,
 'ierrors': 0,
 'ipackets': 154206814,
 'obytes': 37217930944,
 'oerrors': 0,
 'opackets': 581530171,
 'rx_bps': 3947087360.0,
 'rx_bps_L1': 5180552160.0,
 'rx_pps': 7709155.0,
 'rx_util': 12.951380400000001,
 'tx_bps': 14868022272.0,
 'tx_bps_L1': 19514280192.0,
 'tx_pps': 29039112.0,
 'tx_util': 48.78570048}
18/03/2021 16:42:56                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 14868022272.000000, tx_pps: 29039112.000000 
18/03/2021 16:42:56                         pktgen: {'ibytes': 9869236096,
 'ierrors': 0,
 'ipackets': 154206814,
 'obytes': 37217930944,
 'oerrors': 0,
 'opackets': 581530171,
 'rx_bps': 3947087360.0,
 'rx_bps_L1': 5180552160.0,
 'rx_pps': 7709155.0,
 'rx_util': 12.951380400000001,
 'tx_bps': 14868022272.0,
 'tx_bps_L1': 19514280192.0,
 'tx_pps': 29039112.0,
 'tx_util': 48.78570048}
18/03/2021 16:42:56                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3947087360.000000, rx_pps: 7709155.000000
18/03/2021 16:42:56                         pktgen: throughput: pps_rx 7709155.000000, bps_rx 3947087360.000000
18/03/2021 16:42:56                         pktgen: traffic completed. 
18/03/2021 16:42:56                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:42:56                         tester: /tmp/vhost_cbdma
18/03/2021 16:42:56                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:42:58                         pktgen: test port 0 map gen port 0
18/03/2021 16:42:58                         pktgen: test port 0 map gen port 0
18/03/2021 16:42:58                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:42:58                         pktgen: trex port <0> not support flow control
18/03/2021 16:42:58                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:42:58                         pktgen: check the trex port link status
18/03/2021 16:42:58                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:42:58                         pktgen: begin traffic ......
18/03/2021 16:42:58                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:43:03                         pktgen: traffic completed. 
18/03/2021 16:43:03                         pktgen: check the trex port link status
18/03/2021 16:43:03                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:03                         pktgen: begin traffic ......
18/03/2021 16:43:03                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:43:23                         pktgen: begin get port statistic ...
18/03/2021 16:43:23                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:43:23                         pktgen: {0: {'ibytes': 98802462198,
     'ierrors': 0,
     'ipackets': 65087264,
     'obytes': 98802469788,
     'oerrors': 0,
     'opackets': 65087268,
     'rx_bps': 39503421440.0,
     'rx_bps_L1': 40023888159.99999,
     'rx_pps': 3252917.0,
     'rx_util': 100.05972039999997,
     'tx_bps': 39503421440.0,
     'tx_bps_L1': 40023888120.0,
     'tx_pps': 3252916.75,
     'tx_util': 100.05972030000001},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.214670181274414,
            'cpu_util': 85.0828857421875,
            'cpu_util_raw': 84.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56406992,
            'rx_bps': 39503421440.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3252917.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39503421440.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3252916.75},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98802462198,
           'ierrors': 0,
           'ipackets': 65087264,
           'obytes': 98802469788,
           'oerrors': 0,
           'opackets': 65087268,
           'rx_bps': 39503421440.0,
           'rx_bps_L1': 40023888159.99999,
           'rx_pps': 3252917.0,
           'rx_util': 100.05972039999997,
           'tx_bps': 39503421440.0,
           'tx_bps_L1': 40023888120.0,
           'tx_pps': 3252916.75,
           'tx_util': 100.05972030000001}}
18/03/2021 16:43:23                         pktgen: {'ibytes': 98802462198,
 'ierrors': 0,
 'ipackets': 65087264,
 'obytes': 98802469788,
 'oerrors': 0,
 'opackets': 65087268,
 'rx_bps': 39503421440.0,
 'rx_bps_L1': 40023888159.99999,
 'rx_pps': 3252917.0,
 'rx_util': 100.05972039999997,
 'tx_bps': 39503421440.0,
 'tx_bps_L1': 40023888120.0,
 'tx_pps': 3252916.75,
 'tx_util': 100.05972030000001}
18/03/2021 16:43:23                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39503421440.000000, tx_pps: 3252916.750000 
18/03/2021 16:43:23                         pktgen: {'ibytes': 98802462198,
 'ierrors': 0,
 'ipackets': 65087264,
 'obytes': 98802469788,
 'oerrors': 0,
 'opackets': 65087268,
 'rx_bps': 39503421440.0,
 'rx_bps_L1': 40023888159.99999,
 'rx_pps': 3252917.0,
 'rx_util': 100.05972039999997,
 'tx_bps': 39503421440.0,
 'tx_bps_L1': 40023888120.0,
 'tx_pps': 3252916.75,
 'tx_util': 100.05972030000001}
18/03/2021 16:43:23                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39503421440.000000, rx_pps: 3252917.000000
18/03/2021 16:43:23                         pktgen: throughput: pps_rx 3252917.000000, bps_rx 39503421440.000000
18/03/2021 16:43:23                         pktgen: traffic completed. 
18/03/2021 16:43:24                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:43:24                         tester: /tmp/vhost_cbdma
18/03/2021 16:43:24                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:43:26                         pktgen: test port 0 map gen port 0
18/03/2021 16:43:26                         pktgen: test port 0 map gen port 0
18/03/2021 16:43:26                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:26                         pktgen: trex port <0> not support flow control
18/03/2021 16:43:26                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:43:26                         pktgen: check the trex port link status
18/03/2021 16:43:26                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:26                         pktgen: begin traffic ......
18/03/2021 16:43:26                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:43:31                         pktgen: traffic completed. 
18/03/2021 16:43:31                         pktgen: check the trex port link status
18/03/2021 16:43:31                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:31                         pktgen: begin traffic ......
18/03/2021 16:43:31                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:43:51                         pktgen: begin get port statistic ...
18/03/2021 16:43:51                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:43:51                         pktgen: {0: {'ibytes': 9900102016,
     'ierrors': 0,
     'ipackets': 154689126,
     'obytes': 37603810048,
     'oerrors': 0,
     'opackets': 587559532,
     'rx_bps': 3963868672.0,
     'rx_bps_L1': 5202578672.0,
     'rx_pps': 7741937.5,
     'rx_util': 13.00644668,
     'tx_bps': 15061694464.0,
     'tx_bps_L1': 19768473344.0,
     'tx_pps': 29417368.0,
     'tx_util': 49.42118336},
 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': 7.535003185272217,
            'cpu_util': 99.9448471069336,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3963868672.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11097826304.0,
            'rx_pps': 7741937.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15061694464.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29417368.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9900102016,
           'ierrors': 0,
           'ipackets': 154689126,
           'obytes': 37603810048,
           'oerrors': 0,
           'opackets': 587559532,
           'rx_bps': 3963868672.0,
           'rx_bps_L1': 5202578672.0,
           'rx_pps': 7741937.5,
           'rx_util': 13.00644668,
           'tx_bps': 15061694464.0,
           'tx_bps_L1': 19768473344.0,
           'tx_pps': 29417368.0,
           'tx_util': 49.42118336}}
18/03/2021 16:43:51                         pktgen: {'ibytes': 9900102016,
 'ierrors': 0,
 'ipackets': 154689126,
 'obytes': 37603810048,
 'oerrors': 0,
 'opackets': 587559532,
 'rx_bps': 3963868672.0,
 'rx_bps_L1': 5202578672.0,
 'rx_pps': 7741937.5,
 'rx_util': 13.00644668,
 'tx_bps': 15061694464.0,
 'tx_bps_L1': 19768473344.0,
 'tx_pps': 29417368.0,
 'tx_util': 49.42118336}
18/03/2021 16:43:51                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15061694464.000000, tx_pps: 29417368.000000 
18/03/2021 16:43:51                         pktgen: {'ibytes': 9900102016,
 'ierrors': 0,
 'ipackets': 154689126,
 'obytes': 37603810048,
 'oerrors': 0,
 'opackets': 587559532,
 'rx_bps': 3963868672.0,
 'rx_bps_L1': 5202578672.0,
 'rx_pps': 7741937.5,
 'rx_util': 13.00644668,
 'tx_bps': 15061694464.0,
 'tx_bps_L1': 19768473344.0,
 'tx_pps': 29417368.0,
 'tx_util': 49.42118336}
18/03/2021 16:43:51                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3963868672.000000, rx_pps: 7741937.500000
18/03/2021 16:43:51                         pktgen: throughput: pps_rx 7741937.500000, bps_rx 3963868672.000000
18/03/2021 16:43:51                         pktgen: traffic completed. 
18/03/2021 16:43:51                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:43:51                         tester: /tmp/vhost_cbdma
18/03/2021 16:43:51                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:43:53                         pktgen: test port 0 map gen port 0
18/03/2021 16:43:53                         pktgen: test port 0 map gen port 0
18/03/2021 16:43:53                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:53                         pktgen: trex port <0> not support flow control
18/03/2021 16:43:53                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:43:53                         pktgen: check the trex port link status
18/03/2021 16:43:53                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:53                         pktgen: begin traffic ......
18/03/2021 16:43:53                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:43:58                         pktgen: traffic completed. 
18/03/2021 16:43:58                         pktgen: check the trex port link status
18/03/2021 16:43:58                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:43:58                         pktgen: begin traffic ......
18/03/2021 16:43:58                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:44:18                         pktgen: begin get port statistic ...
18/03/2021 16:44:18                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:44:18                         pktgen: {0: {'ibytes': 98795790588,
     'ierrors': 0,
     'ipackets': 65082870,
     'obytes': 98795766300,
     'oerrors': 0,
     'opackets': 65082853,
     'rx_bps': 39500849152.0,
     'rx_bps_L1': 40021281952.0,
     'rx_pps': 3252705.0,
     'rx_util': 100.05320488,
     'tx_bps': 39500906496.0,
     'tx_bps_L1': 40021340096.0,
     'tx_pps': 3252710.0,
     'tx_util': 100.05335024},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.14048957824707,
            'cpu_util': 85.3501968383789,
            'cpu_util_raw': 85.25,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56544073,
            'rx_bps': 39500849152.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3252705.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39500906496.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3252710.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98795790588,
           'ierrors': 0,
           'ipackets': 65082870,
           'obytes': 98795766300,
           'oerrors': 0,
           'opackets': 65082853,
           'rx_bps': 39500849152.0,
           'rx_bps_L1': 40021281952.0,
           'rx_pps': 3252705.0,
           'rx_util': 100.05320488,
           'tx_bps': 39500906496.0,
           'tx_bps_L1': 40021340096.0,
           'tx_pps': 3252710.0,
           'tx_util': 100.05335024}}
18/03/2021 16:44:18                         pktgen: {'ibytes': 98795790588,
 'ierrors': 0,
 'ipackets': 65082870,
 'obytes': 98795766300,
 'oerrors': 0,
 'opackets': 65082853,
 'rx_bps': 39500849152.0,
 'rx_bps_L1': 40021281952.0,
 'rx_pps': 3252705.0,
 'rx_util': 100.05320488,
 'tx_bps': 39500906496.0,
 'tx_bps_L1': 40021340096.0,
 'tx_pps': 3252710.0,
 'tx_util': 100.05335024}
18/03/2021 16:44:18                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39500906496.000000, tx_pps: 3252710.000000 
18/03/2021 16:44:18                         pktgen: {'ibytes': 98795790588,
 'ierrors': 0,
 'ipackets': 65082870,
 'obytes': 98795766300,
 'oerrors': 0,
 'opackets': 65082853,
 'rx_bps': 39500849152.0,
 'rx_bps_L1': 40021281952.0,
 'rx_pps': 3252705.0,
 'rx_util': 100.05320488,
 'tx_bps': 39500906496.0,
 'tx_bps_L1': 40021340096.0,
 'tx_pps': 3252710.0,
 'tx_util': 100.05335024}
18/03/2021 16:44:18                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39500849152.000000, rx_pps: 3252705.000000
18/03/2021 16:44:18                         pktgen: throughput: pps_rx 3252705.000000, bps_rx 39500849152.000000
18/03/2021 16:44:18                         pktgen: traffic completed. 
18/03/2021 16:44:22             dut.10.240.183.220: cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'
18/03/2021 16:44:22             dut.10.240.183.220: 1048576
18/03/2021 16:44:33                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:44:33                         tester: /tmp/vhost_cbdma
18/03/2021 16:44:33                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:44:35                         pktgen: test port 0 map gen port 0
18/03/2021 16:44:35                         pktgen: test port 0 map gen port 0
18/03/2021 16:44:35                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:44:35                         pktgen: trex port <0> not support flow control
18/03/2021 16:44:35                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:44:35                         pktgen: check the trex port link status
18/03/2021 16:44:35                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:44:35                         pktgen: begin traffic ......
18/03/2021 16:44:35                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:44:40                         pktgen: traffic completed. 
18/03/2021 16:44:40                         pktgen: check the trex port link status
18/03/2021 16:44:40                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:44:40                         pktgen: begin traffic ......
18/03/2021 16:44:40                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:45:00                         pktgen: begin get port statistic ...
18/03/2021 16:45:00                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:45:00                         pktgen: {0: {'ibytes': 9785765632,
     'ierrors': 0,
     'ipackets': 152902588,
     'obytes': 37666580736,
     'oerrors': 0,
     'opackets': 588540359,
     'rx_bps': 3913805312.0,
     'rx_bps_L1': 5136869712.0,
     'rx_pps': 7644152.5,
     'rx_util': 12.842174279999998,
     'tx_bps': 15053453312.0,
     'tx_bps_L1': 19757657792.0,
     'tx_pps': 29401278.0,
     'tx_util': 49.39414448},
 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': 7.534168720245361,
            'cpu_util': 99.9012222290039,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3913805312.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11139647488.0,
            'rx_pps': 7644152.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15053453312.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29401278.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9785765632,
           'ierrors': 0,
           'ipackets': 152902588,
           'obytes': 37666580736,
           'oerrors': 0,
           'opackets': 588540359,
           'rx_bps': 3913805312.0,
           'rx_bps_L1': 5136869712.0,
           'rx_pps': 7644152.5,
           'rx_util': 12.842174279999998,
           'tx_bps': 15053453312.0,
           'tx_bps_L1': 19757657792.0,
           'tx_pps': 29401278.0,
           'tx_util': 49.39414448}}
18/03/2021 16:45:00                         pktgen: {'ibytes': 9785765632,
 'ierrors': 0,
 'ipackets': 152902588,
 'obytes': 37666580736,
 'oerrors': 0,
 'opackets': 588540359,
 'rx_bps': 3913805312.0,
 'rx_bps_L1': 5136869712.0,
 'rx_pps': 7644152.5,
 'rx_util': 12.842174279999998,
 'tx_bps': 15053453312.0,
 'tx_bps_L1': 19757657792.0,
 'tx_pps': 29401278.0,
 'tx_util': 49.39414448}
18/03/2021 16:45:00                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15053453312.000000, tx_pps: 29401278.000000 
18/03/2021 16:45:00                         pktgen: {'ibytes': 9785765632,
 'ierrors': 0,
 'ipackets': 152902588,
 'obytes': 37666580736,
 'oerrors': 0,
 'opackets': 588540359,
 'rx_bps': 3913805312.0,
 'rx_bps_L1': 5136869712.0,
 'rx_pps': 7644152.5,
 'rx_util': 12.842174279999998,
 'tx_bps': 15053453312.0,
 'tx_bps_L1': 19757657792.0,
 'tx_pps': 29401278.0,
 'tx_util': 49.39414448}
18/03/2021 16:45:00                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3913805312.000000, rx_pps: 7644152.500000
18/03/2021 16:45:00                         pktgen: throughput: pps_rx 7644152.500000, bps_rx 3913805312.000000
18/03/2021 16:45:00                         pktgen: traffic completed. 
18/03/2021 16:45:00                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:45:00                         tester: /tmp/vhost_cbdma
18/03/2021 16:45:00                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:45:02                         pktgen: test port 0 map gen port 0
18/03/2021 16:45:02                         pktgen: test port 0 map gen port 0
18/03/2021 16:45:02                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:02                         pktgen: trex port <0> not support flow control
18/03/2021 16:45:02                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:45:02                         pktgen: check the trex port link status
18/03/2021 16:45:02                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:03                         pktgen: begin traffic ......
18/03/2021 16:45:03                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:45:08                         pktgen: traffic completed. 
18/03/2021 16:45:08                         pktgen: check the trex port link status
18/03/2021 16:45:08                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:08                         pktgen: begin traffic ......
18/03/2021 16:45:08                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:45:28                         pktgen: begin get port statistic ...
18/03/2021 16:45:28                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:45:28                         pktgen: {0: {'ibytes': 98798245194,
     'ierrors': 0,
     'ipackets': 65084486,
     'obytes': 98798254302,
     'oerrors': 0,
     'opackets': 65084492,
     'rx_bps': 39503257600.0,
     'rx_bps_L1': 40023722160.0,
     'rx_pps': 3252903.5,
     'rx_util': 100.05930540000001,
     'tx_bps': 39503253504.0,
     'tx_bps_L1': 40023717984.0,
     'tx_pps': 3252903.0,
     'tx_util': 100.05929495999999},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.286298751831055,
            'cpu_util': 84.82080841064453,
            'cpu_util_raw': 84.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56680924,
            'rx_bps': 39503257600.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3252903.5,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39503253504.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3252903.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98798245194,
           'ierrors': 0,
           'ipackets': 65084486,
           'obytes': 98798254302,
           'oerrors': 0,
           'opackets': 65084492,
           'rx_bps': 39503257600.0,
           'rx_bps_L1': 40023722160.0,
           'rx_pps': 3252903.5,
           'rx_util': 100.05930540000001,
           'tx_bps': 39503253504.0,
           'tx_bps_L1': 40023717984.0,
           'tx_pps': 3252903.0,
           'tx_util': 100.05929495999999}}
18/03/2021 16:45:28                         pktgen: {'ibytes': 98798245194,
 'ierrors': 0,
 'ipackets': 65084486,
 'obytes': 98798254302,
 'oerrors': 0,
 'opackets': 65084492,
 'rx_bps': 39503257600.0,
 'rx_bps_L1': 40023722160.0,
 'rx_pps': 3252903.5,
 'rx_util': 100.05930540000001,
 'tx_bps': 39503253504.0,
 'tx_bps_L1': 40023717984.0,
 'tx_pps': 3252903.0,
 'tx_util': 100.05929495999999}
18/03/2021 16:45:28                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39503253504.000000, tx_pps: 3252903.000000 
18/03/2021 16:45:28                         pktgen: {'ibytes': 98798245194,
 'ierrors': 0,
 'ipackets': 65084486,
 'obytes': 98798254302,
 'oerrors': 0,
 'opackets': 65084492,
 'rx_bps': 39503257600.0,
 'rx_bps_L1': 40023722160.0,
 'rx_pps': 3252903.5,
 'rx_util': 100.05930540000001,
 'tx_bps': 39503253504.0,
 'tx_bps_L1': 40023717984.0,
 'tx_pps': 3252903.0,
 'tx_util': 100.05929495999999}
18/03/2021 16:45:28                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39503257600.000000, rx_pps: 3252903.500000
18/03/2021 16:45:28                         pktgen: throughput: pps_rx 3252903.500000, bps_rx 39503257600.000000
18/03/2021 16:45:28                         pktgen: traffic completed. 
18/03/2021 16:45:28                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:45:28                         tester: /tmp/vhost_cbdma
18/03/2021 16:45:28                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_64.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_64.pcap
18/03/2021 16:45:30                         pktgen: test port 0 map gen port 0
18/03/2021 16:45:30                         pktgen: test port 0 map gen port 0
18/03/2021 16:45:30                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:30                         pktgen: trex port <0> not support flow control
18/03/2021 16:45:30                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:45:30                         pktgen: check the trex port link status
18/03/2021 16:45:30                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:30                         pktgen: begin traffic ......
18/03/2021 16:45:30                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:45:35                         pktgen: traffic completed. 
18/03/2021 16:45:35                         pktgen: check the trex port link status
18/03/2021 16:45:35                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:35                         pktgen: begin traffic ......
18/03/2021 16:45:35                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:45:55                         pktgen: begin get port statistic ...
18/03/2021 16:45:55                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_64.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:45:55                         pktgen: {0: {'ibytes': 9829272512,
     'ierrors': 0,
     'ipackets': 153582393,
     'obytes': 37580575168,
     'oerrors': 0,
     'opackets': 587196498,
     'rx_bps': 3934970624.0,
     'rx_bps_L1': 5164648384.0,
     'rx_pps': 7685486.0,
     'rx_util': 12.91162096,
     'tx_bps': 15040491520.0,
     'tx_bps_L1': 19740643200.0,
     'tx_pps': 29375948.0,
     'tx_util': 49.351608},
 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': 7.524664878845215,
            'cpu_util': 99.94126892089844,
            'cpu_util_raw': 100.0,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 0,
            'rx_bps': 3934970624.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 11105520640.0,
            'rx_pps': 7685486.0,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 15040491520.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 29375948.0},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 9829272512,
           'ierrors': 0,
           'ipackets': 153582393,
           'obytes': 37580575168,
           'oerrors': 0,
           'opackets': 587196498,
           'rx_bps': 3934970624.0,
           'rx_bps_L1': 5164648384.0,
           'rx_pps': 7685486.0,
           'rx_util': 12.91162096,
           'tx_bps': 15040491520.0,
           'tx_bps_L1': 19740643200.0,
           'tx_pps': 29375948.0,
           'tx_util': 49.351608}}
18/03/2021 16:45:55                         pktgen: {'ibytes': 9829272512,
 'ierrors': 0,
 'ipackets': 153582393,
 'obytes': 37580575168,
 'oerrors': 0,
 'opackets': 587196498,
 'rx_bps': 3934970624.0,
 'rx_bps_L1': 5164648384.0,
 'rx_pps': 7685486.0,
 'rx_util': 12.91162096,
 'tx_bps': 15040491520.0,
 'tx_bps_L1': 19740643200.0,
 'tx_pps': 29375948.0,
 'tx_util': 49.351608}
18/03/2021 16:45:55                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 15040491520.000000, tx_pps: 29375948.000000 
18/03/2021 16:45:55                         pktgen: {'ibytes': 9829272512,
 'ierrors': 0,
 'ipackets': 153582393,
 'obytes': 37580575168,
 'oerrors': 0,
 'opackets': 587196498,
 'rx_bps': 3934970624.0,
 'rx_bps_L1': 5164648384.0,
 'rx_pps': 7685486.0,
 'rx_util': 12.91162096,
 'tx_bps': 15040491520.0,
 'tx_bps_L1': 19740643200.0,
 'tx_pps': 29375948.0,
 'tx_util': 49.351608}
18/03/2021 16:45:55                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 3934970624.000000, rx_pps: 7685486.000000
18/03/2021 16:45:55                         pktgen: throughput: pps_rx 7685486.000000, bps_rx 3934970624.000000
18/03/2021 16:45:55                         pktgen: traffic completed. 
18/03/2021 16:45:55                         tester: ls -d /tmp/vhost_cbdma
18/03/2021 16:45:55                         tester: /tmp/vhost_cbdma
18/03/2021 16:45:55                         tester: scp -v /home/lingwei/dts_cbdma_0318/output/tmp/pcap/multiqueuerandomip_1518.pcap root@10.240.183.217:/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap
18/03/2021 16:45:57                         pktgen: test port 0 map gen port 0
18/03/2021 16:45:57                         pktgen: test port 0 map gen port 0
18/03/2021 16:45:57                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'off',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:57                         pktgen: trex port <0> not support flow control
18/03/2021 16:45:57                         pktgen: trex packet generator: run traffic 5s to warm up ... 
18/03/2021 16:45:57                         pktgen: check the trex port link status
18/03/2021 16:45:57                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:45:57                         pktgen: begin traffic ......
18/03/2021 16:45:57                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:46:02                         pktgen: traffic completed. 
18/03/2021 16:46:02                         pktgen: check the trex port link status
18/03/2021 16:46:02                         pktgen: {'arp': '-',
 'cores': [0, 1, 2, 3],
 'description': 'Ethernet Controller XL710 for 40GbE QSFP+',
 'dest': 'b4:96:91:46:e0:5c',
 'driver': 'net_i40e',
 'fc': 'none',
 'fc_supported': 'no',
 'grat_arp': 'off',
 'hw_mac': '3c:fd:fe:c8:17:d0',
 'index': 0,
 'ipv6': 'off',
 'is_fc_supported': False,
 'is_led_supported': True,
 'is_link_supported': True,
 'is_prom_supported': True,
 'is_virtual': 'no',
 'is_vxlan_supported': 'yes',
 'layer_mode': 'Ethernet',
 'led_change_supported': 'yes',
 'link': 'UP',
 'link_change_supported': 'yes',
 'mult': 'off',
 'numa': 1,
 'pci_addr': '0000:82:00.0',
 'prom': 'on',
 'prom_supported': 'yes',
 'rx': {'caps': ['flow_stats', 'latency'], 'counters': 127},
 'rx_filter_mode': 'hardware match',
 'rx_queue': 'off',
 'speed': 40.0,
 'src_ipv4': '-',
 'src_mac': '3c:fd:fe:c8:17:d0',
 'stack': 'legacy',
 'status': 'IDLE',
 'supp_speeds': [40000],
 'vlan': '-',
 'vxlan_fs': '-'}
18/03/2021 16:46:02                         pktgen: begin traffic ......
18/03/2021 16:46:02                         pktgen: {'ports': [0], 'mult': '100%', 'core_mask': None, 'force': True}
18/03/2021 16:46:22                         pktgen: begin get port statistic ...
18/03/2021 16:46:22                         pktgen: {'options': {'fields_config': {'ip': {'src': {'action': 'random',
                                              'end': '1.1.1.64',
                                              'start': '1.1.1.1',
                                              'step': 1}}},
             'pcap': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
             'stream_config': {'rate': 100,
                               'transmit_mode': 'continuous',
                               'txmode': {}}},
 'pcap_file': '/tmp/vhost_cbdma/multiqueuerandomip_1518.pcap',
 'rx_port': 0,
 'tx_port': 0}
18/03/2021 16:46:22                         pktgen: {0: {'ibytes': 98798718810,
     'ierrors': 0,
     'ipackets': 65084798,
     'obytes': 98798718810,
     'oerrors': 0,
     'opackets': 65084799,
     'rx_bps': 39392555008.0,
     'rx_bps_L1': 39911561048.0,
     'rx_pps': 3243787.75,
     'rx_util': 99.77890262,
     'tx_bps': 39392550912.0,
     'tx_bps_L1': 39911556912.0,
     'tx_pps': 3243787.5,
     'tx_util': 99.77889228},
 1: {'ibytes': 0,
     'ierrors': 0,
     'ipackets': 0,
     'obytes': 0,
     'oerrors': 0,
     'opackets': 0,
     'rx_bps': 0.0,
     'rx_bps_L1': 0,
     'rx_pps': 0.0,
     'rx_util': 0.0,
     'tx_bps': 0.0,
     'tx_bps_L1': 0,
     'tx_pps': 0.0,
     'tx_util': 0.0},
 'flow_stats': {},
 'global': {'active_flows': 0.0,
            'active_sockets': 0,
            'bw_per_core': 23.42650032043457,
            'cpu_util': 84.076904296875,
            'cpu_util_raw': 80.5,
            'open_flows': 0.0,
            'platform_factor': 1.0,
            'queue_full': 56268934,
            'rx_bps': 39392555008.0,
            'rx_core_pps': 0.0,
            'rx_cpu_util': 0.0,
            'rx_drop_bps': 0.0,
            'rx_pps': 3243787.75,
            'socket_util': 0.0,
            'total_alloc_error': 0,
            'total_clients': 0,
            'total_servers': 0,
            'tx_bps': 39392550912.0,
            'tx_cps': 0.0,
            'tx_expected_bps': 0.0,
            'tx_expected_cps': 0.0,
            'tx_expected_pps': 0.0,
            'tx_pps': 3243787.5},
 'latency': {'global': {'bad_hdr': 0, 'old_flow': 0}},
 'total': {'ibytes': 98798718810,
           'ierrors': 0,
           'ipackets': 65084798,
           'obytes': 98798718810,
           'oerrors': 0,
           'opackets': 65084799,
           'rx_bps': 39392555008.0,
           'rx_bps_L1': 39911561048.0,
           'rx_pps': 3243787.75,
           'rx_util': 99.77890262,
           'tx_bps': 39392550912.0,
           'tx_bps_L1': 39911556912.0,
           'tx_pps': 3243787.5,
           'tx_util': 99.77889228}}
18/03/2021 16:46:22                         pktgen: {'ibytes': 98798718810,
 'ierrors': 0,
 'ipackets': 65084798,
 'obytes': 98798718810,
 'oerrors': 0,
 'opackets': 65084799,
 'rx_bps': 39392555008.0,
 'rx_bps_L1': 39911561048.0,
 'rx_pps': 3243787.75,
 'rx_util': 99.77890262,
 'tx_bps': 39392550912.0,
 'tx_bps_L1': 39911556912.0,
 'tx_pps': 3243787.5,
 'tx_util': 99.77889228}
18/03/2021 16:46:22                         pktgen: Tx Port 0 stats: 
tx_port: 0,  tx_bps: 39392550912.000000, tx_pps: 3243787.500000 
18/03/2021 16:46:22                         pktgen: {'ibytes': 98798718810,
 'ierrors': 0,
 'ipackets': 65084798,
 'obytes': 98798718810,
 'oerrors': 0,
 'opackets': 65084799,
 'rx_bps': 39392555008.0,
 'rx_bps_L1': 39911561048.0,
 'rx_pps': 3243787.75,
 'rx_util': 99.77890262,
 'tx_bps': 39392550912.0,
 'tx_bps_L1': 39911556912.0,
 'tx_pps': 3243787.5,
 'tx_util': 99.77889228}
18/03/2021 16:46:22                         pktgen: Rx Port 0 stats: 
rx_port: 0,  rx_bps: 39392555008.000000, rx_pps: 3243787.750000
18/03/2021 16:46:22                         pktgen: throughput: pps_rx 3243787.750000, bps_rx 39392555008.000000
18/03/2021 16:46:22                         pktgen: traffic completed. 
18/03/2021 16:46:27           TestVirTioVhostCbdma: 
+-------+-----------------------------------------+-------+------------+
| Frame |              Mode/RXD-TXD               | Mpps  | % linerate |
+=======+=========================================+=======+============+
| 64    | inorder_mergeable_path                  | 7.623 | 12.807     |
+-------+-----------------------------------------+-------+------------+
| 1518  | inorder_mergeable_path                  | 3.244 | 99.774     |
+-------+-----------------------------------------+-------+------------+
| 64    | inorder_mergeable_path_RestartVhost     | 7.665 | 12.877     |
+-------+-----------------------------------------+-------+------------+
| 1518  | inorder_mergeable_path_RestartVhost     | 3.244 | 99.775     |
+-------+-----------------------------------------+-------+------------+
| 64    | mergeable_path                          | 7.555 | 12.693     |
+-------+-----------------------------------------+-------+------------+
| 1518  | mergeable_path                          | 3.258 | 100.208    |
+-------+-----------------------------------------+-------+------------+
| 64    | mergeable_path_RestartVhost             | 7.566 | 12.711     |
+-------+-----------------------------------------+-------+------------+
| 1518  | mergeable_path_RestartVhost             | 3.243 | 99.769     |
+-------+-----------------------------------------+-------+------------+
| 64    | inorder_non_mergeable_path              | 7.848 | 13.184     |
+-------+-----------------------------------------+-------+------------+
| 1518  | inorder_non_mergeable_path              | 3.257 | 100.192    |
+-------+-----------------------------------------+-------+------------+
| 64    | inorder_non_mergeable_path_RestartVhost | 7.813 | 13.126     |
+-------+-----------------------------------------+-------+------------+
| 1518  | inorder_non_mergeable_path_RestartVhost | 3.253 | 100.056    |
+-------+-----------------------------------------+-------+------------+
| 64    | non_mergeable_path                      | 7.709 | 12.951     |
+-------+-----------------------------------------+-------+------------+
| 1518  | non_mergeable_path                      | 3.253 | 100.060    |
+-------+-----------------------------------------+-------+------------+
| 64    | non_mergeable_path_RestartVhost         | 7.742 | 13.006     |
+-------+-----------------------------------------+-------+------------+
| 1518  | non_mergeable_path_RestartVhost         | 3.253 | 100.053    |
+-------+-----------------------------------------+-------+------------+
| 64    | vector_rx_path                          | 7.644 | 12.842     |
+-------+-----------------------------------------+-------+------------+
| 1518  | vector_rx_path                          | 3.253 | 100.059    |
+-------+-----------------------------------------+-------+------------+
| 64    | vector_rx_path_RestartVhost             | 7.685 | 12.912     |
+-------+-----------------------------------------+-------+------------+
| 1518  | vector_rx_path_RestartVhost             | 3.244 | 99.779     |
+-------+-----------------------------------------+-------+------------+
18/03/2021 16:46:27           TestVirTioVhostCbdma: 
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| Frame |              Mode/RXD-TXD               |    Mpps    | % linerate | nb_desc | Expected Throughput | Throughput Difference |
+=======+=========================================+============+============+=========+=====================+=======================+
| 64    | inorder_mergeable_path                  | 7.623 Mpps | 12.807%    | 1024    | 0.000 Mpps          | 7.623 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | inorder_mergeable_path                  | 3.244 Mpps | 99.774%    | 1024    | 0.000 Mpps          | 3.244 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | inorder_mergeable_path_RestartVhost     | 7.665 Mpps | 12.877%    | 1024    | 0.000 Mpps          | 7.665 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | inorder_mergeable_path_RestartVhost     | 3.244 Mpps | 99.775%    | 1024    | 0.000 Mpps          | 3.244 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | mergeable_path                          | 7.555 Mpps | 12.693%    | 1024    | 0.000 Mpps          | 7.555 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | mergeable_path                          | 3.258 Mpps | 100.208%   | 1024    | 0.000 Mpps          | 3.258 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | mergeable_path_RestartVhost             | 7.566 Mpps | 12.711%    | 1024    | 0.000 Mpps          | 7.566 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | mergeable_path_RestartVhost             | 3.243 Mpps | 99.769%    | 1024    | 0.000 Mpps          | 3.243 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | inorder_non_mergeable_path              | 7.848 Mpps | 13.184%    | 1024    | 0.000 Mpps          | 7.848 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | inorder_non_mergeable_path              | 3.257 Mpps | 100.192%   | 1024    | 0.000 Mpps          | 3.257 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | inorder_non_mergeable_path_RestartVhost | 7.813 Mpps | 13.126%    | 1024    | 0.000 Mpps          | 7.813 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | inorder_non_mergeable_path_RestartVhost | 3.253 Mpps | 100.056%   | 1024    | 0.000 Mpps          | 3.253 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | non_mergeable_path                      | 7.709 Mpps | 12.951%    | 1024    | 0.000 Mpps          | 7.709 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | non_mergeable_path                      | 3.253 Mpps | 100.060%   | 1024    | 0.000 Mpps          | 3.253 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | non_mergeable_path_RestartVhost         | 7.742 Mpps | 13.006%    | 1024    | 0.000 Mpps          | 7.742 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | non_mergeable_path_RestartVhost         | 3.253 Mpps | 100.053%   | 1024    | 0.000 Mpps          | 3.253 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | vector_rx_path                          | 7.644 Mpps | 12.842%    | 1024    | 0.000 Mpps          | 7.644 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | vector_rx_path                          | 3.253 Mpps | 100.059%   | 1024    | 0.000 Mpps          | 3.253 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 64    | vector_rx_path_RestartVhost             | 7.685 Mpps | 12.912%    | 1024    | 0.000 Mpps          | 7.685 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
| 1518  | vector_rx_path_RestartVhost             | 3.244 Mpps | 99.779%    | 1024    | 0.000 Mpps          | 3.244 Mpps            |
+-------+-----------------------------------------+------------+------------+---------+---------------------+-----------------------+
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.623000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.244000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.665000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.244000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.555000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.258000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.566000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.243000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.848000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.257000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.813000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.253000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.709000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.253000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.742000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.253000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.644000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.253000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 7.685000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Accept tolerance are (Mpps) -0.000000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Throughput Difference are (Mpps) 3.244000
18/03/2021 16:46:27           TestVirTioVhostCbdma: Test Case test_perf_pvp_spilt_all_path_with_cbdma_vhost_enqueue_operations Result PASSED:
18/03/2021 16:46:27             dut.10.240.183.220: killall -I dpdk-testpmd 
18/03/2021 16:46:27             dut.10.240.183.220: dpdk-testpmd: no process found
18/03/2021 16:46:27             dut.10.240.183.220: modprobe ioatdma
18/03/2021 16:46:27             dut.10.240.183.220: 
18/03/2021 16:46:27             dut.10.240.183.220: ./usertools/dpdk-devbind.py -u 0000:80:04.0
18/03/2021 16:46:27             dut.10.240.183.220: 
18/03/2021 16:46:27             dut.10.240.183.220: ./usertools/dpdk-devbind.py --force --bind=ioatdma  0000:80:04.0
18/03/2021 16:46:28             dut.10.240.183.220: 
18/03/2021 16:46:28                            dts: 
TEST SUITE ENDED: TestVirTioVhostCbdma

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

* Re: [dts] [PATCH V1 0/9] modify hard code bind cbdma device to igb_uio by drivername in execution.cfg
  2021-03-19  6:51 ` Ling, WeiX
@ 2021-03-25  5:33   ` Tu, Lijuan
  0 siblings, 0 replies; 4+ messages in thread
From: Tu, Lijuan @ 2021-03-25  5:33 UTC (permalink / raw)
  To: Ling, WeiX, dts



> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Ling, WeiX
> Sent: 2021年3月19日 14:52
> To: dts@dpdk.org
> Subject: Re: [dts] [PATCH V1 0/9] modify hard code bind cbdma device to
> igb_uio by drivername in execution.cfg
> 
> > -----Original Message-----
> > From: Ling, WeiX <weix.ling@intel.com>
> > Sent: Friday, March 19, 2021 02:46 PM
> > To: dts@dpdk.org
> > Cc: Ling, WeiX <weix.ling@intel.com>
> > Subject: [dts][PATCH V1 0/9] modify hard code bind cbdma device to
> > igb_uio by drivername in execution.cfg
> 
> Tested-by: Wei Ling <weix.ling@intel.com>

Applied, thanks

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

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

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-19  6:45 [dts] [PATCH V1 0/9] modify hard code bind cbdma device to igb_uio by drivername in execution.cfg Ling Wei
2021-03-19  6:51 ` Ling, WeiX
2021-03-25  5:33   ` Tu, Lijuan
2021-03-22  1:34 ` Ling, WeiX

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