DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] Memory leak in rte_pci_scan
@ 2021-06-08 18:47 Owen Hilyard
  2021-06-14  9:11 ` David Marchand
  0 siblings, 1 reply; 8+ messages in thread
From: Owen Hilyard @ 2021-06-08 18:47 UTC (permalink / raw)
  To: dev; +Cc: dpdklab

Hello All,

As part of the community lab's work to deploy static analysis tools, we've
been doing test runs of the various tools. One of the problems we found is
that rte_pci_scan leaks 214368 Bytes every time it is run. There are also
numerous (180856) instances of the error message "EAL: recvmsg failed, Bad
file descriptor". Attached is the log from running the fast-tests suite
with ASAN enabled, and a 10-second timeout. The real timeout seems to be
the timeout argument multiplied by 10, making this really a 100-second
timeout. It is attached as a google drive link since the log itself is too
large for the mailing list.

Test Output:
https://drive.google.com/file/d/1NejCuba-HnvH9MMg7thBdGuOhQBXKiFh/view?usp=sharing

Owen Hilyard

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

* Re: [dpdk-dev] Memory leak in rte_pci_scan
  2021-06-08 18:47 [dpdk-dev] Memory leak in rte_pci_scan Owen Hilyard
@ 2021-06-14  9:11 ` David Marchand
  2021-06-14 10:30   ` David Marchand
  0 siblings, 1 reply; 8+ messages in thread
From: David Marchand @ 2021-06-14  9:11 UTC (permalink / raw)
  To: Owen Hilyard; +Cc: dev, dpdklab, Gaetan Rivet

On Tue, Jun 8, 2021 at 8:48 PM Owen Hilyard <ohilyard@iol.unh.edu> wrote:
>
> Hello All,
>
> As part of the community lab's work to deploy static analysis tools, we've
> been doing test runs of the various tools. One of the problems we found is
> that rte_pci_scan leaks 214368 Bytes every time it is run. There are also

I suspect the "leak" is on pci device objects that are not released
unless hot(un)plugging.
Cc: Gaetan.



> numerous (180856) instances of the error message "EAL: recvmsg failed, Bad
> file descriptor". Attached is the log from running the fast-tests suite
> with ASAN enabled, and a 10-second timeout. The real timeout seems to be
> the timeout argument multiplied by 10, making this really a 100-second
> timeout. It is attached as a google drive link since the log itself is too
> large for the mailing list.

Those logs come from the mp channel.
At cleanup the rte_mp_handle control thread is sleeping on the mp socket.
The thread serving rte_eal_cleanup shutdowns this socket fd, and the
control thread will spew the log messages you saw.

I'll send a patch.


-- 
David Marchand


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

* Re: [dpdk-dev] Memory leak in rte_pci_scan
  2021-06-14  9:11 ` David Marchand
@ 2021-06-14 10:30   ` David Marchand
  2021-06-14 20:41     ` Owen Hilyard
  0 siblings, 1 reply; 8+ messages in thread
From: David Marchand @ 2021-06-14 10:30 UTC (permalink / raw)
  To: Owen Hilyard; +Cc: dev, dpdklab, Gaetan Rivet, Jerin Jacob Kollanukkaran

On Mon, Jun 14, 2021 at 11:11 AM David Marchand
<david.marchand@redhat.com> wrote:
>
> On Tue, Jun 8, 2021 at 8:48 PM Owen Hilyard <ohilyard@iol.unh.edu> wrote:
> >
> > Hello All,
> >
> > As part of the community lab's work to deploy static analysis tools, we've
> > been doing test runs of the various tools. One of the problems we found is
> > that rte_pci_scan leaks 214368 Bytes every time it is run. There are also
>
> I suspect the "leak" is on pci device objects that are not released
> unless hot(un)plugging.
> Cc: Gaetan.

I think I found a leak at:
https://git.dpdk.org/dpdk/tree/drivers/bus/pci/linux/pci.c#n333

For devices with no kernel driver, 'dev' will be leaked, since there
is no reference to it in the pci device list.

There will be more things to fix (there is a proposed patch on
annotating the dpdk memory allocator for ASAN) but can you try this
diff below with the mp patch [1] I sent to see if the situation gets
better?

diff --git a/drivers/bus/pci/linux/pci.c b/drivers/bus/pci/linux/pci.c
index 0dc99e9cb2..5ea76bc867 100644
--- a/drivers/bus/pci/linux/pci.c
+++ b/drivers/bus/pci/linux/pci.c
@@ -331,7 +331,7 @@ pci_scan_one(const char *dirname, const struct
rte_pci_addr *addr)
                else
                        dev->kdrv = RTE_PCI_KDRV_UNKNOWN;
        } else {
-               dev->kdrv = RTE_PCI_KDRV_NONE;
+               free(dev);
                return 0;
        }
        /* device is valid, add in list (sorted) */


1: http://patchwork.dpdk.org/project/dpdk/patch/20210614091213.3953-1-david.marchand@redhat.com/

-- 
David Marchand


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

* Re: [dpdk-dev] Memory leak in rte_pci_scan
  2021-06-14 10:30   ` David Marchand
@ 2021-06-14 20:41     ` Owen Hilyard
  2021-06-15  7:43       ` David Marchand
  0 siblings, 1 reply; 8+ messages in thread
From: Owen Hilyard @ 2021-06-14 20:41 UTC (permalink / raw)
  To: David Marchand; +Cc: dev, dpdklab, Gaetan Rivet, Jerin Jacob Kollanukkaran

From what I've seen so far, that fixes the PCI leak. That just leaves a few
other places. I'll try to get the complete list to you tomorrow, since
running the full set of unit tests takes quite a few hours when ASAN is
involved.

On Mon, Jun 14, 2021 at 6:30 AM David Marchand <david.marchand@redhat.com>
wrote:

> On Mon, Jun 14, 2021 at 11:11 AM David Marchand
> <david.marchand@redhat.com> wrote:
> >
> > On Tue, Jun 8, 2021 at 8:48 PM Owen Hilyard <ohilyard@iol.unh.edu>
> wrote:
> > >
> > > Hello All,
> > >
> > > As part of the community lab's work to deploy static analysis tools,
> we've
> > > been doing test runs of the various tools. One of the problems we
> found is
> > > that rte_pci_scan leaks 214368 Bytes every time it is run. There are
> also
> >
> > I suspect the "leak" is on pci device objects that are not released
> > unless hot(un)plugging.
> > Cc: Gaetan.
>
> I think I found a leak at:
> https://git.dpdk.org/dpdk/tree/drivers/bus/pci/linux/pci.c#n333
>
> For devices with no kernel driver, 'dev' will be leaked, since there
> is no reference to it in the pci device list.
>
> There will be more things to fix (there is a proposed patch on
> annotating the dpdk memory allocator for ASAN) but can you try this
> diff below with the mp patch [1] I sent to see if the situation gets
> better?
>
> diff --git a/drivers/bus/pci/linux/pci.c b/drivers/bus/pci/linux/pci.c
> index 0dc99e9cb2..5ea76bc867 100644
> --- a/drivers/bus/pci/linux/pci.c
> +++ b/drivers/bus/pci/linux/pci.c
> @@ -331,7 +331,7 @@ pci_scan_one(const char *dirname, const struct
> rte_pci_addr *addr)
>                 else
>                         dev->kdrv = RTE_PCI_KDRV_UNKNOWN;
>         } else {
> -               dev->kdrv = RTE_PCI_KDRV_NONE;
> +               free(dev);
>                 return 0;
>         }
>         /* device is valid, add in list (sorted) */
>
>
> 1:
> http://patchwork.dpdk.org/project/dpdk/patch/20210614091213.3953-1-david.marchand@redhat.com/
>
> --
> David Marchand
>
>

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

* Re: [dpdk-dev] Memory leak in rte_pci_scan
  2021-06-14 20:41     ` Owen Hilyard
@ 2021-06-15  7:43       ` David Marchand
  2021-06-15 15:15         ` Owen Hilyard
  0 siblings, 1 reply; 8+ messages in thread
From: David Marchand @ 2021-06-15  7:43 UTC (permalink / raw)
  To: Owen Hilyard
  Cc: dev, dpdklab, Gaetan Rivet, Jerin Jacob Kollanukkaran, Aaron Conole

Hi Owen,

On Mon, Jun 14, 2021 at 10:42 PM Owen Hilyard <ohilyard@iol.unh.edu> wrote:
>
> From what I've seen so far, that fixes the PCI leak. That just leaves a few other places. I'll try to get the complete list to you tomorrow, since running the full set of unit tests takes quite a few hours when ASAN is involved.

Ok, thanks for the test.
I'll send a patch on the pci bus.

Just odd that it tooks hours in your case.
On my f32 system, it took 3/4 minutes.
It is probably worth looking why the difference.
We can't have asan enabled at UNH otherwise.


-- 
David Marchand


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

* Re: [dpdk-dev] Memory leak in rte_pci_scan
  2021-06-15  7:43       ` David Marchand
@ 2021-06-15 15:15         ` Owen Hilyard
  2021-06-16  9:37           ` David Marchand
  0 siblings, 1 reply; 8+ messages in thread
From: Owen Hilyard @ 2021-06-15 15:15 UTC (permalink / raw)
  To: David Marchand
  Cc: dev, dpdklab, Gaetan Rivet, Jerin Jacob Kollanukkaran, Aaron Conole

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

The issue may have been the interactive docker session I was running it in.
The last few tests (150-157) were all taking until the timeout the lab uses
for unit tests (2 hours since the timeout was multiplied by 10). I had to
leave for the day so I restarted it in a non-interactive container and it
ran in 2 hours. If we were to just run the fast-tests suite, then it would
have taken 42 minutes to run. This is mostly due to timeouts
in eal_flags_c_opt_autotest, eal_flags_hpet_autotest, eal_flags_misc_autotest
and multiprocess_autotest, each taking 600 seconds. Finding out what caused
these to stall would bring the runtime down to 3 minutes. All of the
failures should be ASAN-related.

On Tue, Jun 15, 2021 at 3:43 AM David Marchand <david.marchand@redhat.com>
wrote:

> Hi Owen,
>
> On Mon, Jun 14, 2021 at 10:42 PM Owen Hilyard <ohilyard@iol.unh.edu>
> wrote:
> >
> > From what I've seen so far, that fixes the PCI leak. That just leaves a
> few other places. I'll try to get the complete list to you tomorrow, since
> running the full set of unit tests takes quite a few hours when ASAN is
> involved.
>
> Ok, thanks for the test.
> I'll send a patch on the pci bus.
>
> Just odd that it tooks hours in your case.
> On my f32 system, it took 3/4 minutes.
> It is probably worth looking why the difference.
> We can't have asan enabled at UNH otherwise.
>
>
> --
> David Marchand
>
>

[-- Attachment #2: asan-full.txt --]
[-- Type: text/plain, Size: 1666450 bytes --]

Log of Meson test suite run on 2021-06-14T20:38:11.875597

Inherited environment: HOSTNAME=af7ffb10a800 PWD=/dpdk/build CCACHE_DIR=/ccache HOME=/root SHLVL=1 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RTE_KERNELDIR=CHANGE_ME DEBIAN_FRONTEND=noninteractive OLDPWD=/dpdk _=/usr/local/bin/meson LC_CTYPE=C.UTF-8 

  1/157 DPDK:fast-tests / acl_autotest                      OK                 5.80s
20:38:11 MALLOC_PERTURB_=198 DPDK_TEST=acl_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=acl_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>acl_autotest
acl context <acl_ctx>@0x7f480c1ffc40
  socket_id=-1
  alg=6
  first_load_sz=0
  max_rules=196608
  rule_size=128
  num_rules=0
  num_categories=0
  num_tries=0
acl context <acl_ctx>@0x7f480c1ffc40
  socket_id=-1
  alg=6
  first_load_sz=0
  max_rules=196608
  rule_size=128
  num_rules=0
  num_categories=0
  num_tries=0
running test_convert_rules(acl_ipv4vlan_tuple)
running test_convert_rules(acl_ipv4vlan_tuple, RTE_ACL_FIELD_TYPE_BITMASK type for IPv4)
running test_convert_rules(acl_ipv4vlan_tuple, RTE_ACL_FIELD_TYPE_RANGE type for IPv4)
running test_convert_rules(acl_ipv4vlan_tuple: swap VLAN and PORTs order)
running test_convert_rules(acl_ipv4vlan_tuple: swap SRC and DST IPv4 order)
test_u32_range#1698 starting range test from 0 to 264192
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f4c0d60a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/acl_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f4c0d38e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f4c0d32d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f480be00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f4c0d19f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f440bc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f4c0d13e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f400ba00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f4c0be9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f3c0b800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f4c0be39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f380b600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f480bd9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f340b400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f480bd3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f300b200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f480bcdd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f2c0b000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
ACL: allocation of 25166736 bytes on socket 33 for ACL_acl_ctx failed
ACL: rte_acl_ipv4vlan_add_rules: rule #1 is invalid
ACL: rte_acl_ipv4vlan_add_rules: rule #1 is invalid
ACL: rte_acl_ipv4vlan_add_rules: rule #1 is invalid
ACL: rte_acl_ipv4vlan_add_rules: rule #1 is invalid
------------------------------------------------------------------------------

  2/157 DPDK:fast-tests / atomic_autotest                   OK                22.56s
20:38:17 DPDK_TEST=atomic_autotest MALLOC_PERTURB_=25 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=atomic_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>atomic_autotest
usual inc/dec/add/sub functions
test and set
add/sub and return
inc and test
dec and test
128-bit compare and swap test
exchange test
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f1ee36c4000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/atomic_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f1ee366a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f1ee3609000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f1ae1e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f1ee337f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f16e1c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f1ee331e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f12e1a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f1ee319f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f0ee1800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f1ee313e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f0ae1600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f1ee1e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f06e1400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f1ee1e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f02e1200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f1ae1d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7efee1000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

  3/157 DPDK:fast-tests / bitops_autotest                   OK                 0.40s
20:38:40 MALLOC_PERTURB_=178 DPDK_TEST=bitops_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=bitops_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>bitops_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f8c0710c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/bitops_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f8c06e8e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f8c06e2d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f8805800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f8c06c9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f8405600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f8c06c3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f8005400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f8c0599a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f7c05200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f8c05939000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f7805000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f8c058d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f7404e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f8c05877000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f7004c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f8c05816000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f6c04a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

  4/157 DPDK:fast-tests / byteorder_autotest                OK                 0.40s
20:38:40 DPDK_TEST=byteorder_autotest MALLOC_PERTURB_=223 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=byteorder_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>byteorder_autotest
1337 -> 3713
deadbeef -> efbeadde
deadcafebabeface -> cefabebafecaadde
const 1337 -> 3713
const deadbeef -> efbeadde
const deadcafebabeface -> cefabebafecaadde
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f18d6674000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/byteorder_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f18d661a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f18d637f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f14d4e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f18d631e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f10d4c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f18d619f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f0cd4a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f18d613e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f08d4800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f18d4e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f04d4600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f18d4e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f00d4400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f14d4d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7efcd4200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f14d4d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ef8d4000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

  5/157 DPDK:fast-tests / cmdline_autotest                  FAIL               0.41s   exit status 1
20:38:41 DPDK_TEST=cmdline_autotest MALLOC_PERTURB_=149 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=cmdline_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>cmdline_autotest
Testind parsing ethernet addresses...
Testind parsing port lists...
Testind parsing numbers...
Testing parsing IP addresses...
Testing parsing strings...
Testing circular buffer...
Testing library functions...
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fbe0a6d3000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/cmdline_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fbe0a679000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fbe0a618000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fba08e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fbe0a37f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb608c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fbe0a31e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fb208a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fbe0a19f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fae08800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fbe0a13e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7faa08600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fbe08e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa608400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fbe08e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fa208200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fba08d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9e08000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer

=================================================================
==108==ERROR: LeakSanitizer: detected memory leaks

Direct leak of 10024 byte(s) in 1 object(s) allocated from:
    #0 0x7fbe0dd8bdc6 in calloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10ddc6)
    #1 0x564688a44391 in cmdline_new (/dpdk/build/app/test/dpdk-test+0x1c74391)
    #2 0x5646880b04c0 in test_cmdline_lib (/dpdk/build/app/test/dpdk-test+0x12e04c0)
    #3 0x5646880a9a83 in test_cmdline (/dpdk/build/app/test/dpdk-test+0x12d9a83)
    #4 0x564688084c7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #5 0x564688a475a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #6 0x564688a447b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #7 0x564688a4da78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #8 0x564688a448a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #9 0x5646872dd837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #10 0x7fbe0d5460b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)

Direct leak of 10024 byte(s) in 1 object(s) allocated from:
    #0 0x7fbe0dd8bdc6 in calloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10ddc6)
    #1 0x564688a44391 in cmdline_new (/dpdk/build/app/test/dpdk-test+0x1c74391)
    #2 0x5646880b0516 in test_cmdline_lib (/dpdk/build/app/test/dpdk-test+0x12e0516)
    #3 0x5646880a9a83 in test_cmdline (/dpdk/build/app/test/dpdk-test+0x12d9a83)
    #4 0x564688084c7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #5 0x564688a475a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #6 0x564688a447b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #7 0x564688a4da78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #8 0x564688a448a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #9 0x5646872dd837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #10 0x7fbe0d5460b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)

Direct leak of 10024 byte(s) in 1 object(s) allocated from:
    #0 0x7fbe0dd8bdc6 in calloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10ddc6)
    #1 0x564688a44391 in cmdline_new (/dpdk/build/app/test/dpdk-test+0x1c74391)
    #2 0x5646880b02c5 in test_cmdline_lib (/dpdk/build/app/test/dpdk-test+0x12e02c5)
    #3 0x5646880a9a83 in test_cmdline (/dpdk/build/app/test/dpdk-test+0x12d9a83)
    #4 0x564688084c7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #5 0x564688a475a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #6 0x564688a447b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #7 0x564688a4da78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #8 0x564688a448a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #9 0x5646872dd837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #10 0x7fbe0d5460b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)

SUMMARY: AddressSanitizer: 30072 byte(s) leaked in 3 allocation(s).
------------------------------------------------------------------------------

  6/157 DPDK:fast-tests / common_autotest                   OK                 0.64s
20:38:41 DPDK_TEST=common_autotest MALLOC_PERTURB_=194 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=common_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>common_autotest
test: 6d:65:6d:64:75:6d:70:5f:74:65:73:74:00
test at [0x7fff61812cd0], len=13
00000000: 6D 65 6D 64 75 6D 70 5F 74 65 73 74 00          | memdump_test.
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f49a685f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/common_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f49a6805000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f49a657f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f45a5000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f49a651e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f41a4e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f49a639f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f3da4c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f49a633e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f39a4a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f49a509a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f35a4800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f49a5039000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f31a4600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f45a4f9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f2da4400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f45a4f3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f29a4200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

  7/157 DPDK:fast-tests / cpuflags_autotest                 OK                 0.40s
20:38:42 DPDK_TEST=cpuflags_autotest MALLOC_PERTURB_=223 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=cpuflags_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>cpuflags_autotest

Checking for flags from different registers...
Check for SSE:		OK
Check for SSE2:		OK
Check for SSE3:		OK
Check for SSE4.1:	OK
Check for SSE4.2:	OK
Check for AVX:		OK
Check for AVX2:		OK
Check for AVX512F:	OK
Check for TRBOBST:	NOT PRESENT
Check for ENERGY_EFF:	NOT PRESENT
Check for LAHF_SAHF:	OK
Check for 1GB_PG:	OK
Check for INVTSC:	OK

Check for invalid flag:	ERROR
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f148e000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/cpuflags_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f148de96000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f148de35000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f108c600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f148db7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f0c8c400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f148db1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f088c200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f148d99f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f048c000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f148d93e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f008be00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f148c69a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7efc8bc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f148c639000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7ef88ba00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f108c59f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ef48b800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

  8/157 DPDK:fast-tests / debug_autotest                    OK                 1.01s
20:38:42 DPDK_TEST=debug_autotest MALLOC_PERTURB_=56 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=debug_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>debug_autotest
Child process terminated as expected - Test passed!
Child process terminated as expected - Test passed!
Child process status: 0
Child process terminated as expected - Test passed!
Child process status: 0
Child process status: 256
Child process terminated as expected - Test passed!
Child process status: 0
Child process status: 256
Child process status: 512
Child process terminated as expected - Test passed!
Child process status: 0
Child process status: 256
Child process status: 512
Child process status: 65280
Child process terminated as expected - Test passed!
Child process status: 0
Child process status: 256
Child process status: 512
Child process status: 65280
Child process status: 65280
test_exit Passed
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f5b3235d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/debug_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f5b32303000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f5b3207f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f5730a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f5b3201e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f5330800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f5b31e9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f4f30600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f5b31e3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f4b30400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f5b30b9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f4730200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f5b30b39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f4330000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f5b30ad8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f3f2fe00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f5b30a77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f3b2fc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
11: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5609a269bb6e]]
10: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f5b351d00b3]]
9: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5609a18f4838]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5609a305b8a4]]
7: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5609a3064a79]]
6: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5609a305b7b4]]
5: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5609a305e5a7]]
4: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5609a269bc7e]]
3: [/dpdk/build/app/test/dpdk-test(+0x13ade9f) [0x5609a2794e9f]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5609a31103cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f5b35974d30]]
PANIC in test_panic():
Test Debug
12: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5609a269bb6e]]
11: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f5b351d00b3]]
10: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5609a18f4838]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5609a305b8a4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5609a3064a79]]
7: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5609a305b7b4]]
6: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5609a305e5a7]]
5: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5609a269bc7e]]
4: [/dpdk/build/app/test/dpdk-test(+0x13ae359) [0x5609a2795359]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5609a195949d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5609a31103cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f5b35974d30]]
test_exit_val==197==Running thread 176 was not suspended. False leaks are possible.
==197==Running thread 177 was not suspended. False leaks are possible.
==197==Running thread 178 was not suspended. False leaks are possible.
==197==Running thread 179 was not suspended. False leaks are possible.
==197==Running thread 180 was not suspended. False leaks are possible.
==197==Running thread 181 was not suspended. False leaks are possible.
==197==Running thread 182 was not suspended. False leaks are possible.
==197==Running thread 183 was not suspended. False leaks are possible.
==197==Running thread 184 was not suspended. False leaks are possible.
==197==Running thread 185 was not suspended. False leaks are possible.
==197==Running thread 186 was not suspended. False leaks are possible.
==197==Running thread 187 was not suspended. False leaks are possible.
==197==Running thread 188 was not suspended. False leaks are possible.
==197==Running thread 189 was not suspended. False leaks are possible.
==197==Running thread 190 was not suspended. False leaks are possible.
==197==Running thread 191 was not suspended. False leaks are possible.
==197==Running thread 192 was not suspended. False leaks are possible.
==197==Running thread 193 was not suspended. False leaks are possible.
==197==Running thread 194 was not suspended. False leaks are possible.
EAL: Error - exiting with code: 1
  Cause: test_exit_val==199==Running thread 176 was not suspended. False leaks are possible.
==199==Running thread 177 was not suspended. False leaks are possible.
==199==Running thread 178 was not suspended. False leaks are possible.
==199==Running thread 179 was not suspended. False leaks are possible.
==199==Running thread 180 was not suspended. False leaks are possible.
==199==Running thread 181 was not suspended. False leaks are possible.
==199==Running thread 182 was not suspended. False leaks are possible.
==199==Running thread 183 was not suspended. False leaks are possible.
==199==Running thread 184 was not suspended. False leaks are possible.
==199==Running thread 185 was not suspended. False leaks are possible.
==199==Running thread 186 was not suspended. False leaks are possible.
==199==Running thread 187 was not suspended. False leaks are possible.
==199==Running thread 188 was not suspended. False leaks are possible.
==199==Running thread 189 was not suspended. False leaks are possible.
==199==Running thread 190 was not suspended. False leaks are possible.
==199==Running thread 191 was not suspended. False leaks are possible.
==199==Running thread 192 was not suspended. False leaks are possible.
==199==Running thread 193 was not suspended. False leaks are possible.
==199==Running thread 194 was not suspended. False leaks are possible.
EAL: Error - exiting with code: 2
  Cause: test_exit_val==201==Running thread 176 was not suspended. False leaks are possible.
==201==Running thread 177 was not suspended. False leaks are possible.
==201==Running thread 178 was not suspended. False leaks are possible.
==201==Running thread 179 was not suspended. False leaks are possible.
==201==Running thread 180 was not suspended. False leaks are possible.
==201==Running thread 181 was not suspended. False leaks are possible.
==201==Running thread 182 was not suspended. False leaks are possible.
==201==Running thread 183 was not suspended. False leaks are possible.
==201==Running thread 184 was not suspended. False leaks are possible.
==201==Running thread 185 was not suspended. False leaks are possible.
==201==Running thread 186 was not suspended. False leaks are possible.
==201==Running thread 187 was not suspended. False leaks are possible.
==201==Running thread 188 was not suspended. False leaks are possible.
==201==Running thread 189 was not suspended. False leaks are possible.
==201==Running thread 190 was not suspended. False leaks are possible.
==201==Running thread 191 was not suspended. False leaks are possible.
==201==Running thread 192 was not suspended. False leaks are possible.
==201==Running thread 193 was not suspended. False leaks are possible.
==201==Running thread 194 was not suspended. False leaks are possible.
EAL: Error - exiting with code: 255
  Cause: test_exit_val==203==Running thread 176 was not suspended. False leaks are possible.
==203==Running thread 177 was not suspended. False leaks are possible.
==203==Running thread 178 was not suspended. False leaks are possible.
==203==Running thread 179 was not suspended. False leaks are possible.
==203==Running thread 180 was not suspended. False leaks are possible.
==203==Running thread 181 was not suspended. False leaks are possible.
==203==Running thread 182 was not suspended. False leaks are possible.
==203==Running thread 183 was not suspended. False leaks are possible.
==203==Running thread 184 was not suspended. False leaks are possible.
==203==Running thread 185 was not suspended. False leaks are possible.
==203==Running thread 186 was not suspended. False leaks are possible.
==203==Running thread 187 was not suspended. False leaks are possible.
==203==Running thread 188 was not suspended. False leaks are possible.
==203==Running thread 189 was not suspended. False leaks are possible.
==203==Running thread 190 was not suspended. False leaks are possible.
==203==Running thread 191 was not suspended. False leaks are possible.
==203==Running thread 192 was not suspended. False leaks are possible.
==203==Running thread 193 was not suspended. False leaks are possible.
==203==Running thread 194 was not suspended. False leaks are possible.
EAL: Error - exiting with code: -1
  Cause: test_exit_val==205==Running thread 176 was not suspended. False leaks are possible.
==205==Running thread 177 was not suspended. False leaks are possible.
==205==Running thread 178 was not suspended. False leaks are possible.
==205==Running thread 179 was not suspended. False leaks are possible.
==205==Running thread 180 was not suspended. False leaks are possible.
==205==Running thread 181 was not suspended. False leaks are possible.
==205==Running thread 182 was not suspended. False leaks are possible.
==205==Running thread 183 was not suspended. False leaks are possible.
==205==Running thread 184 was not suspended. False leaks are possible.
==205==Running thread 185 was not suspended. False leaks are possible.
==205==Running thread 186 was not suspended. False leaks are possible.
==205==Running thread 187 was not suspended. False leaks are possible.
==205==Running thread 188 was not suspended. False leaks are possible.
==205==Running thread 189 was not suspended. False leaks are possible.
==205==Running thread 190 was not suspended. False leaks are possible.
==205==Running thread 191 was not suspended. False leaks are possible.
==205==Running thread 192 was not suspended. False leaks are possible.
==205==Running thread 193 was not suspended. False leaks are possible.
==205==Running thread 194 was not suspended. False leaks are possible.
------------------------------------------------------------------------------

  9/157 DPDK:fast-tests / eal_flags_c_opt_autotest          TIMEOUT          600.12s   killed by signal 15 SIGTERM
20:38:43 DPDK_TEST=eal_flags_c_opt_autotest MALLOC_PERTURB_=103 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_flags_c_opt_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_flags_c_opt_autotest

Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated

Error - process did not run ok with valid corelist value
Test Failed
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f2e91461000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_flags_c_opt_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f2e91407000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f2e9117f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f2a8fc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f2e9111e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f268fa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f2e90f9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f228f800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f2e90f3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f1e8f600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f2e8fc9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f1a8f400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f2e8fc39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f168f200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f2a8fb9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f128f000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f2a8fb3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f0e8ee00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_c_opt_autotest/mp_socket_228_50a7a5bb2bf62
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL:   Invalid NUMA socket, default to 0
/dpdk/build/app/test/dpdk-test: option requires an argument -- 'c'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
/dpdk/build/app/test/dpdk-test: option requires an argument -- 'c'
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid coremask syntax
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_c_opt_autotest/mp_socket_238_50a7aa363c3d6
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL:   Invalid NUMA socket, default to 0
/dpdk/build/app/test/dpdk-test: option requires an argument -- 'l'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
/dpdk/build/app/test/dpdk-test: option requires an argument -- 'l'
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid core list syntax
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid core list syntax
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid core list syntax
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid core list syntax
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid core list syntax
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid core list syntax
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid core list syntax
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid core list syntax
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid core list syntax
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_c_opt_autotest/mp_socket_264_50a7b93b648fa
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Cannot get a virtual area at requested address: 0x7f1a8f400000 (got 0x7f19dc1fe000)
EAL: Cannot reserve 17179869184 bytes at [0x7f1a8f400000] - please use '--base-virtaddr' option
EAL: Cannot preallocate VA space for hugepage memory
EAL: FATAL: Cannot init memory
EAL: Cannot init memory
EAL: Cannot destroy local memory map
EAL: Could not release memory subsystem data
------------------------------------------------------------------------------

 10/157 DPDK:fast-tests / eal_flags_main_opt_autotest       OK                 1.19s
20:48:43 DPDK_TEST=eal_flags_main_opt_autotest MALLOC_PERTURB_=41 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_flags_main_opt_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_flags_main_opt_autotest

Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated

Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f6da076f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_flags_main_opt_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f6da0715000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f6da047f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f699ee00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f6da041e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f659ec00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f6da029f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f619ea00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f6da023e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f5d9e800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f6d9ef9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f599e600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f6d9ef39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f559e400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6d9eed8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f519e200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6d9ee77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4d9e000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
/dpdk/build/app/test/dpdk-test: option '--main-lcore' requires an argument
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
/dpdk/build/app/test/dpdk-test: option '--main-lcore' requires an argument
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid parameter for --main-lcore
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid parameter for --main-lcore
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Main lcore is not enabled for DPDK
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_main_opt_autotest/mp_socket_296_50c38bb4aee6c
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_main_opt_autotest/mp_socket_303_50c38db5f2a2c
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL:   Invalid NUMA socket, default to 0
------------------------------------------------------------------------------

 11/157 DPDK:fast-tests / eal_flags_n_opt_autotest          OK                 1.24s
20:48:44 DPDK_TEST=eal_flags_n_opt_autotest MALLOC_PERTURB_=6 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_flags_n_opt_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_flags_n_opt_autotest

Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated

Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f70e6d77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_flags_n_opt_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f70e6d1d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f70e6a7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f6ce5400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f70e6a1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f68e5200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f70e689f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f64e5000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f70e683e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f60e4e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f70e559a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f5ce4c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f70e5539000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f58e4a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f70e54d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f54e4800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f70e5477000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f50e4600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
/dpdk/build/app/test/dpdk-test: option requires an argument -- 'n'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
/dpdk/build/app/test/dpdk-test: option requires an argument -- 'n'
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid channel number
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid channel number
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Static memory layout is selected, amount of reserved memory can be adjusted with -m or --socket-mem
EAL: Detected static linkage of DPDK
EAL: Selected IOVA mode 'VA'
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f1fcb78d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f1fcb41f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f1fc68ff000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Static memory layout is selected, amount of reserved memory can be adjusted with -m or --socket-mem
EAL: Detected static linkage of DPDK
EAL: Selected IOVA mode 'VA'
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fbff1d6d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fbff1a1f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fbfeceff000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
------------------------------------------------------------------------------

 12/157 DPDK:fast-tests / eal_flags_hpet_autotest           TIMEOUT          600.07s   killed by signal 15 SIGTERM
20:48:46 MALLOC_PERTURB_=167 DPDK_TEST=eal_flags_hpet_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_flags_hpet_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_flags_hpet_autotest
Error - process did not run ok without --no-hpet flag
Test Failed
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fc9d8c12000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_flags_hpet_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fc9d8994000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fc9d8933000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fc5d7400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fc9d879f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fc1d7200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fc9d873e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fbdd7000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fc9d749a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fb9d6e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fc9d7439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fb5d6c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fc5d739f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fb1d6a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fc5d733e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fadd6800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fc5d72dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fa9d6600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_hpet_autotest/mp_socket_370_50c3a32dfd696
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_hpet_autotest/mp_socket_376_50c3a50107fcc
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Cannot get a virtual area at requested address: 0x7fb5d6c00000 (got 0x7fb4036fe000)
EAL: Cannot reserve 17179869184 bytes at [0x7fb5d6c00000] - please use '--base-virtaddr' option
EAL: Cannot preallocate VA space for hugepage memory
EAL: FATAL: Cannot init memory
EAL: Cannot init memory
EAL: Cannot destroy local memory map
EAL: Could not release memory subsystem data
------------------------------------------------------------------------------

 13/157 DPDK:fast-tests / eal_flags_no_huge_autotest        OK                 1.14s
20:58:46 MALLOC_PERTURB_=19 DPDK_TEST=eal_flags_no_huge_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_flags_no_huge_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_flags_no_huge_autotest

Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated

Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f2455653000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_flags_no_huge_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f24553b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f2455351000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f2053e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f245519f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f1c53c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f245513e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f1853a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f2453e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f1453800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f2453e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f1053600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f2053d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f0c53400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f2053d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f0853200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f2053cdd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f0453000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Static memory layout is selected, amount of reserved memory can be adjusted with -m or --socket-mem
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7ff039c6e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/nohuge/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7ff039c14000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7ff03991f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100017000 != 0x7ff0345fe000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f7e0b9cd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/nohuge/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f7e0b973000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f7e0b93c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100017000 != 0x7f7e090fe000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Option --socket-mem cannot be specified together with --no-huge
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Options -m and --socket-mem cannot be specified at the same time
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
------------------------------------------------------------------------------

 14/157 DPDK:fast-tests / eal_flags_a_opt_autotest          OK                 1.51s
20:58:47 MALLOC_PERTURB_=82 DPDK_TEST=eal_flags_a_opt_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_flags_a_opt_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_flags_a_opt_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f604ab01000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_flags_a_opt_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f604a886000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f604a825000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f5c49200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f604a69f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f5849000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f604a63e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f5448e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f604939a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f5048c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f6049339000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f4c48a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f60492d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f4848800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6049277000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f4448600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6049216000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4048400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: failed to parse device "error"
EAL: Unable to parse device 'error'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: failed to parse device "0:0:0"
EAL: Unable to parse device '0:0:0'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: failed to parse device "0:error:0.1"
EAL: Unable to parse device '0:error:0.1'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: failed to parse device "0:0:0.1error"
EAL: Unable to parse device '0:0:0.1error'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: failed to parse device "error0:0:0.1"
EAL: Unable to parse device 'error0:0:0.1'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: failed to parse device "0:0:0.1.2"
EAL: Unable to parse device '0:0:0.1.2'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_a_opt_autotest/mp_socket_450_50df98f57acf8
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_a_opt_autotest/mp_socket_456_50df9ab129a84
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_a_opt_autotest/mp_socket_462_50df9c6d97b4c
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
------------------------------------------------------------------------------

 15/157 DPDK:fast-tests / eal_flags_b_opt_autotest          OK                 1.23s
20:58:48 DPDK_TEST=eal_flags_b_opt_autotest MALLOC_PERTURB_=136 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_flags_b_opt_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_flags_b_opt_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fe8962e8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_flags_b_opt_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fe89628e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fe89622d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fe494a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fe895f7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fe094800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fe895f1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fdc94600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fe895d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fd894400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fe895d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fd494200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fe894a9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fd094000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fe894a39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fcc93e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fe49499f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fc893c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: failed to parse device "error"
EAL: Unable to parse device 'error'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: failed to parse device "0:0:0"
EAL: Unable to parse device '0:0:0'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: failed to parse device "0:error:0.1"
EAL: Unable to parse device '0:error:0.1'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: failed to parse device "0:0:0.1error"
EAL: Unable to parse device '0:0:0.1error'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: failed to parse device "error0:0:0.1"
EAL: Unable to parse device 'error0:0:0.1'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: failed to parse device "0:0:0.1.2"
EAL: Unable to parse device '0:0:0.1.2'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_b_opt_autotest/mp_socket_502_50dfaafa0614a
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL:   Invalid NUMA socket, default to 0
------------------------------------------------------------------------------

 16/157 DPDK:fast-tests / eal_flags_vdev_opt_autotest       OK                 1.27s
20:58:50 DPDK_TEST=eal_flags_vdev_opt_autotest MALLOC_PERTURB_=112 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_flags_vdev_opt_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_flags_vdev_opt_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fc192d06000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_flags_vdev_opt_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fc192a76000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fc192a15000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fbd91400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fc19289f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb991200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fc19283e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fb591000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fc19159a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fb190e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fc191539000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fad90c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fc1914d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa990a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fc191477000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fa590800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fc191416000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fa190600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Static memory layout is selected, amount of reserved memory can be adjusted with -m or --socket-mem
EAL: Detected static linkage of DPDK
EAL: failed to parse device "eth_dummy"
EAL: Unable to parse device 'eth_dummy'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Static memory layout is selected, amount of reserved memory can be adjusted with -m or --socket-mem
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7faba25d3000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/vdev/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7faba2579000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7faba221f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100017000 != 0x7fab9cefe000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Static memory layout is selected, amount of reserved memory can be adjusted with -m or --socket-mem
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7ff5344d3000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/vdev/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7ff534479000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7ff53411f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100017000 != 0x7ff52edfe000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Static memory layout is selected, amount of reserved memory can be adjusted with -m or --socket-mem
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fd4cb682000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/vdev/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fd4cb628000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fd4cb31f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100017000 != 0x7fd4c5ffe000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
------------------------------------------------------------------------------

 17/157 DPDK:fast-tests / eal_flags_r_opt_autotest          OK                 1.00s
20:58:51 DPDK_TEST=eal_flags_r_opt_autotest MALLOC_PERTURB_=84 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_flags_r_opt_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_flags_r_opt_autotest

Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated

Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f6cd3212000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_flags_r_opt_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f6cd2f94000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f6cd2f33000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f68d1a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f6cd2d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f64d1800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f6cd2d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f60d1600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f6cd1a9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f5cd1400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f6cd1a39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f58d1200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f68d199f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f54d1000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f68d193e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f50d0e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f68d18dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4cd0c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid rank number
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid rank number
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid rank number
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid rank number
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_r_opt_autotest/mp_socket_580_50dfc60414d2e
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL:   Invalid NUMA socket, default to 0
------------------------------------------------------------------------------

 18/157 DPDK:fast-tests / eal_flags_mem_autotest            OK                 2.01s
20:58:52 DPDK_TEST=eal_flags_mem_autotest MALLOC_PERTURB_=124 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_flags_mem_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_flags_mem_autotest

Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated

Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fbbcd186000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_flags_mem_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fbbcd12c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fbbcce7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fb7cb800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fbbcce1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb3cb600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fbbccc9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fafcb400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fbbccc3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fabcb200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fbbcb99a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fa7cb000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fbbcb939000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa3cae00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fbbcb8d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f9fcac00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fbbcb877000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9bcaa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_mem_autotest/mp_socket_608_50dfcc8f5b0a6
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f679282b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/memtest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f67925aa000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f6792549000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f6391000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f679239f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f5f90e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f679233e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f5b90c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f679109a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f5790a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f6791039000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f5390800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f6390f9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f4f90600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6390f3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f4b90400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6390edd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4790200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f73af823000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/memtest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f73af5a4000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f73af543000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f6fae000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f73af39f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f6bade00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f73af33e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f67adc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f73ae09a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f63ada00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f73ae039000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f5fad800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f6fadf9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f5bad600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6fadf3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f57ad400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6fadedd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f53ad200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid parameters for --socket-mem
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid parameters for --socket-mem
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid parameters for --socket-mem
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid parameters for --socket-mem
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Options -m and --socket-mem cannot be specified at the same time
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fa35e45a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/memtest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fa35e400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fa35e17f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f9f5cc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fa35e11e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f9b5ca00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fa35df9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f975c800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fa35df3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f935c600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fa35cc9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f8f5c400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fa35cc39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f8b5c200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f9f5cb9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f875c000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f9f5cb3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f835be00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Not enough memory available on socket 2! Requested: 2MB, available: 0MB
EAL: FATAL: Cannot init memory
EAL: Cannot init memory
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fccb819e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/memtest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fccb8144000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fccb7e7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fc8b6800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fccb7e1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fc4b6600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fccb7c9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fc0b6400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fccb7c3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fbcb6200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fccb699a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fb8b6000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fccb6939000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fb4b5e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fccb68d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fb0b5c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fccb6877000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7facb5a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
------------------------------------------------------------------------------

 19/157 DPDK:fast-tests / eal_flags_file_prefix_autotest    FAIL               4.11s   exit status 1
20:58:54 DPDK_TEST=eal_flags_file_prefix_autotest MALLOC_PERTURB_=43 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_flags_file_prefix_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_flags_file_prefix_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fcf18f55000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_flags_file_prefix_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fcf18cb2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fcf18c51000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fcb17600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fcf18a9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fc717400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fcf18a3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fc317200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fcf1779a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fbf17000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fcf17739000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fbb16e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fcf176d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fb716c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fcf17677000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fb316a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fcf17616000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7faf16800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/memtest/mp_socket_668_50dfe4962fffe
EAL: failed to send to (/var/run/dpdk/memtest/mp_socket) due to No such file or directory
EAL: Fail to send request /var/run/dpdk/memtest/mp_socket:bus_vdev_mp
vdev_scan(): Failed to request vdev from primary
EAL: Selected IOVA mode 'PA'
EAL: failed to send to (/var/run/dpdk/memtest/mp_socket) due to No such file or directory
EAL: Fail to send request /var/run/dpdk/memtest/mp_socket:eal_vfio_mp_sync
EAL: Cannot request default VFIO container fd
EAL: VFIO support could not be initialized
EAL: Could not map memory from primary process
EAL: It is recommended to disable ASLR in the kernel and retry running both primary and secondary processes
EAL: FATAL: Cannot init memory
EAL: Cannot init memory
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fed327e1000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/memtest1/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fed32787000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fed32726000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fe930e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fed3247f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fe530c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fed3241e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fe130a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fed3229f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fdd30800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fed3223e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fd930600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fed30f9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fd530400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fed30f39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fd130200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fed30ed8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fcd30000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fb995600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/memtest1/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fb995386000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fb995325000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fb593e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fb99519f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb193c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fb99513e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fad93a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fb993e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fa993800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fb993e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fa593600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fb593d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa193400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fb593d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f9d93200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fb593cdd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9993000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f67d5ec7000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/memtest2/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f67d5e6d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f67d5e0c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f63d4600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f67d5b7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f5fd4400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f67d5b1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f5bd4200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f67d599f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f57d4000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f67d593e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f53d3e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f67d469a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f4fd3c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f67d4639000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f4bd3a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f63d459f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f47d3800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fbd8351f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/memtest2/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fbd832a4000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fbd83243000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fb981c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fbd8309f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb581a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fbd8303e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fb181800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fbd81d9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fad81600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fbd81d39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fa981400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fbd81cd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa581200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fbd81c77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fa181000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fbd81c16000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9d80e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: No free 1048576 kB hugepages reported on node 0
EAL: No free 1048576 kB hugepages reported on node 1
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f4a04b3b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f4a04b3a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x24000c000 != 0x7f4200000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x280011000 != 0x7f4a04b39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x3c0012000 != 0x7f39c0000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x400017000 != 0x7f4a04b38000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x540018000 != 0x7f3180000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x58001d000 != 0x7f4a04b37000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x6c001e000 != 0x7f2940000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x700023000 != 0x7f4a0487f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x700a24000 != 0x7f253fe00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x700c29000 != 0x7f4a0481e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x70162a000 != 0x7f213fc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x70182f000 != 0x7f4a0469f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x702230000 != 0x7f1d3fa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x702435000 != 0x7f4a0463e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x702e36000 != 0x7f193f800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x70303b000 != 0x7f4a03b9b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x703a3c000 != 0x7f153f600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x703c41000 != 0x7f4a03b3a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x704642000 != 0x7f113f400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x704847000 != 0x7f4a03ad9000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x705248000 != 0x7f0d3f200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x70544d000 != 0x7f4a03a78000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x705e4e000 != 0x7f093f000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: No free 1048576 kB hugepages reported on node 0
EAL: No free 1048576 kB hugepages reported on node 1
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fa51ec6d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fa51ec6c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x24000c000 != 0x7f9d00000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x280011000 != 0x7fa51ec6b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x3c0012000 != 0x7f94c0000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x400017000 != 0x7fa51ec6a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x540018000 != 0x7f8c80000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x58001d000 != 0x7fa51ec69000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x6c001e000 != 0x7f8440000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x700023000 != 0x7fa51ec08000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x700a24000 != 0x7f803fe00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x700c29000 != 0x7fa51e97f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x70162a000 != 0x7f7c3fc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x70182f000 != 0x7fa51e91e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x702230000 != 0x7f783fa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x702435000 != 0x7fa51e79f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x702e36000 != 0x7f743f800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x70303b000 != 0x7fa51e73e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x703a3c000 != 0x7f703f600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x703c41000 != 0x7fa51dc9b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x704642000 != 0x7f6c3f400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x704847000 != 0x7fa51dc3a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x705248000 != 0x7f683f200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x70544d000 != 0x7fa51dbd9000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x705e4e000 != 0x7f643f000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: No free 1048576 kB hugepages reported on node 0
EAL: No free 1048576 kB hugepages reported on node 1
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f4b15375000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f4b15374000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x24000c000 != 0x7f4300000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x280011000 != 0x7f4b15373000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x3c0012000 != 0x7f3ac0000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x400017000 != 0x7f4b15372000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x540018000 != 0x7f3280000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x58001d000 != 0x7f4b15371000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x6c001e000 != 0x7f2a40000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x700023000 != 0x7f4b15310000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x700a24000 != 0x7f263fe00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x700c29000 != 0x7f4b1507f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x70162a000 != 0x7f223fc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x70182f000 != 0x7f4b1501e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x702230000 != 0x7f1e3fa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x702435000 != 0x7f4b14e9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x702e36000 != 0x7f1a3f800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x70303b000 != 0x7f4b14e3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x703a3c000 != 0x7f163f600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x703c41000 != 0x7f4b1439b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x704642000 != 0x7f123f400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x704847000 != 0x7f4b1433a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x705248000 != 0x7f0e3f200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x70544d000 != 0x7f4b142d9000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x705e4e000 != 0x7f0a3f000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fe8b58b0000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/memtest1/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fe8b5856000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fe8b557f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fe4b4000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fe8b551e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fe0b3e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fe8b539f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fdcb3c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fe8b533e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fd8b3a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fe8b409a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fd4b3800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fe8b4039000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fd0b3600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fe4b3f9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fccb3400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fe4b3f3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fc8b3200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0

=================================================================
==647==ERROR: LeakSanitizer: detected memory leaks

Direct leak of 4194496 byte(s) in 4 object(s) allocated from:
    #0 0x7fcf1c60dbc8 in malloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10dbc8)
    #1 0x7fcf1be82098 in opendir (/lib/x86_64-linux-gnu/libc.so.6+0xe1098)

SUMMARY: AddressSanitizer: 4194496 byte(s) leaked in 4 allocation(s).
------------------------------------------------------------------------------

 20/157 DPDK:fast-tests / eal_flags_misc_autotest           TIMEOUT          600.03s   killed by signal 15 SIGTERM
20:58:58 DPDK_TEST=eal_flags_misc_autotest MALLOC_PERTURB_=49 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_flags_misc_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_flags_misc_autotest

Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated


Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated

Error - secondary process did not run ok with invalid --huge-dir flag
Test Failed
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f9c255cd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_flags_misc_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f9c25573000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f9c25512000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f9823c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f9c2527f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f9423a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f9c2521e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f9023800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f9c2509f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f8c23600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f9c2503e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f8823400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f9c23d9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f8423200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f9c23d39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f8023000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f9c23cd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f7c22e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
/dpdk/build/app/test/dpdk-test: unrecognized option '--invalid-opt'
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
/dpdk/build/app/test/dpdk-test: unrecognized option '--invalid-opt'
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_misc_autotest/mp_socket_741_50e016d67ca74
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: RTE Version: 'DPDK 21.08.0-rc0'
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_misc_autotest/mp_socket_747_50e01894c1c52
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Selected IOVA mode 'VA'
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f86d246d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f86d2436000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f86d03ff000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_misc_autotest/mp_socket_758_50e01d5241fa8
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL:   Invalid NUMA socket, default to 0
/dpdk/build/app/test/dpdk-test: option '--syslog' requires an argument
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
/dpdk/build/app/test/dpdk-test: option '--syslog' requires an argument
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: invalid parameters for --syslog
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f6c00320000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/hugedir/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f6c000a4000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f6c00043000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f67fea00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f6bffe9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f63fe800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f6bffe3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f5ffe600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f6bfeb9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f5bfe400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f6bfeb39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f57fe200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f6bfead8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f53fe000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6bfea77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f4ffde00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6bfea16000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4bfdc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
/dpdk/build/app/test/dpdk-test: option '--huge-dir' requires an argument
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
/dpdk/build/app/test/dpdk-test: option '--huge-dir' requires an argument
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f3d8b5b6000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/hugedir/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: 2047 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: No available 1048576 kB hugepages reported
EAL: FATAL: Cannot get hugepage information.
EAL: Cannot get hugepage information.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/eal_flags_misc_autotest/mp_socket_780_50e027ba87592
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Cannot get a virtual area at requested address: 0x7f9423a00000 (got 0x7f9119efe000)
EAL: Cannot reserve 17179869184 bytes at [0x7f9423a00000] - please use '--base-virtaddr' option
EAL: Cannot preallocate VA space for hugepage memory
EAL: FATAL: Cannot init memory
EAL: Cannot init memory
EAL: Cannot destroy local memory map
EAL: Could not release memory subsystem data
------------------------------------------------------------------------------

 21/157 DPDK:fast-tests / eal_fs_autotest                   OK                 0.40s
21:08:58 DPDK_TEST=eal_fs_autotest MALLOC_PERTURB_=255 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eal_fs_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eal_fs_autotest
Testing function eal_parse_sysfs_value()
Temporary file is: /tmp/eal_test_LZ9F7m
Test reading a missing file ...
Confirmed return error when reading empty file
Test reading valid values ...
Read '15\n' ok
Read '0x19\n' ok
Test reading invalid values ...
eal_parse_sysfs_value() - OK
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f6184ce2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eal_fs_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f6184c88000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f6184c27000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f5d83400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f618497f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f5983200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f618491e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f5583000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f618479f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f5182e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f618473e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f4d82c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f618349a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f4982a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6183439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f4582800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f5d8339f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4182600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: eal_parse_sysfs_value(): cannot open sysfs value /dev/not-quite-null
EAL: eal_parse_sysfs_value(): cannot read sysfs value /tmp/eal_test_LZ9F7m
EAL: eal_parse_sysfs_value(): cannot parse sysfs value /tmp/eal_test_LZ9F7m
EAL: eal_parse_sysfs_value(): cannot parse sysfs value /tmp/eal_test_LZ9F7m
EAL: eal_parse_sysfs_value(): cannot parse sysfs value /tmp/eal_test_LZ9F7m
------------------------------------------------------------------------------

 22/157 DPDK:fast-tests / errno_autotest                    OK                 0.40s
21:08:58 DPDK_TEST=errno_autotest MALLOC_PERTURB_=42 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=errno_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>errno_autotest
rte_strerror: 'Resource temporarily unavailable', strerror: 'Resource temporarily unavailable'
rte_strerror: 'Bad file descriptor', strerror: 'Bad file descriptor'
rte_strerror: 'Permission denied', strerror: 'Permission denied'
rte_strerror: 'Interrupted system call', strerror: 'Interrupted system call'
rte_strerror: 'Invalid argument', strerror: 'Invalid argument'
rte_strerror: 'Invalid call in secondary process', strerror: 'Unknown error 1001'
rte_strerror: 'Missing rte_config structure', strerror: 'Unknown error 1002'
rte_strerror: 'Unknown error 1004', strerror: 'Unknown error 1004'
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f3787665000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/errno_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f378760b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f378737f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f3385e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f378731e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f2f85c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f378719f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f2b85a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f378713e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f2785800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f3785e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f2385600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f3785e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f1f85400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f3385d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f1b85200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f3385d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f1785000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 23/157 DPDK:fast-tests / ethdev_link_status                OK                 0.39s
21:08:59 MALLOC_PERTURB_=240 DPDK_TEST=ethdev_link_status /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=ethdev_link_status
----------------------------------- output -----------------------------------
stdout:
RTE>>ethdev_link_status
 + ------------------------------------------------------- +
 + Test Suite : link status formatting
 + ------------------------------------------------------- +
Default link up #1: Link up at 2.5 Gbps FDX Autoneg
Default link up #2: Link up at 10 Mbps HDX Fixed
Default link up #3: Link up at Unknown HDX Fixed
Default link up #3: Link up at None HDX Fixed
Default link up #4:len = 31, Link up at 200 Gbps HDX Autoneg
 + TestCase [ 0] : test_link_status_up_default succeeded
 + TestCase [ 1] : test_link_status_down_default succeeded
 + TestCase [ 2] : test_link_speed_all_values succeeded
invalid link up #1: len=30 Link up at Invalid FDX Autoneg
 + TestCase [ 3] : test_link_status_invalid succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : link status formatting
 + ------------------------------------------------------- +
 + Tests Total :        4
 + Tests Skipped :      0
 + Tests Executed :     4
 + Tests Unsupported:   0
 + Tests Passed :       4
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f542046a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/ethdev_link_status/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f5420410000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f542017f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f501ec00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f542011e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f4c1ea00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f541ff9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f481e800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f541ff3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f441e600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f541ec9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f401e400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f541ec39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f3c1e200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f501eb9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f381e000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f501eb3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f341de00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: lib.eal log level changed from info to debug
EAL: request: mp_malloc_sync
EAL: Heap on socket 0 was shrunk by 2MB
------------------------------------------------------------------------------

 24/157 DPDK:fast-tests / event_ring_autotest               OK                 0.39s
21:08:59 DPDK_TEST=event_ring_autotest MALLOC_PERTURB_=52 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=event_ring_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>event_ring_autotest
Test detected odd count
Test detected NULL ring lookup
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f323fe74000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/event_ring_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f323fe1a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f323fb7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f2e3e600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f323fb1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f2a3e400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f323f99f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f263e200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f323f93e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f223e000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f323e69a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f1e3de00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f323e639000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f1a3dc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f2e3e59f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f163da00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f2e3e53e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f123d800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
------------------------------------------------------------------------------

 25/157 DPDK:fast-tests / fib_autotest                      OK                 1.01s
21:09:00 MALLOC_PERTURB_=95 DPDK_TEST=fib_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=fib_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>fib_autotest
 + ------------------------------------------------------- +
 + Test Suite : fib autotest
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_create_invalid succeeded
 + TestCase [ 1] : test_free_null succeeded
 + TestCase [ 2] : test_add_del_invalid succeeded
 + TestCase [ 3] : test_get_invalid succeeded
 + TestCase [ 4] : test_lookup succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : fib autotest
 + ------------------------------------------------------- +
 + Tests Total :        5
 + Tests Skipped :      0
 + Tests Executed :     5
 + Tests Unsupported:   0
 + Tests Passed :       5
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fd967a20000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/fib_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fd9677a4000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fd967743000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fd566200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fd96759f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fd166000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fd96753e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fcd65e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fd96629a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fc965c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fd966239000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fc565a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fd56619f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fc165800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fd56613e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fbd65600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fd5660dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fb965400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
LPM: Can not allocate mempool for RIB test_create_invalid
LPM: Can not allocate RIB test_create_invalid
LPM: Can not allocate RIB test_create_invalid
LPM: FIB dataplane struct test_create_invalid memory allocation failed with err -22
LPM: FIB dataplane struct test_create_invalid memory allocation failed with err -22
------------------------------------------------------------------------------

 26/157 DPDK:fast-tests / fib6_autotest                     FAIL               0.57s   exit status 1
21:09:01 DPDK_TEST=fib6_autotest MALLOC_PERTURB_=39 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=fib6_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>fib6_autotest
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f3ad0ccc000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/fib6_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f3ad0c72000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f3ad0c11000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f36cf400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f3ad097f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f32cf200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f3ad091e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f2ecf000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f3ad079f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f2acee00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f3ad073e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f26cec00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f3acf49a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f22cea00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f3acf439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f1ece800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f36cf39f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f1ace600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
LPM: Can not allocate mempool for RIB6 test_create_invalid
LPM: Can not allocate RIB test_create_invalid
LPM: Can not allocate RIB test_create_invalid
LPM: FIB dataplane struct test_create_invalid memory allocation failed
LPM: FIB dataplane struct test_create_invalid memory allocation failed
=================================================================
==893==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7fff1d053170 at pc 0x55eebb2fd974 bp 0x7fff1d052680 sp 0x7fff1d052670
READ of size 1 at 0x7fff1d053170 thread T0
    #0 0x55eebb2fd973 in rte_rib6_lookup (/dpdk/build/app/test/dpdk-test+0x1ae8973)
    #1 0x55eebb166dd1 in trie_modify (/dpdk/build/app/test/dpdk-test+0x1951dd1)
    #2 0x55eebac581bc in check_fib (/dpdk/build/app/test/dpdk-test+0x14431bc)
    #3 0x55eebac5861e in test_lookup (/dpdk/build/app/test/dpdk-test+0x144361e)
    #4 0x55eebaad55a3 in unit_test_suite_runner (/dpdk/build/app/test/dpdk-test+0x12c05a3)
    #5 0x55eebaac9c7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #6 0x55eebb48c5a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #7 0x55eebb4897b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #8 0x55eebb492a78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #9 0x55eebb4898a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #10 0x55eeb9d22837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #11 0x7f3ad3b3f0b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)
    #12 0x55eebaac9b6d in _start (/dpdk/build/app/test/dpdk-test+0x12b4b6d)

Address 0x7fff1d053170 is located in stack of thread T0 at offset 2256 in frame
    #0 0x55eebac577cf in check_fib (/dpdk/build/app/test/dpdk-test+0x14427cf)

  This frame has 3 object(s):
    [32, 48) 'ip_missing' (line 271)
    [64, 2112) 'ip_arr' (line 269)
    [2240, 2256) 'ip_add' (line 270) <== Memory access at offset 2256 overflows this variable
HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork
      (longjmp and C++ exceptions *are* supported)
SUMMARY: AddressSanitizer: stack-buffer-overflow (/dpdk/build/app/test/dpdk-test+0x1ae8973) in rte_rib6_lookup
Shadow bytes around the buggy address:
  0x100063a025d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x100063a025e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x100063a025f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x100063a02600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x100063a02610: 00 00 00 00 00 00 00 00 00 00 00 00 f2 f2 f2 f2
=>0x100063a02620: f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 f2 00 00[f3]f3
  0x100063a02630: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x100063a02640: f1 f1 f1 f1 00 00 00 00 f3 f3 f3 f3 00 00 00 00
  0x100063a02650: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x100063a02660: 00 00 00 00 00 00 00 00 f1 f1 f1 f1 04 f2 04 f2
  0x100063a02670: 04 f3 f3 f3 00 00 00 00 00 00 00 00 00 00 00 00
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07 
  Heap left redzone:       fa
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
  Shadow gap:              cc
==893==ABORTING
------------------------------------------------------------------------------

 27/157 DPDK:fast-tests / func_reentrancy_autotest          OK                 3.50s
21:09:01 MALLOC_PERTURB_=207 DPDK_TEST=func_reentrancy_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=func_reentrancy_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>func_reentrancy_autotest
Func-ReEnt CASE 0: eal init once PASS
Func-ReEnt CASE 1: ring create/lookup PASS
Func-ReEnt CASE 2: mempool create/lookup PASS
Func-ReEnt CASE 3: hash create/free PASS
Func-ReEnt CASE 4: fbk create/free PASS
Func-ReEnt CASE 5: lpm create/free PASS
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fec37434000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/func_reentrancy_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fec371b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fec37151000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fe835c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fec36f9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fe435a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fec36f3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fe035800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fec35c9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fdc35600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fec35c39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fd835400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fe835b9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fd435200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fe835b3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fd035000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fe835add000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fcc34e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: FATAL: already called initialization.
EAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: FATAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
EAL: already called initialization.
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
RING: Cannot reserve memory
HASH: memory allocation failed
------------------------------------------------------------------------------

 28/157 DPDK:fast-tests / flow_classify_autotest            FAIL               0.42s   exit status 1
21:09:05 DPDK_TEST=flow_classify_autotest MALLOC_PERTURB_=77 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=flow_classify_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>flow_classify_autotest
Created table_acl for for IPv4 five tuple packets
Allocated mbuf pool on socket 0
Allocated mbuf pool on socket 1
Set up IPv4 UDP traffic
ETH  pktlen 14
ETH + IPv4 pktlen 34
ETH + IPv4 + UDP pktlen 42

Set up IPv4 TCP traffic
ETH  pktlen 14
ETH + IPv4 pktlen 34
ETH + IPv4 + TCP pktlen 54

Set up IPv4 SCTP traffic
ETH  pktlen 14
ETH + IPv4 pktlen 34
ETH + IPv4 + SCTP pktlen 42

Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fd8c44db000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/flow_classify_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fd8c4481000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fd8c4420000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fd4c2c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fd8c417f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fd0c2a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fd8c411e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fccc2800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fd8c3f9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fc8c2600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fd8c3f3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fc4c2400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fd8c2c9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fc0c2200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fd8c2c39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fbcc2000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fd4c2b9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fb8c1e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer

=================================================================
==936==ERROR: LeakSanitizer: detected memory leaks

Direct leak of 2160 byte(s) in 1 object(s) allocated from:
    #0 0x7fd8c7b93dc6 in calloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10ddc6)
    #1 0x55b1709885fe in rte_flow_classify_table_entry_add (/dpdk/build/app/test/dpdk-test+0x17f15fe)
    #2 0x55b1705de4b2 in test_flow_classify (/dpdk/build/app/test/dpdk-test+0x14474b2)
    #3 0x55b17044bc7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #4 0x55b170e0e5a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #5 0x55b170e0b7b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #6 0x55b170e14a78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #7 0x55b170e0b8a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #8 0x55b16f6a4837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #9 0x7fd8c734e0b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)

Direct leak of 2160 byte(s) in 1 object(s) allocated from:
    #0 0x7fd8c7b93dc6 in calloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10ddc6)
    #1 0x55b1709885fe in rte_flow_classify_table_entry_add (/dpdk/build/app/test/dpdk-test+0x17f15fe)
    #2 0x55b1705de90a in test_flow_classify (/dpdk/build/app/test/dpdk-test+0x144790a)
    #3 0x55b17044bc7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #4 0x55b170e0e5a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #5 0x55b170e0b7b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #6 0x55b170e14a78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #7 0x55b170e0b8a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #8 0x55b16f6a4837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #9 0x7fd8c734e0b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)

Direct leak of 2160 byte(s) in 1 object(s) allocated from:
    #0 0x7fd8c7b93dc6 in calloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10ddc6)
    #1 0x55b1709885fe in rte_flow_classify_table_entry_add (/dpdk/build/app/test/dpdk-test+0x17f15fe)
    #2 0x55b1705ded22 in test_flow_classify (/dpdk/build/app/test/dpdk-test+0x1447d22)
    #3 0x55b17044bc7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #4 0x55b170e0e5a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #5 0x55b170e0b7b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #6 0x55b170e14a78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #7 0x55b170e0b8a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #8 0x55b16f6a4837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #9 0x7fd8c734e0b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)

Direct leak of 2160 byte(s) in 1 object(s) allocated from:
    #0 0x7fd8c7b93dc6 in calloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10ddc6)
    #1 0x55b1709885fe in rte_flow_classify_table_entry_add (/dpdk/build/app/test/dpdk-test+0x17f15fe)
    #2 0x55b1705ddc17 in test_flow_classify (/dpdk/build/app/test/dpdk-test+0x1446c17)
    #3 0x55b17044bc7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #4 0x55b170e0e5a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #5 0x55b170e0b7b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #6 0x55b170e14a78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #7 0x55b170e0b8a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #8 0x55b16f6a4837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #9 0x7fd8c734e0b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)

SUMMARY: AddressSanitizer: 8640 byte(s) leaked in 4 allocation(s).
------------------------------------------------------------------------------

 29/157 DPDK:fast-tests / hash_autotest                     FAIL               0.33s   exit status 1
21:09:05 MALLOC_PERTURB_=237 DPDK_TEST=hash_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=hash_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>hash_autotest
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f3bdf4a6000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/hash_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f3bdf44c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f3bdf17f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f37ddc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f3bdf11e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f33dda00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f3bdef9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f2fdd800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f3bdef3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f2bdd600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f3bddc9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f27dd400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f3bddc39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f23dd200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f37ddb9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f1fdd000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f37ddb3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f1bdce00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
=================================================================
==958==ERROR: AddressSanitizer: global-buffer-overflow on address 0x563e9506f7f0 at pc 0x563e926c58a8 bp 0x7ffde6e5b1c0 sp 0x7ffde6e5b1b0
READ of size 4 at 0x563e9506f7f0 thread T0
    #0 0x563e926c58a7 in rte_jhash_32b (/dpdk/build/app/test/dpdk-test+0x14638a7)
    #1 0x563e92ecad66 in rte_hash_add_key (/dpdk/build/app/test/dpdk-test+0x1c68d66)
    #2 0x563e926ca748 in test_hash (/dpdk/build/app/test/dpdk-test+0x1468748)
    #3 0x563e92516c7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #4 0x563e92ed95a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #5 0x563e92ed67b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #6 0x563e92edfa78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #7 0x563e92ed68a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #8 0x563e9176f837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #9 0x7f3be23190b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)
    #10 0x563e92516b6d in _start (/dpdk/build/app/test/dpdk-test+0x12b4b6d)

0x563e9506f7f0 is located 48 bytes to the left of global variable 'keys' defined in '../app/test/test_hash.c:115:24' (0x563e9506f820) of size 65
0x563e9506f7f0 is located 0 bytes to the right of global variable 'key' defined in '../app/test/test_hash.c:1596:16' (0x563e9506f7e0) of size 16
SUMMARY: AddressSanitizer: global-buffer-overflow (/dpdk/build/app/test/dpdk-test+0x14638a7) in rte_jhash_32b
Shadow bytes around the buggy address:
  0x0ac852a05ea0: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac852a05eb0: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac852a05ec0: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac852a05ed0: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac852a05ee0: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
=>0x0ac852a05ef0: 00 00 00 00 00 00 f9 f9 f9 f9 f9 f9 00 00[f9]f9
  0x0ac852a05f00: f9 f9 f9 f9 00 00 00 00 00 00 00 00 01 f9 f9 f9
  0x0ac852a05f10: f9 f9 f9 f9 01 f9 f9 f9 f9 f9 f9 f9 00 00 00 00
  0x0ac852a05f20: f9 f9 f9 f9 00 00 00 00 00 00 f9 f9 f9 f9 f9 f9
  0x0ac852a05f30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ac852a05f40: 00 00 00 00 00 00 00 00 00 00 00 00 f9 f9 f9 f9
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07 
  Heap left redzone:       fa
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
  Shadow gap:              cc
==958==ABORTING
------------------------------------------------------------------------------

 30/157 DPDK:fast-tests / interrupt_autotest                OK                 1.41s
21:09:05 MALLOC_PERTURB_=62 DPDK_TEST=interrupt_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=interrupt_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>interrupt_autotest
Check unknown valid interrupt full path
Check valid UIO interrupt full path
Check valid device event interrupt full path
Check valid alarm interrupt full path
start register/unregister test
start interrupt enable/disable test
Clearing for interrupt tests
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7ff4a584c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/interrupt_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7ff4a55b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7ff4a5551000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7ff0a4000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7ff4a539f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7feca3e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7ff4a533e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fe8a3c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7ff4a409a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fe4a3a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7ff4a4039000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fe0a3800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7ff0a3f9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fdca3600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7ff0a3f3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fd8a3400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7ff0a3edd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fd4a3200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: Registering with invalid input parameter
EAL: Registering with invalid input parameter
EAL: Registering with invalid input parameter
EAL: Unregistering with invalid input parameter
EAL: Unregistering with invalid input parameter
EAL: Unknown handle type of fd 84
EAL: Error enabling interrupts for fd 84 (Bad file descriptor)
EAL: Unknown handle type of fd 84
EAL: Error disabling interrupts for fd 84 (Bad file descriptor)
------------------------------------------------------------------------------

 31/157 DPDK:fast-tests / ipfrag_autotest                   OK                 0.39s
21:09:07 DPDK_TEST=ipfrag_autotest MALLOC_PERTURB_=83 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=ipfrag_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>ipfrag_autotest
 + ------------------------------------------------------- +
 + Test Suite : IP Frag Unit Test Suite
 + ------------------------------------------------------- +
0: checking 2 with 2
1: checking 2 with 2
2: checking 3 with 3
3: checking -22 with -22
4: checking -95 with -95
5: checking 3 with 3
6: checking 2 with 2
7: checking 2 with 2
8: checking -22 with -22
9: checking 2 with 2
 + TestCase [ 0] : test_ip_frag succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : IP Frag Unit Test Suite
 + ------------------------------------------------------- +
 + Tests Total :        1
 + Tests Skipped :      0
 + Tests Executed :     1
 + Tests Unsupported:   0
 + Tests Passed :       1
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f0f0fd2d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/ipfrag_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f0f0fab2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f0f0fa51000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f0b0e400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f0f0f89f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f070e200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f0f0f83e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f030e000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f0f0e59a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7eff0de00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f0f0e539000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7efb0dc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f0f0e4d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7ef70da00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f0f0e477000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7ef30d800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f0f0e416000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7eef0d600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: lib.eal log level changed from info to debug
EAL: Trying to obtain current memory policy.
EAL: Setting policy MPOL_PREFERRED for socket 0
EAL: Restoring previous memory policy: 0
EAL: request: mp_malloc_sync
EAL: Heap on socket 0 was expanded by 2MB
EAL: Trying to obtain current memory policy.
EAL: Setting policy MPOL_PREFERRED for socket 0
EAL: Restoring previous memory policy: 0
EAL: request: mp_malloc_sync
EAL: Heap on socket 0 was expanded by 2MB
EAL: Trying to obtain current memory policy.
EAL: Setting policy MPOL_PREFERRED for socket 0
EAL: Restoring previous memory policy: 0
EAL: request: mp_malloc_sync
EAL: Heap on socket 0 was expanded by 2MB
EAL: request: mp_malloc_sync
EAL: Heap on socket 0 was shrunk by 2MB
EAL: request: mp_malloc_sync
EAL: Heap on socket 0 was shrunk by 2MB
EAL: request: mp_malloc_sync
EAL: Heap on socket 0 was shrunk by 2MB
EAL: request: mp_malloc_sync
EAL: Heap on socket 0 was shrunk by 2MB
------------------------------------------------------------------------------

 32/157 DPDK:fast-tests / lcores_autotest                   OK                 0.98s
21:09:07 MALLOC_PERTURB_=167 DPDK_TEST=lcores_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=lcores_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>lcores_autotest
EAL threads count: 16, RTE_MAX_LCORE=128
lcore 0, socket 0, role RTE, cpuset 0
lcore 1, socket 0, role RTE, cpuset 1
lcore 2, socket 0, role RTE, cpuset 2
lcore 3, socket 0, role RTE, cpuset 3
lcore 4, socket 0, role RTE, cpuset 4
lcore 5, socket 0, role RTE, cpuset 5
lcore 6, socket 0, role RTE, cpuset 6
lcore 7, socket 0, role RTE, cpuset 7
lcore 8, socket 1, role RTE, cpuset 8
lcore 9, socket 1, role RTE, cpuset 9
lcore 10, socket 1, role RTE, cpuset 10
lcore 11, socket 1, role RTE, cpuset 11
lcore 12, socket 1, role RTE, cpuset 12
lcore 13, socket 1, role RTE, cpuset 13
lcore 14, socket 1, role RTE, cpuset 14
lcore 15, socket 1, role RTE, cpuset 15
non-EAL threads count: 112
Warning: could not register new thread (this might be expected during this test), reason Cannot allocate memory
non-EAL threads count: 113
Warning: could not register new thread (this might be expected during this test), reason Cannot allocate memory
lcore 0, socket 0, role RTE, cpuset 0
lcore 1, socket 0, role RTE, cpuset 1
lcore 2, socket 0, role RTE, cpuset 2
lcore 3, socket 0, role RTE, cpuset 3
lcore 4, socket 0, role RTE, cpuset 4
lcore 5, socket 0, role RTE, cpuset 5
lcore 6, socket 0, role RTE, cpuset 6
lcore 7, socket 0, role RTE, cpuset 7
lcore 8, socket 1, role RTE, cpuset 8
lcore 9, socket 1, role RTE, cpuset 9
lcore 10, socket 1, role RTE, cpuset 10
lcore 11, socket 1, role RTE, cpuset 11
lcore 12, socket 1, role RTE, cpuset 12
lcore 13, socket 1, role RTE, cpuset 13
lcore 14, socket 1, role RTE, cpuset 14
lcore 15, socket 1, role RTE, cpuset 15
lcore 16, socket 0, role NON_EAL, cpuset 0
lcore 0, socket 0, role RTE, cpuset 0
lcore 1, socket 0, role RTE, cpuset 1
lcore 2, socket 0, role RTE, cpuset 2
lcore 3, socket 0, role RTE, cpuset 3
lcore 4, socket 0, role RTE, cpuset 4
lcore 5, socket 0, role RTE, cpuset 5
lcore 6, socket 0, role RTE, cpuset 6
lcore 7, socket 0, role RTE, cpuset 7
lcore 8, socket 1, role RTE, cpuset 8
lcore 9, socket 1, role RTE, cpuset 9
lcore 10, socket 1, role RTE, cpuset 10
lcore 11, socket 1, role RTE, cpuset 11
lcore 12, socket 1, role RTE, cpuset 12
lcore 13, socket 1, role RTE, cpuset 13
lcore 14, socket 1, role RTE, cpuset 14
lcore 15, socket 1, role RTE, cpuset 15
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f1066e4a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/lcores_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f1066bb2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f1066b51000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f0c65600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f106699f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f0865400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f106693e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f0465200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f106569a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f0065000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f1065639000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7efc64e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f0c6559f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7ef864c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f0c6553e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7ef464a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f0c654dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ef064800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 33/157 DPDK:fast-tests / logs_autotest                     OK                 0.40s
21:09:08 MALLOC_PERTURB_=199 DPDK_TEST=logs_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=logs_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>logs_autotest
== dynamic log types
== static log types
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f7786607000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/logs_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f7786376000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f7786315000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f7384e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f778619f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f6f84c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f778613e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f6b84a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f7784e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f6784800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f7784e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f6384600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f7384d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f5f84400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f7384d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f5b84200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f7384cdd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f5784000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
error message
critical message
critical message
error message
TESTAPP1: error message
TESTAPP1: critical message
TESTAPP2: critical message
TESTAPP1: error message
------------------------------------------------------------------------------

 34/157 DPDK:fast-tests / lpm_autotest                      OK                 3.79s
21:09:09 DPDK_TEST=lpm_autotest MALLOC_PERTURB_=13 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=lpm_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>lpm_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fcb94105000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/lpm_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fcb93e76000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fcb93e15000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fc792800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fcb93c9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fc392600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fcb93c3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fbf92400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fcb9299a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fbb92200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fcb92939000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fb792000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fcb928d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fb391e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fcb92877000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7faf91c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fcb92816000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fab91a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 35/157 DPDK:fast-tests / lpm6_autotest                     FAIL               2.94s   exit status 1
21:09:12 DPDK_TEST=lpm6_autotest MALLOC_PERTURB_=73 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=lpm6_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>lpm6_autotest
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7facb665a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/lpm6_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7facb6600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7facb637f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fa8b4e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7facb631e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fa4b4c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7facb619f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fa0b4a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7facb613e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f9cb4800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7facb4e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f98b4600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7facb4e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f94b4400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fa8b4d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f90b4200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fa8b4d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f8cb4000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
RING: Cannot reserve memory
HASH: memory allocation failed
LPM: LPM rules hash table allocation failed: File exists (17)=================================================================
==1204==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7fff7e12a880 at pc 0x55bbad2d209f bp 0x7fff7e12a770 sp 0x7fff7e12a760
READ of size 4 at 0x7fff7e12a880 thread T0
    #0 0x55bbad2d209e in rule_hash (/dpdk/build/app/test/dpdk-test+0x1b2109e)
    #1 0x55bbad419e5f in rte_hash_lookup_data (/dpdk/build/app/test/dpdk-test+0x1c68e5f)
    #2 0x55bbad2d3f2b in rte_lpm6_add (/dpdk/build/app/test/dpdk-test+0x1b22f2b)
    #3 0x55bbacc67a6b in test9 (/dpdk/build/app/test/dpdk-test+0x14b6a6b)
    #4 0x55bbacc63312 in test_lpm6 (/dpdk/build/app/test/dpdk-test+0x14b2312)
    #5 0x55bbaca65c7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #6 0x55bbad4285a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #7 0x55bbad4257b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #8 0x55bbad42ea78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #9 0x55bbad4258a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #10 0x55bbabcbe837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #11 0x7facb94cd0b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)
    #12 0x55bbaca65b6d in _start (/dpdk/build/app/test/dpdk-test+0x12b4b6d)

Address 0x7fff7e12a880 is located in stack of thread T0 at offset 80 in frame
    #0 0x55bbad2d2e3f in rte_lpm6_add (/dpdk/build/app/test/dpdk-test+0x1b21e3f)

  This frame has 3 object(s):
    [32, 40) 'hash_val' (line 450)
    [64, 81) 'rule_key' (line 490) <== Memory access at offset 80 partially overflows this variable
    [128, 144) 'masked_ip' (line 865)
HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork
      (longjmp and C++ exceptions *are* supported)
SUMMARY: AddressSanitizer: stack-buffer-overflow (/dpdk/build/app/test/dpdk-test+0x1b2109e) in rule_hash
Shadow bytes around the buggy address:
  0x10006fc1d4c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10006fc1d4d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10006fc1d4e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10006fc1d4f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10006fc1d500: 00 00 00 00 00 00 f1 f1 f1 f1 00 f2 f2 f2 00 00
=>0x10006fc1d510:[01]f2 f2 f2 f2 f2 00 00 f3 f3 00 00 00 00 00 00
  0x10006fc1d520: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 f1 f1
  0x10006fc1d530: f1 f1 f1 f1 04 f2 00 04 f2 f2 00 00 f3 f3 00 00
  0x10006fc1d540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10006fc1d550: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10006fc1d560: 00 00 00 00 00 00 00 00 f1 f1 f1 f1 f8 f2 f2 f2
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07 
  Heap left redzone:       fa
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
  Shadow gap:              cc
==1204==ABORTING
------------------------------------------------------------------------------

 36/157 DPDK:fast-tests / malloc_autotest                   OK                 3.27s
21:09:15 DPDK_TEST=malloc_autotest MALLOC_PERTURB_=255 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=malloc_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>malloc_autotest
test_str_to_size() passed
test_zero_aligned_alloc() passed
test_malloc_bad_params() passed
test_realloc() passed
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:422720,
	Alloc_size:1674432,
	Greatest_free_size:411264,
	Alloc_count:9,
	Free_count:3,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2079744,
	Alloc_size:17408,
	Greatest_free_size:2072448,
	Alloc_count:15,
	Free_count:6,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:423808,
	Alloc_size:1673344,
	Greatest_free_size:423808,
	Alloc_count:8,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2085632,
	Alloc_size:11520,
	Greatest_free_size:2077184,
	Alloc_count:10,
	Free_count:5,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:422656,
	Alloc_size:1674496,
	Greatest_free_size:415616,
	Alloc_count:9,
	Free_count:5,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2089088,
	Alloc_size:8064,
	Greatest_free_size:2076544,
	Alloc_count:7,
	Free_count:5,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:426112,
	Alloc_size:1671040,
	Greatest_free_size:423808,
	Alloc_count:6,
	Free_count:2,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2085632,
	Alloc_size:11520,
	Greatest_free_size:2082432,
	Alloc_count:10,
	Free_count:4,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2082176,
	Alloc_size:14976,
	Greatest_free_size:2074496,
	Alloc_count:13,
	Free_count:6,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:428480,
	Alloc_size:1668672,
	Greatest_free_size:428480,
	Alloc_count:4,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2083200,
	Alloc_size:13952,
	Greatest_free_size:2079488,
	Alloc_count:12,
	Free_count:5,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2084480,
	Alloc_size:12672,
	Greatest_free_size:2078592,
	Alloc_count:11,
	Free_count:7,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2087936,
	Alloc_size:9216,
	Greatest_free_size:2082688,
	Alloc_count:8,
	Free_count:3,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2086784,
	Alloc_size:10368,
	Greatest_free_size:2081280,
	Alloc_count:9,
	Free_count:5,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2088960,
	Alloc_size:8192,
	Greatest_free_size:2078592,
	Alloc_count:7,
	Free_count:3,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2093696,
	Alloc_size:3456,
	Greatest_free_size:2088576,
	Alloc_count:3,
	Free_count:2,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2090240,
	Alloc_size:6912,
	Greatest_free_size:2089728,
	Alloc_count:6,
	Free_count:2,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2093696,
	Alloc_size:3456,
	Greatest_free_size:2088832,
	Alloc_count:3,
	Free_count:4,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
test_align_overlap_per_lcore() passed
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:428480,
	Alloc_size:1668672,
	Greatest_free_size:428480,
	Alloc_count:4,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Alloc_count:0,
	Greatest_free_size:429632,
	Free_count:0,
Heap id:25
	Alloc_count:3,
	Free_count:1,
	Heap name:
Heap id:1
	Heap name:socket_1
	Heap_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_size:0,
	Alloc_count:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
	Alloc_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_count:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
Heap id:2
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Heap name:
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Heap_size:0,
	Alloc_count:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
	Alloc_count:0,
Heap id:28
	Heap name:
	Free_count:0,
	Heap_size:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Free_size:0,
	Heap name:
	Alloc_size:0,
	Heap_size:0,
	Greatest_free_size:0,
	Free_size:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_size:0,
	Greatest_free_size:0,
Heap id:29
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Heap_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Free_size:0,
Heap id:30
	Heap name:
	Alloc_size:0,
	Heap_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Free_size:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Alloc_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_count:0,
Heap id:31
	Free_count:0,
Heap id:10
	Heap name:
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Heap_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:427328,
	Alloc_size:1669824,
	Greatest_free_size:422656,
	Alloc_count:5,
	Free_count:3,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:427328,
	Alloc_size:1669824,
	Greatest_free_size:427328,
	Alloc_count:5,
	Free_count:1,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:428480,
	Alloc_size:1668672,
	Greatest_free_size:428480,
	Alloc_count:4,
	Free_count:1,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2096000,
	Alloc_size:1152,
	Greatest_free_size:2096000,
	Alloc_count:1,
	Free_count:1,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
Heap id:1
	Free_size:0,
	Heap name:socket_1
	Heap_size:2097152,
	Alloc_size:0,
	Free_size:2094848,
	Greatest_free_size:0,
	Alloc_size:2304,
	Greatest_free_size:2094848,
	Alloc_count:0,
	Alloc_count:2,
	Free_count:1,
	Free_count:0,
Heap id:2
Heap id:4
	Heap name:
Heap id:1
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Heap name:socket_1
Heap id:1
	Heap_size:2097152,
	Alloc_size:0,
	Heap name:
	Heap name:socket_1
	Greatest_free_size:0,
	Heap_size:2097152,
	Free_size:2091392,
	Alloc_count:0,
	Alloc_size:5760,
	Free_count:0,
	Greatest_free_size:2091392,
Heap id:4
	Heap_size:0,
	Alloc_count:5,
	Free_size:0,
	Alloc_size:0,
	Free_count:1,
	Free_size:2092544,
	Greatest_free_size:0,
	Alloc_count:0,
	Heap name:
	Free_count:0,
Heap id:2
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Heap name:
	Heap_size:0,
Heap id:5
Heap id:5
	Heap name:
	Free_size:0,
	Heap name:
	Heap_size:0,
	Heap_size:0,
	Alloc_size:0,
	Free_size:0,
	Free_size:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_size:4608,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
	Greatest_free_size:2092544,
Heap id:6
	Heap name:
	Free_count:0,
	Heap_size:0,
Heap id:6
	Free_size:0,
	Alloc_size:0,
	Heap name:
	Heap_size:0,
	Greatest_free_size:0,
Heap id:3
	Free_size:0,
	Alloc_count:4,
	Heap name:
	Heap_size:0,
	Alloc_count:0,
	Free_count:1,
Heap id:2
	Free_count:0,
	Free_size:0,
Heap id:7
	Heap name:
	Heap name:
	Heap_size:0,
	Heap_size:0,
	Alloc_size:0,
	Free_size:0,
	Alloc_size:0,
	Free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Alloc_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Greatest_free_size:0,
	Heap name:
Heap id:4
	Alloc_count:0,
	Free_count:0,
Heap id:4
Heap id:8
	Heap name:
	Heap_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Free_count:0,
Heap id:9
	Alloc_count:0,
	Heap name:
	Free_count:0,
	Heap name:
	Heap_size:0,
Heap id:9
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Heap name:
	Free_count:0,
	Heap_size:0,
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
Heap id:10
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Greatest_free_size:0,
Heap id:9
	Alloc_count:0,
	Free_count:0,
	Heap name:
Heap id:10
	Heap_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_size:0,
	Free_count:0,
	Greatest_free_size:0,
	Alloc_count:0,
Heap id:10
	Free_count:0,
	Heap name:
Heap id:11
	Heap name:
	Heap_size:0,
	Heap name:
	Free_size:0,
	Alloc_size:0,
	Heap_size:0,
	Heap_size:0,
	Greatest_free_size:0,
	Free_size:0,
	Alloc_count:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
	Alloc_count:0,
Heap id:5
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap name:
	Free_count:0,
	Heap_size:0,
	Heap_size:0,
Heap id:11
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_size:0,
	Heap name:
	Greatest_free_size:0,
	Alloc_count:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Free_count:0,
	Free_count:0,
	Greatest_free_size:0,
Heap id:6
Heap id:13
	Heap name:
	Free_size:0,
	Heap_size:0,
	Heap name:
	Alloc_size:0,
	Free_size:0,
	Heap_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Free_size:0,
	Free_count:0,
	Alloc_size:0,
Heap id:12
	Heap name:
	Greatest_free_size:0,
	Alloc_count:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
	Greatest_free_size:0,
	Free_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
Heap id:7
Heap id:13
	Heap name:
	Heap_size:0,
	Heap name:
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
	Alloc_count:0,
	Heap_size:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Free_count:0,
	Free_size:0,
	Alloc_size:0,
Heap id:15
	Heap name:
	Greatest_free_size:0,
	Heap name:
	Heap_size:0,
	Heap_size:0,
	Alloc_count:0,
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
	Greatest_free_size:0,
Heap id:8
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Free_count:0,
	Heap_size:0,
Heap id:14
	Free_size:0,
Heap id:13
	Alloc_size:0,
	Heap name:
	Greatest_free_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Heap name:
	Alloc_count:0,
	Heap_size:0,
	Alloc_size:0,
	Free_count:0,
	Heap_size:0,
	Greatest_free_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
Heap id:17
	Heap name:
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
	Heap_size:0,
	Free_count:0,
	Free_size:0,
	Alloc_size:0,
Heap id:9
Heap id:15
	Heap name:
	Greatest_free_size:0,
	Heap name:
	Heap_size:0,
	Heap_size:0,
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
Heap id:18
	Alloc_count:0,
	Heap name:
	Alloc_count:0,
	Free_size:0,
	Heap_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
	Free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Alloc_size:0,
Heap id:14
	Greatest_free_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_count:0,
	Heap name:
	Free_count:0,
	Alloc_size:0,
Heap id:16
	Heap name:
	Greatest_free_size:0,
	Heap_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_size:0,
	Free_count:0,
	Alloc_size:0,
Heap id:18
	Greatest_free_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_count:0,
	Alloc_size:0,
	Free_count:0,
Heap id:17
	Greatest_free_size:0,
	Heap name:
	Alloc_count:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Free_count:0,
	Greatest_free_size:0,
Heap id:19
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Free_count:0,
	Heap name:
	Heap_size:0,
Heap id:15
	Heap name:
	Free_size:0,
	Alloc_size:0,
	Alloc_size:0,
	Heap_size:0,
	Free_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_count:0,
	Free_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
Heap id:19
	Alloc_size:0,
	Heap name:
	Heap_size:0,
Heap id:20
	Free_size:0,
	Greatest_free_size:0,
	Heap name:
	Heap_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_size:0,
	Alloc_size:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Greatest_free_size:0,
	Free_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Free_count:0,
	Heap_size:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_size:0,
	Free_count:0,
	Free_count:0,
Heap id:22
Heap id:16
	Heap name:
	Heap name:
	Heap_size:0,
	Free_size:0,
	Heap_size:0,
	Free_count:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_size:0,
	Alloc_size:0,
Heap id:20
	Alloc_count:0,
	Free_count:0,
	Greatest_free_size:0,
Heap id:23
	Heap name:
	Heap name:
	Heap_size:0,
	Alloc_size:0,
	Heap_size:0,
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
	Free_count:0,
	Alloc_count:0,
Heap id:24
	Heap name:
	Alloc_count:0,
	Free_count:0,
	Heap_size:0,
Heap id:21
	Free_count:0,
	Heap name:
Heap id:17
	Heap name:
	Free_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Heap_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Free_size:0,
	Free_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
Heap id:22
	Heap name:
	Heap name:
	Free_count:0,
Heap id:26
	Heap_size:0,
	Heap_size:0,
	Free_size:0,
	Heap name:
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
	Heap_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Free_size:0,
Heap id:23
	Heap name:
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Heap_size:0,
	Free_size:0,
	Heap name:
	Free_count:0,
Heap id:27
	Alloc_size:0,
	Heap name:
	Heap_size:0,
	Greatest_free_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Free_count:0,
	Greatest_free_size:0,
Heap id:24
	Heap name:
Heap id:28
	Alloc_count:0,
	Free_count:0,
	Heap_size:0,
Heap id:19
	Heap name:
	Alloc_count:0,
	Heap name:
	Heap_size:0,
	Free_count:0,
Heap id:23
	Heap_size:0,
	Heap name:
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_count:0,
	Free_count:0,
	Free_size:0,
Heap id:20
	Alloc_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Heap name:
	Alloc_count:0,
	Free_count:0,
	Greatest_free_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
Heap id:24
	Heap_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
	Free_count:0,
Heap id:30
Heap id:25
	Heap name:
	Heap_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
	Free_count:0,
	Greatest_free_size:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_count:0,
Heap id:31
	Free_count:0,
Heap id:26
	Greatest_free_size:0,
	Heap name:
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_count:0,
	Heap_size:0,
	Alloc_size:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Free_count:0,
	Free_count:0,
	Alloc_count:0,
Heap id:24
Heap id:27
	Free_count:0,
	Heap name:
	Heap_size:0,
Heap id:28
	Heap name:
	Free_size:0,
	Heap name:
	Alloc_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Heap_size:0,
	Alloc_count:0,
	Free_count:0,
	Heap_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_size:0,
	Free_size:0,
	Free_count:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Free_count:0,
Heap id:25
Heap id:29
	Alloc_count:0,
	Heap name:
	Heap_size:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap name:
	Heap_size:0,
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
	Heap_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Free_count:0,
	Greatest_free_size:0,
Heap id:27
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap name:
	Alloc_count:0,
	Heap_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Free_count:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
Heap id:30
	Alloc_count:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Free_count:0,
	Alloc_size:0,
Heap id:31
	Free_size:0,
	Alloc_size:0,
	Heap name:
	Greatest_free_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Free_count:0,
Heap id:28
	Heap name:
	Alloc_count:0,
	Heap_size:0,
	Free_count:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2040704,
	Alloc_size:56448,
	Greatest_free_size:2006528,
	Alloc_count:10,
	Free_count:4,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2056832,
	Alloc_size:40320,
	Greatest_free_size:2039424,
	Alloc_count:9,
	Free_count:4,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
Heap id:0
	Alloc_count:0,
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:0,
	Free_count:1,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
Heap id:1
	Alloc_count:0,
	Heap name:socket_1
	Heap_size:2097152,
	Free_count:0,
	Free_size:2057856,
Heap id:9
	Heap name:
	Heap_size:0,
	Alloc_size:39296,
	Free_size:0,
	Greatest_free_size:2041728,
	Alloc_count:8,
	Alloc_size:0,
	Free_count:2,
Heap id:2
	Greatest_free_size:0,
	Heap name:
	Heap_size:0,
	Alloc_count:0,
	Free_size:0,
	Free_count:0,
Heap id:10
	Heap name:
	Alloc_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_count:0,
Heap id:3
	Free_count:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
Heap id:11
	Alloc_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
	Free_count:0,
Heap id:4
Heap id:12
	Heap name:
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Heap_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Free_size:0,
	Heap name:
	Alloc_size:0,
	Greatest_free_size:0,
	Heap_size:0,
	Alloc_count:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
	Alloc_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_count:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
Heap id:6
	Free_count:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
Heap id:14
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Heap name:
	Free_count:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
Heap id:7
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Heap_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Free_size:0,
Heap id:8
Heap id:0
	Heap name:
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Heap_size:0,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_size:0,
	Free_count:1,
	Alloc_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_count:0,
Heap id:16
	Heap name:
	Free_count:0,
Heap id:1
	Heap_size:0,
Heap id:9
	Free_size:0,
	Heap name:socket_1
	Heap name:
	Heap_size:0,
	Alloc_size:0,
	Heap_size:2097152,
	Free_size:2077568,
	Alloc_size:19584,
	Free_size:0,
	Greatest_free_size:2042880,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:4,
	Free_count:4,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:2
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
Heap id:17
	Greatest_free_size:0,
	Heap name:
	Alloc_size:0,
	Alloc_count:0,
	Free_count:0,
	Heap_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
Heap id:3
	Free_size:0,
	Alloc_size:0,
	Heap name:
	Heap_size:0,
	Free_count:0,
	Free_size:0,
	Greatest_free_size:0,
Heap id:11
	Alloc_size:0,
	Heap name:
	Alloc_count:0,
	Heap_size:0,
	Greatest_free_size:0,
	Free_size:0,
	Free_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Alloc_size:0,
	Heap_size:0,
	Greatest_free_size:0,
Heap id:4
	Free_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Free_count:0,
	Heap name:
	Alloc_count:0,
	Free_count:0,
Heap id:12
Heap id:0
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Heap name:socket_0
	Heap_size:0,
	Heap_size:2097152,
	Free_size:0,
	Alloc_size:0,
	Free_size:429632,
	Alloc_size:1667520,
	Free_size:0,
	Greatest_free_size:429632,
	Heap name:
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:3,
	Alloc_count:0,
	Free_count:1,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Free_count:0,
	Alloc_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_count:0,
	Heap_size:0,
Heap id:5
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Heap name:
	Greatest_free_size:0,
Heap id:0
	Heap_size:0,
	Free_size:0,
Heap id:1
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Heap name:socket_1
	Free_count:0,
Heap id:6
	Heap_size:2097152,
	Free_size:2079872,
	Alloc_count:0,
	Heap name:
	Heap name:socket_0
	Alloc_count:0,
	Heap_size:0,
	Heap_size:2097152,
	Free_size:429632,
	Free_size:0,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
Heap id:13
	Alloc_count:3,
	Free_count:1,
	Free_count:0,
	Heap name:
Heap id:27
	Heap_size:0,
	Free_size:0,
	Heap name:
	Alloc_size:17280,
	Greatest_free_size:2058368,
	Alloc_count:0,
	Alloc_count:2,
	Heap_size:0,
	Free_count:3,
	Free_size:0,
	Alloc_size:0,
Heap id:0
	Alloc_size:0,
	Free_count:0,
Heap id:7
	Heap name:
	Greatest_free_size:0,
	Heap_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Free_size:0,
	Heap name:socket_0
	Heap name:
	Heap_size:0,
	Alloc_size:0,
	Heap_size:2097152,
	Free_size:0,
	Free_size:429632,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Greatest_free_size:0,
Heap id:2
	Alloc_count:0,
	Heap name:
	Free_count:0,
	Alloc_count:0,
	Heap_size:0,
	Free_size:0,
Heap id:15
Heap id:8
	Free_count:0,
	Alloc_size:1667520,
	Heap name:
	Heap name:
	Greatest_free_size:429632,
	Heap_size:0,
Heap id:28
	Heap_size:0,
	Alloc_count:3,
	Free_count:1,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Heap name:
	Alloc_size:0,
	Heap_size:0,
Heap id:16
	Greatest_free_size:0,
	Alloc_count:0,
	Free_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Free_count:0,
Heap id:3
	Alloc_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Heap_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
	Alloc_count:0,
	Free_size:0,
Heap id:9
	Free_count:0,
	Heap name:
Heap id:17
	Heap name:
	Alloc_size:0,
	Alloc_size:0,
	Heap_size:0,
	Heap_size:0,
	Greatest_free_size:0,
	Free_size:0,
	Free_size:0,
	Alloc_count:0,
	Free_count:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Free_count:0,
Heap id:5
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
Heap id:29
	Greatest_free_size:0,
	Alloc_count:0,
	Heap name:
	Heap name:
	Heap_size:0,
	Free_count:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
Heap id:11
	Heap name:
	Free_size:0,
	Heap_size:0,
	Greatest_free_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Free_count:0,
Heap id:6
	Greatest_free_size:0,
	Alloc_count:0,
	Heap name:
	Heap_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Free_size:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap name:
	Heap_size:0,
	Heap_size:0,
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
	Greatest_free_size:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Alloc_count:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
Heap id:31
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap name:
	Heap_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Free_count:0,
	Alloc_count:0,
Heap id:18
	Free_count:0,
	Heap name:
	Heap_size:0,
	Free_count:0,
	Free_size:0,
Heap id:22
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Heap name:
	Heap_size:0,
	Alloc_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_size:0,
	Free_count:0,
	Free_count:0,
	Alloc_size:0,
	Greatest_free_size:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Free_size:0,
	Alloc_size:0,
Heap id:8
	Greatest_free_size:0,
	Heap name:
	Heap name:
	Alloc_count:0,
	Heap_size:0,
	Heap_size:0,
	Free_count:0,
	Free_size:0,
Heap id:24
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Heap name:
	Alloc_size:0,
	Heap_size:0,
	Free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
Heap id:20
	Heap name:
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap_size:0,
	Free_count:0,
Heap id:25
	Free_size:0,
	Alloc_size:0,
	Heap name:
	Greatest_free_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Free_count:0,
Heap id:10
	Alloc_count:0,
Heap id:26
	Heap name:
	Heap name:
	Heap_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Free_size:0,
	Alloc_size:0,
	Free_count:0,
	Greatest_free_size:0,
Heap id:21
	Greatest_free_size:0,
	Heap name:
	Alloc_count:0,
	Free_count:0,
	Alloc_count:0,
Heap id:27
	Heap_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Free_count:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_count:0,
Heap id:11
Heap id:23
	Heap name:
	Heap name:
	Heap_size:0,
	Free_size:0,
	Free_size:0,
	Heap_size:0,
	Alloc_size:0,
	Alloc_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
Heap id:29
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap_size:0,
	Heap name:
	Free_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Free_count:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap name:
	Heap_size:0,
	Heap_size:0,
	Free_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
Heap id:30
	Free_size:0,
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Greatest_free_size:0,
	Free_count:0,
Heap id:31
	Alloc_count:0,
	Heap name:
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Free_size:0,
	Greatest_free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Alloc_count:0,
	Free_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:1
	Heap name:socket_1
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:1
	Heap name:socket_1
	Heap_size:2097152,
	Free_size:2096000,
	Alloc_size:1152,
	Greatest_free_size:2096000,
	Alloc_count:1,
	Free_count:1,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
test_reordered_free_per_lcore() passed
Lcore 2 allocated/freed 49916 blocks
Lcore 7 allocated/freed 50038 blocks
Lcore 6 allocated/freed 49412 blocks
Lcore 1 allocated/freed 50095 blocks
Lcore 3 allocated/freed 50097 blocks
Lcore 4 allocated/freed 50338 blocks
Lcore 5 allocated/freed 49707 blocks
Lcore 11 allocated/freed 50487 blocks
Lcore 15 allocated/freed 49614 blocks
Lcore 13 allocated/freed 49863 blocks
Lcore 10 allocated/freed 49751 blocks
Lcore 9 allocated/freed 50339 blocks
Lcore 14 allocated/freed 49943 blocks
Lcore 8 allocated/freed 49815 blocks
Lcore 12 allocated/freed 49963 blocks
test_random_alloc_free() passed
test_rte_malloc_validate() passed
test_alloc_socket() passed
Heap id:0
	Heap name:socket_0
	Heap_size:2097152,
	Free_size:429632,
	Alloc_size:1667520,
	Greatest_free_size:429632,
	Alloc_count:3,
	Free_count:1,
Heap id:1
	Heap name:socket_1
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:2
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:3
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:4
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:5
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:6
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:7
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:8
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:9
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:10
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:11
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:12
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:13
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:14
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:15
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:16
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:17
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:18
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:19
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:20
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:21
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:22
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:23
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:24
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:25
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:26
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:27
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:28
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:29
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:30
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
Heap id:31
	Heap name:
	Heap_size:0,
	Free_size:0,
	Alloc_size:0,
	Greatest_free_size:0,
	Alloc_count:0,
	Free_count:0,
test_multi_alloc_statistics() passed
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f9fbd5d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/malloc_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f9fbd57e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f9fbd51d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f9bbbc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f9fbd27f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f97bba00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f9fbd21e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f93bb800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f9fbd09f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f8fbb600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f9fbd03e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f8bbb400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f9fbbd9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f87bb200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f9fbbd39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f83bb000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f9fbbcd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f7fbae00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: WARNING! Base virtual address hint (0x106041000 != 0x7f9fbd504000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
------------------------------------------------------------------------------

 37/157 DPDK:fast-tests / mbuf_autotest                     OK                 3.99s
21:09:19 DPDK_TEST=mbuf_autotest MALLOC_PERTURB_=58 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=mbuf_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>mbuf_autotest
Test mbuf dynamic fields and flags
Reserved fields:
Reserved flags:
Free space in mbuf (0 = occupied, value = free zone alignment):
  0000: 00 00 00 00 00 00 00 00
  0008: 00 00 00 00 00 00 00 00
  0010: 00 00 00 00 00 00 00 00
  0018: 00 00 00 00 00 00 00 00
  0020: 00 00 00 00 00 00 00 00
  0028: 00 00 00 00 00 00 00 00
  0030: 00 00 00 00 00 00 00 00
  0038: 00 00 00 00 00 00 00 00
  0040: 00 00 00 00 00 00 00 00
  0048: 00 00 00 00 00 00 00 00
  0050: 00 00 00 00 00 00 00 00
  0058: 00 00 00 00 04 04 04 04
  0060: 20 20 20 20 20 20 20 20
  0068: 20 20 20 20 20 20 20 20
  0070: 20 20 20 20 20 20 20 20
  0078: 20 20 20 20 20 20 20 20
Free bit in mbuf->ol_flags (0 = occupied, 1 = free):
  0000: 0 0 0 0 0 0 0 0
  0008: 0 0 0 0 0 0 0 0
  0010: 0 0 0 0 0 0 0 1
  0018: 1 1 1 1 1 1 1 1
  0020: 1 1 1 1 1 1 1 1
  0028: 1 0 0 0 0 0 0 0
  0030: 0 0 0 0 0 0 0 0
  0038: 0 0 0 0 0 0 0 0
dynfield: offset=92, offset2=94, offset3=96
dynflag: flag=23, flag2=24, flag3=40
Create mbuf pools for bulk allocation.
Test single bulk alloc, followed by multiple bulk free.
Test multiple bulk alloc, followed by single bulk free.
Test bulk free of single long chain.
Test bulk free of multiple chains using multiple pools.
Free mbuf pools for bulk allocation.
Test pktmbuf API
dump mbuf at 0x7f72b1848340, iova=0x11b8483c0, buf_len=2048
  pkt_len=0, ol_flags=0, nb_segs=1, port=65535, ptype=0
  segment at 0x7f72b1848340, data=0x7f72b1848440, len=0, off=128, refcnt=1
dump mbuf at 0x7f72b1848340, iova=0x11b8483c0, buf_len=2048
  pkt_len=1464, ol_flags=0, nb_segs=1, port=65535, ptype=0
  segment at 0x7f72b1848340, data=0x7f72b1848440, len=1464, off=128, refcnt=1
  Dump data at [0x7f72b1848440], len=1464
00000000: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000010: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000020: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000030: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000040: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000050: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000060: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000070: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000080: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000090: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000100: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000110: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000120: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000130: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000140: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000150: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000160: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000170: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000180: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000190: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000200: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000210: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000220: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000230: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000240: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000250: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000260: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000270: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000280: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000290: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000300: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000310: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000320: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000330: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000340: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000350: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000360: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000370: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000380: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000390: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000400: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000410: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000420: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000430: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000440: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000450: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000460: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000470: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000480: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000490: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000500: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000510: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000520: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000530: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000540: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000550: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000560: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000570: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000580: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000590: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000005A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000005B0: 66 66 66 66 66 66 66 66                         | ffffffff
dump mbuf at 0x7f72b1848340, iova=0x11b8483c0, buf_len=2048
  pkt_len=1464, ol_flags=0, nb_segs=1, port=65535, ptype=0
  segment at 0x7f72b1848340, data=0x7f72b1848440, len=1464, off=128, refcnt=1
  Dump data at [0x7f72b1848440], len=1464
00000000: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000010: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000020: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000030: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000040: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000050: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000060: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000070: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000080: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000090: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000100: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000110: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000120: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000130: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000140: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000150: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000160: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000170: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000180: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000190: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000200: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000210: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000220: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000230: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000240: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000250: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000260: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000270: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000280: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000290: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000300: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000310: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000320: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000330: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000340: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000350: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000360: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000370: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000380: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000390: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000400: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000410: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000420: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000430: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000440: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000450: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000460: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000470: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000480: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000490: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000500: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000510: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000520: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000530: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000540: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000550: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000560: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000570: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000580: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000590: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000005A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000005B0: 66 66 66 66 66 66 66 66                         | ffffffff
dump mbuf at 0x7f72b1848340, iova=0x11b8483c0, buf_len=2048
  pkt_len=1514, ol_flags=0, nb_segs=1, port=65535, ptype=0
  segment at 0x7f72b1848340, data=0x7f72b184840e, len=1514, off=78, refcnt=1
Test pktmbuf API
dump mbuf at 0x7f72b1848340, iova=0x11b8483c0, buf_len=2048
  pkt_len=0, ol_flags=0, nb_segs=1, port=65535, ptype=0
  segment at 0x7f72b1848340, data=0x7f72b1848440, len=0, off=128, refcnt=1
dump mbuf at 0x7f72b1848340, iova=0x11b8483c0, buf_len=2048
  pkt_len=1464, ol_flags=0, nb_segs=1, port=65535, ptype=0
  segment at 0x7f72b1848340, data=0x7f72b1848440, len=1464, off=128, refcnt=1
  Dump data at [0x7f72b1848440], len=1464
00000000: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000010: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000020: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000030: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000040: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000050: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000060: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000070: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000080: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000090: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000100: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000110: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000120: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000130: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000140: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000150: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000160: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000170: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000180: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000190: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000200: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000210: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000220: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000230: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000240: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000250: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000260: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000270: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000280: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000290: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000300: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000310: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000320: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000330: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000340: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000350: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000360: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000370: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000380: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000390: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000400: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000410: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000420: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000430: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000440: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000450: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000460: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000470: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000480: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000490: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000500: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000510: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000520: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000530: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000540: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000550: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000560: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000570: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000580: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000590: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000005A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000005B0: 66 66 66 66 66 66 66 66                         | ffffffff
dump mbuf at 0x7f72b1848340, iova=0x11b8483c0, buf_len=2048
  pkt_len=1464, ol_flags=0, nb_segs=1, port=65535, ptype=0
  segment at 0x7f72b1848340, data=0x7f72b1848440, len=1464, off=128, refcnt=1
  Dump data at [0x7f72b1848440], len=1464
00000000: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000010: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000020: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000030: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000040: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000050: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000060: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000070: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000080: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000090: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000000F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000100: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000110: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000120: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000130: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000140: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000150: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000160: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000170: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000180: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000190: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000001F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000200: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000210: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000220: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000230: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000240: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000250: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000260: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000270: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000280: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000290: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000002F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000300: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000310: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000320: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000330: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000340: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000350: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000360: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000370: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000380: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000390: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000003F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000400: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000410: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000420: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000430: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000440: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000450: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000460: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000470: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000480: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000490: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004B0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004C0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004D0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004E0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000004F0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000500: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000510: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000520: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000530: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000540: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000550: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000560: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000570: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000580: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
00000590: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000005A0: 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 | ffffffffffffffff
000005B0: 66 66 66 66 66 66 66 66                         | ffffffff
dump mbuf at 0x7f72b1848340, iova=0x11b8483c0, buf_len=2048
  pkt_len=1514, ol_flags=0, nb_segs=1, port=65535, ptype=0
  segment at 0x7f72b1848340, data=0x7f72b184840e, len=1514, off=78, refcnt=1
dump mbuf at 0x7f72b1848340, iova=0x11b8483c0, buf_len=2048
  pkt_len=1464, ol_flags=0, nb_segs=1, port=65535, ptype=0
  segment at 0x7f72b1848340, data=0x7f72b1848440, len=1464, off=128, refcnt=1
  Dump data at [0x7f72b1848440], len=1464
00000000: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000010: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000020: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000030: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000040: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000050: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000060: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000070: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000080: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000090: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000000A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000000B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000000C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000000D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000000E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000000F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000100: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000110: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000120: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000130: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000140: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000150: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000160: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000170: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000180: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000190: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000001A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000001B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000001C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000001D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000001E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000001F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000200: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000210: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000220: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000230: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000240: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000250: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000260: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000270: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000280: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000290: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000002A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000002B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000002C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000002D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000002E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000002F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000300: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000310: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000320: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000330: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000340: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000350: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000360: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000370: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000380: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000390: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000003A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000003B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000003C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000003D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000003E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000003F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000400: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000410: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000420: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000430: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000440: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000450: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000460: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000470: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000480: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000490: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000004A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000004B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000004C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000004D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000004E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000004F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000500: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000510: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000520: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000530: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000540: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000550: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000560: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000570: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000580: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000590: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000005A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000005B0: FF FF FF FF FF FF FF FF                         | ........
testclone_testupdate_testdetach ok
test_pktmbuf_copy ok
test_attach_from_different_pool ok
starting test_refcnt_mbuf, at 16 lcores
test_refcnt_worker started at lcore 1
test_refcnt_worker started at lcore 2
test_refcnt_worker started at lcore 3
test_refcnt_worker started at lcore 4
test_refcnt_worker started at lcore 5
test_refcnt_worker started at lcore 6
test_refcnt_worker started at lcore 7
test_refcnt_worker started at lcore 8
test_refcnt_worker started at lcore 9
test_refcnt_worker started at lcore 10
test_refcnt_worker started at lcore 11
test_refcnt_worker started at lcore 12
test_refcnt_worker started at lcore 13
test_refcnt_worker started at lcore 14
test_refcnt_worker started at lcore 15
test_refcnt_main started at lcore 0
test_refcnt_iter(lcore=0, iter=0) completed, 3703 references processed
test_refcnt_iter(lcore=0, iter=1) completed, 4049 references processed
test_refcnt_iter(lcore=0, iter=2) completed, 4535 references processed
test_refcnt_iter(lcore=0, iter=3) completed, 4429 references processed
test_refcnt_iter(lcore=0, iter=4) completed, 4231 references processed
test_refcnt_iter(lcore=0, iter=5) completed, 4647 references processed
test_refcnt_iter(lcore=0, iter=6) completed, 3837 references processed
test_refcnt_iter(lcore=0, iter=7) completed, 4540 references processed
test_refcnt_iter(lcore=0, iter=8) completed, 3596 references processed
test_refcnt_iter(lcore=0, iter=9) completed, 4206 references processed
test_refcnt_iter(lcore=0, iter=10) completed, 3796 references processed
test_refcnt_iter(lcore=0, iter=11) completed, 3957 references processed
test_refcnt_iter(lcore=0, iter=12) completed, 4070 references processed
test_refcnt_iter(lcore=0, iter=13) completed, 3708 references processed
test_refcnt_iter(lcore=0, iter=14) completed, 3959 references processed
test_refcnt_iter(lcore=0, iter=15) completed, 4205 references processed
test_refcnt_iter(lcore=0, iter=16) completed, 3734 references processed
test_refcnt_iter(lcore=0, iter=17) completed, 3838 references processed
test_refcnt_iter(lcore=0, iter=18) completed, 4192 references processed
test_refcnt_iter(lcore=0, iter=19) completed, 5115 references processed
test_refcnt_iter(lcore=0, iter=20) completed, 4588 references processed
test_refcnt_iter(lcore=0, iter=21) completed, 3800 references processed
test_refcnt_iter(lcore=0, iter=22) completed, 3862 references processed
test_refcnt_iter(lcore=0, iter=23) completed, 4032 references processed
test_refcnt_iter(lcore=0, iter=24) completed, 4061 references processed
test_refcnt_iter(lcore=0, iter=25) completed, 4035 references processed
test_refcnt_iter(lcore=0, iter=26) completed, 3768 references processed
test_refcnt_iter(lcore=0, iter=27) completed, 3783 references processed
test_refcnt_iter(lcore=0, iter=28) completed, 4044 references processed
test_refcnt_iter(lcore=0, iter=29) completed, 4449 references processed
test_refcnt_iter(lcore=0, iter=30) completed, 4274 references processed
test_refcnt_iter(lcore=0, iter=31) completed, 4111 references processed
test_refcnt_iter(lcore=0, iter=32) completed, 3792 references processed
test_refcnt_iter(lcore=0, iter=33) completed, 4382 references processed
test_refcnt_iter(lcore=0, iter=34) completed, 3606 references processed
test_refcnt_iter(lcore=0, iter=35) completed, 4253 references processed
test_refcnt_iter(lcore=0, iter=36) completed, 3681 references processed
test_refcnt_iter(lcore=0, iter=37) completed, 4035 references processed
test_refcnt_iter(lcore=0, iter=38) completed, 3910 references processed
test_refcnt_iter(lcore=0, iter=39) completed, 3985 references processed
test_refcnt_iter(lcore=0, iter=40) completed, 4080 references processed
test_refcnt_iter(lcore=0, iter=41) completed, 4344 references processed
test_refcnt_iter(lcore=0, iter=42) completed, 3226 references processed
test_refcnt_iter(lcore=0, iter=43) completed, 4410 references processed
test_refcnt_iter(lcore=0, iter=44) completed, 4147 references processed
test_refcnt_iter(lcore=0, iter=45) completed, 4154 references processed
test_refcnt_iter(lcore=0, iter=46) completed, 4070 references processed
test_refcnt_iter(lcore=0, iter=47) completed, 4319 references processed
test_refcnt_iter(lcore=0, iter=48) completed, 4105 references processed
test_refcnt_iter(lcore=0, iter=49) completed, 4095 references processed
test_refcnt_iter(lcore=0, iter=50) completed, 3815 references processed
test_refcnt_iter(lcore=0, iter=51) completed, 4445 references processed
test_refcnt_iter(lcore=0, iter=52) completed, 4017 references processed
test_refcnt_iter(lcore=0, iter=53) completed, 3749 references processed
test_refcnt_iter(lcore=0, iter=54) completed, 4081 references processed
test_refcnt_iter(lcore=0, iter=55) completed, 3775 references processed
test_refcnt_iter(lcore=0, iter=56) completed, 4100 references processed
test_refcnt_iter(lcore=0, iter=57) completed, 4046 references processed
test_refcnt_iter(lcore=0, iter=58) completed, 4025 references processed
test_refcnt_iter(lcore=0, iter=59) completed, 4109 references processed
test_refcnt_iter(lcore=0, iter=60) completed, 3566 references processed
test_refcnt_iter(lcore=0, iter=61) completed, 3549 references processed
test_refcnt_iter(lcore=0, iter=62) completed, 3955 references processed
test_refcnt_iter(lcore=0, iter=63) completed, 3163 references processed
test_refcnt_main finished at lcore 0
test_refcnt_worker finished at lcore 4, number of freed mbufs: 16681
test_refcnt_worker finished at lcore 2, number of freed mbufs: 16904
test_refcnt_worker finished at lcore 12, number of freed mbufs: 17564
test_refcnt_worker finished at lcore 15, number of freed mbufs: 17510
test_refcnt_worker finished at lcore 5, number of freed mbufs: 16895
test_refcnt_worker finished at lcore 9, number of freed mbufs: 17524
test_refcnt_worker finished at lcore 8, number of freed mbufs: 17479
test_refcnt_worker finished at lcore 7, number of freed mbufs: 16876
test_refcnt_worker finished at lcore 11, number of freed mbufs: 17484
test_refcnt_worker finished at lcore 14, number of freed mbufs: 17514
test_refcnt_worker finished at lcore 10, number of freed mbufs: 17494
test_refcnt_worker finished at lcore 3, number of freed mbufs: 16865
test_refcnt_worker finished at lcore 6, number of freed mbufs: 16916
test_refcnt_worker finished at lcore 13, number of freed mbufs: 17535
test_refcnt_worker finished at lcore 1, number of freed mbufs: 16902
mempool <refcnt_pool>@0x7f72b182ae40
  flags=10
  socket_id=-1
  pool=0x7f72b182a780
  iova=0x11b82ae40
  nb_mem_chunks=1
  size=64
  populated_size=64
  header_size=64
  elt_size=128
  trailer_size=0
  total_obj_size=192
  private_data_size=64
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=195.000000
  internal cache infos:
    cache_size=0
  common_pool_count=64
  no statistics available
ring <refcnt_mbuf_ring>@0x7f72b18172c0
  flags=1
  size=8192
  capacity=8191
  ct=258143
  ch=258143
  pt=258143
  ph=258143
  used=0
  avail=8191
Checking rte_mbuf_sanity_check for failure conditions
Checking good mbuf initially
references processed
test_refcnt_iter(lcore=0, iter=47) completed, 4319 references processed
test_refcnt_iter(lcore=0, iter=48) completed, 4105 references processed
test_refcnt_iter(lcore=0, iter=49) completed, 4095 references processed
test_refcnt_iter(lcore=0, iter=50) completed, 3815 references processed
test_refcnt_iter(lcore=0, iter=51) completed, 4445 references processed
test_refcnt_iter(lcore=0, iter=52) completed, 4017 references processed
test_refcnt_iter(lcore=0, iter=53) completed, 3749 references processed
test_refcnt_iter(lcore=0, iter=54) completed, 4081 references processed
test_refcnt_iter(lcore=0, iter=55) completed, 3775 references processed
test_refcnt_iter(lcore=0, iter=56) completed, 4100 references processed
test_refcnt_iter(lcore=0, iter=57) completed, 4046 references processed
test_refcnt_iter(lcore=0, iter=58) completed, 4025 references processed
test_refcnt_iter(lcore=0, iter=59) completed, 4109 references processed
test_refcnt_iter(lcore=0, iter=60) completed, 3566 references processed
test_refcnt_iter(lcore=0, iter=61) completed, 3549 references processed
test_refcnt_iter(lcore=0, iter=62) completed, 3955 references processed
test_refcnt_iter(lcore=0, iter=63) completed, 3163 references processed
test_refcnt_main finished at lcore 0
test_refcnt_worker finished at lcore 4, number of freed mbufs: 16681
test_refcnt_worker finished at lcore 2, number of freed mbufs: 16904
test_refcnt_worker finished at lcore 12, number of freed mbufs: 17564
test_refcnt_worker finished at lcore 15, number of freed mbufs: 17510
test_refcnt_worker finished at lcore 5, number of freed mbufs: 16895
test_refcnt_worker finished at lcore 9, number of freed mbufs: 17524
test_refcnt_worker finished at lcore 8, number of freed mbufs: 17479
test_refcnt_worker finished at lcore 7, number of freed mbufs: 16876
test_refcnt_worker finished at lcore 11, number of freed mbufs: 17484
test_refcnt_worker finished at lcore 14, number of freed mbufs: 17514
test_refcnt_worker finished at lcore 10, number of freed mbufs: 17494
test_refcnt_worker finished at lcore 3, number of freed mbufs: 16865
test_refcnt_worker finished at lcore 6, number of freed mbufs: 16916
test_refcnt_worker finished at lcore 13, number of freed mbufs: 17535
test_refcnt_worker finished at lcore 1, number of freed mbufs: 16902
mempool <refcnt_pool>@0x7f72b182ae40
  flags=10
  socket_id=-1
  pool=0x7f72b182a780
  iova=0x11b82ae40
  nb_mem_chunks=1
  size=64
  populated_size=64
  header_size=64
  elt_size=128
  trailer_size=0
  total_obj_size=192
  private_data_size=64
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=195.000000
  internal cache infos:
    cache_size=0
  common_pool_count=64
  no statistics available
ring <refcnt_mbuf_ring>@0x7f72b18172c0
  flags=1
  size=8192
  capacity=8191
  ct=258143
  ch=258143
  pt=258143
  ph=258143
  used=0
  avail=8191
Checking rte_mbuf_sanity_check for failure conditions
Checking good mbuf initially
Now checking for error conditions
Test mbuf linearize API
test_tx_offload started, tx_offload = {
	l2_len=0x6c,
	l3_len=0x162,
	l4_len=0xe7,
	tso_segsz=0xc5e0,
	outer_l3_len=0x162,
	outer_l2_len=0x6c,
};
test_tx_offload set tx_offload by bit-fields: 65536 iterations, 2732656 cycles, 41.697021 cycles/iter
test_tx_offload set raw tx_offload: 65536 iterations, 905050 cycles, 13.809967 cycles/iter
test_tx_offload finished
expected tx_offload value: 0xd962c5e0e7b16c;
rte_mbuf_tx_offload value: 0xd962c5e0e7b16c;
dump mbuf at 0x7f72b1862740, iova=0x11b8627c0, buf_len=2048
  pkt_len=64, ol_flags=0, nb_segs=1, port=65535, ptype=0
  segment at 0x7f72b1862740, data=0x7f72b1862832, len=64, off=114, refcnt=1
  Dump data at [0x7f72b1862832], len=64
00000000: DE DE DE DE DE DE DE DE DE DE DE DE DE DE CC CC | ................
00000010: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC | ................
00000020: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC | ................
00000030: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC | ................
dump mbuf at 0x7f72b1862740, iova=0x11b8627c0, buf_len=2048
  pkt_len=300, ol_flags=0, nb_segs=3, port=65535, ptype=0
  segment at 0x7f72b1862740, data=0x7f72b1862840, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1862840], len=100
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63                                     | `abc
  segment at 0x7f72b1839fc0, data=0x7f72b183a0c0, len=100, off=128, refcnt=1
  Dump data at [0x7f72b183a0c0], len=100
00000000: 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F 70 71 72 73 | defghijklmnopqrs
00000010: 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F 80 81 82 83 | tuvwxyz{|}~.....
00000020: 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F 90 91 92 93 | ................
00000030: 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 | ................
00000040: A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF B0 B1 B2 B3 | ................
00000050: B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF C0 C1 C2 C3 | ................
00000060: C4 C5 C6 C7                                     | ....
  segment at 0x7f72b1838e40, data=0x7f72b1838f40, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1838f40], len=100
00000000: C8 C9 CA CB CC CD CE CF D0 D1 D2 D3 D4 D5 D6 D7 | ................
00000010: D8 D9 DA DB DC DD DE DF E0 E1 E2 E3 E4 E5 E6 E7 | ................
00000020: E8 E9 EA EB EC ED EE EF F0 F1 F2 F3 F4 F5 F6 F7 | ................
00000030: F8 F9 FA FB FC FD FE FF 00 01 02 03 04 05 06 07 | ................
00000040: 08 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 | ................
00000050: 18 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 | ........ !"#$%&'
00000060: 28 29 2A 2B                                     | ()*+
dump mbuf at 0x7f72b1838e40, iova=0x11b838ec0, buf_len=2048
  pkt_len=375, ol_flags=0, nb_segs=3, port=65535, ptype=0
  segment at 0x7f72b1838e40, data=0x7f72b1838f40, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1838f40], len=100
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63                                     | `abc
  segment at 0x7f72b1839fc0, data=0x7f72b183a0c0, len=125, off=128, refcnt=1
  Dump data at [0x7f72b183a0c0], len=125
00000000: 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F 70 71 72 73 | defghijklmnopqrs
00000010: 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F 80 81 82 83 | tuvwxyz{|}~.....
00000020: 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F 90 91 92 93 | ................
00000030: 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 | ................
00000040: A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF B0 B1 B2 B3 | ................
00000050: B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF C0 C1 C2 C3 | ................
00000060: C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF D0 D1 D2 D3 | ................
00000070: D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF E0          | .............
  segment at 0x7f72b1862740, data=0x7f72b1862840, len=150, off=128, refcnt=1
  Dump data at [0x7f72b1862840], len=150
00000000: E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF F0 | ................
00000010: F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF 00 | ................
00000020: 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 10 | ................
00000030: 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F 20 | ............... 
00000040: 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F 30 | !"#$%&'()*+,-./0
00000050: 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F 40 | 123456789:;<=>?@
00000060: 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F 50 | ABCDEFGHIJKLMNOP
00000070: 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F 60 | QRSTUVWXYZ[\]^_`
00000080: 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F 70 | abcdefghijklmnop
00000090: 71 72 73 74 75 76                               | qrstuv
dump mbuf at 0x7f72b1862740, iova=0x11b8627c0, buf_len=2048
  pkt_len=200, ol_flags=0, nb_segs=2, port=65535, ptype=0
  segment at 0x7f72b1862740, data=0x7f72b1862840, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1862840], len=100
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63                                     | `abc
  segment at 0x7f72b1839fc0, data=0x7f72b183a0c0, len=100, off=128, refcnt=1
  Dump data at [0x7f72b183a0c0], len=100
00000000: 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F 70 71 72 73 | defghijklmnopqrs
00000010: 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F 80 81 82 83 | tuvwxyz{|}~.....
00000020: 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F 90 91 92 93 | ................
00000030: 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 | ................
00000040: A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF B0 B1 B2 B3 | ................
00000050: B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF C0 C1 C2 C3 | ................
00000060: C4 C5 C6 C7                                     | ....
dump mbuf at 0x7f72b1839fc0, iova=0x11b83a040, buf_len=2048
  pkt_len=314, ol_flags=0, nb_segs=2, port=65535, ptype=0
  segment at 0x7f72b1839fc0, data=0x7f72b183a0b2, len=114, off=114, refcnt=1
  Dump data at [0x7f72b183a0b2], len=114
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000070: 70 71                                           | pq
  segment at 0x7f72b1862740, data=0x7f72b1862840, len=200, off=128, refcnt=1
  Dump data at [0x7f72b1862840], len=200
00000000: 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F 80 81 | rstuvwxyz{|}~...
00000010: 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F 90 91 | ................
00000020: 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F A0 A1 | ................
00000030: A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF B0 B1 | ................
00000040: B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF C0 C1 | ................
00000050: C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF D0 D1 | ................
00000060: D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF E0 E1 | ................
00000070: E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF F0 F1 | ................
00000080: F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF 00 01 | ................
00000090: 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 10 11 | ................
000000A0: 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F 20 21 | .............. !
000000B0: 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F 30 31 | "#$%&'()*+,-./01
000000C0: 32 33 34 35 36 37 38 39                         | 23456789
dump mbuf at 0x7f72b1862740, iova=0x11b8627c0, buf_len=2048
  pkt_len=1100, ol_flags=0, nb_segs=2, port=65535, ptype=0
  segment at 0x7f72b1862740, data=0x7f72b1862840, len=1000, off=128, refcnt=1
  Dump data at [0x7f72b1862840], len=1000
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000070: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000080: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000090: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000000A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000000B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000000C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000000D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000000E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000000F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000100: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000110: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000120: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000130: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000140: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000150: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000160: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000170: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000180: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000190: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000001A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000001B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000001C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000001D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000001E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000001F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000200: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000210: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000220: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000230: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000240: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000250: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000260: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000270: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000280: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000290: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000002A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000002B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000002C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000002D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000002E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000002F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000300: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000310: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000320: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000330: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000340: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000350: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000360: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000370: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000380: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000390: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000003A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000003B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000003C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000003D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000003E0: E0 E1 E2 E3 E4 E5 E6 E7                         | ........
  segment at 0x7f72b1839fc0, data=0x7f72b183a0c0, len=100, off=128, refcnt=1
  Dump data at [0x7f72b183a0c0], len=100
00000000: E8 E9 EA EB EC ED EE EF F0 F1 F2 F3 F4 F5 F6 F7 | ................
00000010: F8 F9 FA FB FC FD FE FF 00 01 02 03 04 05 06 07 | ................
00000020: 08 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 | ................
00000030: 18 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 | ........ !"#$%&'
00000040: 28 29 2A 2B 2C 2D 2E 2F 30 31 32 33 34 35 36 37 | ()*+,-./01234567
00000050: 38 39 3A 3B 3C 3D 3E 3F 40 41 42 43 44 45 46 47 | 89:;<=>?@ABCDEFG
00000060: 48 49 4A 4B                                     | HIJK
dump mbuf at 0x7f72b1839fc0, iova=0x11b83a040, buf_len=2048
  pkt_len=1124, ol_flags=0, nb_segs=2, port=65535, ptype=0
  segment at 0x7f72b1839fc0, data=0x7f72b183a0c0, len=1024, off=128, refcnt=1
  Dump data at [0x7f72b183a0c0], len=1024
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000070: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000080: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000090: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000000A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000000B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000000C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000000D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000000E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000000F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000100: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000110: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000120: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000130: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000140: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000150: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000160: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000170: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000180: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000190: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000001A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000001B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000001C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000001D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000001E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000001F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000200: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000210: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000220: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000230: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000240: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000250: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000260: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000270: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000280: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000290: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000002A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000002B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000002C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000002D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000002E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000002F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000300: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000310: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000320: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000330: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000340: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000350: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000360: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000370: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000380: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000390: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000003A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000003B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000003C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000003D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000003E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000003F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
  segment at 0x7f72b1838e40, data=0x7f72b1838f40, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1838f40], len=100
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63                                     | `abc
dump mbuf at 0x7f72b1838e40, iova=0x11b838ec0, buf_len=2048
  pkt_len=2001, ol_flags=0, nb_segs=3, port=65535, ptype=0
  segment at 0x7f72b1838e40, data=0x7f72b1838f40, len=1000, off=128, refcnt=1
  Dump data at [0x7f72b1838f40], len=1000
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000070: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000080: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000090: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000000A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000000B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000000C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000000D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000000E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000000F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000100: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000110: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000120: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000130: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000140: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000150: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000160: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000170: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000180: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000190: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000001A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000001B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000001C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000001D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000001E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000001F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000200: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000210: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000220: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000230: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000240: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000250: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000260: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000270: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000280: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000290: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000002A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000002B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000002C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000002D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000002E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000002F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000300: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000310: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000320: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000330: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000340: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000350: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000360: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000370: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000380: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000390: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000003A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000003B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000003C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000003D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000003E0: E0 E1 E2 E3 E4 E5 E6 E7                         | ........
  segment at 0x7f72b1839fc0, data=0x7f72b183a0c0, len=1, off=128, refcnt=1
  Dump data at [0x7f72b183a0c0], len=1
00000000: E8                                              | .
  segment at 0x7f72b1838580, data=0x7f72b1838680, len=1000, off=128, refcnt=1
  Dump data at [0x7f72b1838680], len=1000
00000000: E9 EA EB EC ED EE EF F0 F1 F2 F3 F4 F5 F6 F7 F8 | ................
00000010: F9 FA FB FC FD FE FF 00 01 02 03 04 05 06 07 08 | ................
00000020: 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 18 | ................
00000030: 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 28 | ....... !"#$%&'(
00000040: 29 2A 2B 2C 2D 2E 2F 30 31 32 33 34 35 36 37 38 | )*+,-./012345678
00000050: 39 3A 3B 3C 3D 3E 3F 40 41 42 43 44 45 46 47 48 | 9:;<=>?@ABCDEFGH
00000060: 49 4A 4B 4C 4D 4E 4F 50 51 52 53 54 55 56 57 58 | IJKLMNOPQRSTUVWX
00000070: 59 5A 5B 5C 5D 5E 5F 60 61 62 63 64 65 66 67 68 | YZ[\]^_`abcdefgh
00000080: 69 6A 6B 6C 6D 6E 6F 70 71 72 73 74 75 76 77 78 | ijklmnopqrstuvwx
00000090: 79 7A 7B 7C 7D 7E 7F 80 81 82 83 84 85 86 87 88 | yz{|}~..........
000000A0: 89 8A 8B 8C 8D 8E 8F 90 91 92 93 94 95 96 97 98 | ................
000000B0: 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 A4 A5 A6 A7 A8 | ................
000000C0: A9 AA AB AC AD AE AF B0 B1 B2 B3 B4 B5 B6 B7 B8 | ................
000000D0: B9 BA BB BC BD BE BF C0 C1 C2 C3 C4 C5 C6 C7 C8 | ................
000000E0: C9 CA CB CC CD CE CF D0 D1 D2 D3 D4 D5 D6 D7 D8 | ................
000000F0: D9 DA DB DC DD DE DF E0 E1 E2 E3 E4 E5 E6 E7 E8 | ................
00000100: E9 EA EB EC ED EE EF F0 F1 F2 F3 F4 F5 F6 F7 F8 | ................
00000110: F9 FA FB FC FD FE FF 00 01 02 03 04 05 06 07 08 | ................
00000120: 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 18 | ................
00000130: 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 28 | ....... !"#$%&'(
00000140: 29 2A 2B 2C 2D 2E 2F 30 31 32 33 34 35 36 37 38 | )*+,-./012345678
00000150: 39 3A 3B 3C 3D 3E 3F 40 41 42 43 44 45 46 47 48 | 9:;<=>?@ABCDEFGH
00000160: 49 4A 4B 4C 4D 4E 4F 50 51 52 53 54 55 56 57 58 | IJKLMNOPQRSTUVWX
00000170: 59 5A 5B 5C 5D 5E 5F 60 61 62 63 64 65 66 67 68 | YZ[\]^_`abcdefgh
00000180: 69 6A 6B 6C 6D 6E 6F 70 71 72 73 74 75 76 77 78 | ijklmnopqrstuvwx
00000190: 79 7A 7B 7C 7D 7E 7F 80 81 82 83 84 85 86 87 88 | yz{|}~..........
000001A0: 89 8A 8B 8C 8D 8E 8F 90 91 92 93 94 95 96 97 98 | ................
000001B0: 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 A4 A5 A6 A7 A8 | ................
000001C0: A9 AA AB AC AD AE AF B0 B1 B2 B3 B4 B5 B6 B7 B8 | ................
000001D0: B9 BA BB BC BD BE BF C0 C1 C2 C3 C4 C5 C6 C7 C8 | ................
000001E0: C9 CA CB CC CD CE CF D0 D1 D2 D3 D4 D5 D6 D7 D8 | ................
000001F0: D9 DA DB DC DD DE DF E0 E1 E2 E3 E4 E5 E6 E7 E8 | ................
00000200: E9 EA EB EC ED EE EF F0 F1 F2 F3 F4 F5 F6 F7 F8 | ................
00000210: F9 FA FB FC FD FE FF 00 01 02 03 04 05 06 07 08 | ................
00000220: 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 18 | ................
00000230: 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 28 | ....... !"#$%&'(
00000240: 29 2A 2B 2C 2D 2E 2F 30 31 32 33 34 35 36 37 38 | )*+,-./012345678
00000250: 39 3A 3B 3C 3D 3E 3F 40 41 42 43 44 45 46 47 48 | 9:;<=>?@ABCDEFGH
00000260: 49 4A 4B 4C 4D 4E 4F 50 51 52 53 54 55 56 57 58 | IJKLMNOPQRSTUVWX
00000270: 59 5A 5B 5C 5D 5E 5F 60 61 62 63 64 65 66 67 68 | YZ[\]^_`abcdefgh
00000280: 69 6A 6B 6C 6D 6E 6F 70 71 72 73 74 75 76 77 78 | ijklmnopqrstuvwx
00000290: 79 7A 7B 7C 7D 7E 7F 80 81 82 83 84 85 86 87 88 | yz{|}~..........
000002A0: 89 8A 8B 8C 8D 8E 8F 90 91 92 93 94 95 96 97 98 | ................
000002B0: 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 A4 A5 A6 A7 A8 | ................
000002C0: A9 AA AB AC AD AE AF B0 B1 B2 B3 B4 B5 B6 B7 B8 | ................
000002D0: B9 BA BB BC BD BE BF C0 C1 C2 C3 C4 C5 C6 C7 C8 | ................
000002E0: C9 CA CB CC CD CE CF D0 D1 D2 D3 D4 D5 D6 D7 D8 | ................
000002F0: D9 DA DB DC DD DE DF E0 E1 E2 E3 E4 E5 E6 E7 E8 | ................
00000300: E9 EA EB EC ED EE EF F0 F1 F2 F3 F4 F5 F6 F7 F8 | ................
00000310: F9 FA FB FC FD FE FF 00 01 02 03 04 05 06 07 08 | ................
00000320: 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 18 | ................
00000330: 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 28 | ....... !"#$%&'(
00000340: 29 2A 2B 2C 2D 2E 2F 30 31 32 33 34 35 36 37 38 | )*+,-./012345678
00000350: 39 3A 3B 3C 3D 3E 3F 40 41 42 43 44 45 46 47 48 | 9:;<=>?@ABCDEFGH
00000360: 49 4A 4B 4C 4D 4E 4F 50 51 52 53 54 55 56 57 58 | IJKLMNOPQRSTUVWX
00000370: 59 5A 5B 5C 5D 5E 5F 60 61 62 63 64 65 66 67 68 | YZ[\]^_`abcdefgh
00000380: 69 6A 6B 6C 6D 6E 6F 70 71 72 73 74 75 76 77 78 | ijklmnopqrstuvwx
00000390: 79 7A 7B 7C 7D 7E 7F 80 81 82 83 84 85 86 87 88 | yz{|}~..........
000003A0: 89 8A 8B 8C 8D 8E 8F 90 91 92 93 94 95 96 97 98 | ................
000003B0: 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 A4 A5 A6 A7 A8 | ................
000003C0: A9 AA AB AC AD AE AF B0 B1 B2 B3 B4 B5 B6 B7 B8 | ................
000003D0: B9 BA BB BC BD BE BF C0 C1 C2 C3 C4 C5 C6 C7 C8 | ................
000003E0: C9 CA CB CC CD CE CF D0                         | ........
External buffer freed via callback
Test mbuf pool with external pinned data buffers
dump mbuf at 0x7f72b1a35980, iova=0x11b64de80, buf_len=2048
  pkt_len=1464, ol_flags=0x2000000000000000, nb_segs=1, port=65535, ptype=0
  segment at 0x7f72b1a35980, data=0x7f72b1a4df00, len=1464, off=128, refcnt=1
  Dump data at [0x7f72b1a4df00], len=1464
00000000: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000010: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000020: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000030: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000040: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000050: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000060: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000070: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000080: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000090: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000000A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000000B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000000C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000000D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000000E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000000F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000100: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000110: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000120: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000130: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000140: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000150: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000160: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000170: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000180: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000190: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000001A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000001B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000001C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000001D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000001E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000001F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000200: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000210: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000220: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000230: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000240: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000250: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000260: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000270: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000280: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000290: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000002A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000002B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000002C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000002D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000002E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000002F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000300: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000310: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000320: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000330: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000340: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000350: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000360: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000370: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000380: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000390: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000003A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000003B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000003C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000003D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000003E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000003F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000400: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000410: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000420: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000430: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000440: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000450: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000460: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000470: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000480: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000490: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000004A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000004B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000004C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000004D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000004E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000004F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000500: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000510: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000520: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000530: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000540: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000550: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000560: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000570: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000580: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
00000590: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000005A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | ................
000005B0: FF FF FF FF FF FF FF FF                         | ........
testclone_testupdate_testdetach ok
test_pktmbuf_copy ok
Checking rte_mbuf_sanity_check for failure conditions
Checking good mbuf initially
testclone_testupdate_testdetach ok
test_pktmbuf_copy ok
Checking rte_mbuf_sanity_check for failure conditions
Checking good mbuf initially
Now checking for error conditions
Test mbuf linearize API
dump mbuf at 0x7f72b1a39580, iova=0x11b665e80, buf_len=2048
  pkt_len=64, ol_flags=0x2000000000000000, nb_segs=1, port=65535, ptype=0
  segment at 0x7f72b1a39580, data=0x7f72b1a65ef2, len=64, off=114, refcnt=1
  Dump data at [0x7f72b1a65ef2], len=64
00000000: DE DE DE DE DE DE DE DE DE DE DE DE DE DE CC CC | ................
00000010: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC | ................
00000020: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC | ................
00000030: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC | ................
dump mbuf at 0x7f72b1a39580, iova=0x11b665e80, buf_len=2048
  pkt_len=300, ol_flags=0x2000000000000000, nb_segs=3, port=65535, ptype=0
  segment at 0x7f72b1a39580, data=0x7f72b1a65f00, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1a65f00], len=100
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63                                     | `abc
  segment at 0x7f72b1a33400, data=0x7f72b1a3ef00, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1a3ef00], len=100
00000000: 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F 70 71 72 73 | defghijklmnopqrs
00000010: 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F 80 81 82 83 | tuvwxyz{|}~.....
00000020: 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F 90 91 92 93 | ................
00000030: 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 | ................
00000040: A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF B0 B1 B2 B3 | ................
00000050: B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF C0 C1 C2 C3 | ................
00000060: C4 C5 C6 C7                                     | ....
  segment at 0x7f72b1a337c0, data=0x7f72b1a40700, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1a40700], len=100
00000000: C8 C9 CA CB CC CD CE CF D0 D1 D2 D3 D4 D5 D6 D7 | ................
00000010: D8 D9 DA DB DC DD DE DF E0 E1 E2 E3 E4 E5 E6 E7 | ................
00000020: E8 E9 EA EB EC ED EE EF F0 F1 F2 F3 F4 F5 F6 F7 | ................
00000030: F8 F9 FA FB FC FD FE FF 00 01 02 03 04 05 06 07 | ................
00000040: 08 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 | ................
00000050: 18 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 | ........ !"#$%&'
00000060: 28 29 2A 2B                                     | ()*+
dump mbuf at 0x7f72b1a337c0, iova=0x11b640680, buf_len=2048
  pkt_len=375, ol_flags=0x2000000000000000, nb_segs=3, port=65535, ptype=0
  segment at 0x7f72b1a337c0, data=0x7f72b1a40700, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1a40700], len=100
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63                                     | `abc
  segment at 0x7f72b1a33400, data=0x7f72b1a3ef00, len=125, off=128, refcnt=1
  Dump data at [0x7f72b1a3ef00], len=125
00000000: 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F 70 71 72 73 | defghijklmnopqrs
00000010: 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F 80 81 82 83 | tuvwxyz{|}~.....
00000020: 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F 90 91 92 93 | ................
00000030: 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 | ................
00000040: A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF B0 B1 B2 B3 | ................
00000050: B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF C0 C1 C2 C3 | ................
00000060: C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF D0 D1 D2 D3 | ................
00000070: D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF E0          | .............
  segment at 0x7f72b1a39580, data=0x7f72b1a65f00, len=150, off=128, refcnt=1
  Dump data at [0x7f72b1a65f00], len=150
00000000: E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF F0 | ................
00000010: F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF 00 | ................
00000020: 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 10 | ................
00000030: 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F 20 | ............... 
00000040: 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F 30 | !"#$%&'()*+,-./0
00000050: 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F 40 | 123456789:;<=>?@
00000060: 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F 50 | ABCDEFGHIJKLMNOP
00000070: 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F 60 | QRSTUVWXYZ[\]^_`
00000080: 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F 70 | abcdefghijklmnop
00000090: 71 72 73 74 75 76                               | qrstuv
dump mbuf at 0x7f72b1a39580, iova=0x11b665e80, buf_len=2048
  pkt_len=200, ol_flags=0x2000000000000000, nb_segs=2, port=65535, ptype=0
  segment at 0x7f72b1a39580, data=0x7f72b1a65f00, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1a65f00], len=100
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63                                     | `abc
  segment at 0x7f72b1a33400, data=0x7f72b1a3ef00, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1a3ef00], len=100
00000000: 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F 70 71 72 73 | defghijklmnopqrs
00000010: 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F 80 81 82 83 | tuvwxyz{|}~.....
00000020: 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F 90 91 92 93 | ................
00000030: 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 | ................
00000040: A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF B0 B1 B2 B3 | ................
00000050: B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF C0 C1 C2 C3 | ................
00000060: C4 C5 C6 C7                                     | ....
dump mbuf at 0x7f72b1a33400, iova=0x11b63ee80, buf_len=2048
  pkt_len=314, ol_flags=0x2000000000000000, nb_segs=2, port=65535, ptype=0
  segment at 0x7f72b1a33400, data=0x7f72b1a3eef2, len=114, off=114, refcnt=1
  Dump data at [0x7f72b1a3eef2], len=114
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000070: 70 71                                           | pq
  segment at 0x7f72b1a39580, data=0x7f72b1a65f00, len=200, off=128, refcnt=1
  Dump data at [0x7f72b1a65f00], len=200
00000000: 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F 80 81 | rstuvwxyz{|}~...
00000010: 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F 90 91 | ................
00000020: 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F A0 A1 | ................
00000030: A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF B0 B1 | ................
00000040: B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF C0 C1 | ................
00000050: C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF D0 D1 | ................
00000060: D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF E0 E1 | ................
00000070: E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF F0 F1 | ................
00000080: F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF 00 01 | ................
00000090: 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 10 11 | ................
000000A0: 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F 20 21 | .............. !
000000B0: 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F 30 31 | "#$%&'()*+,-./01
000000C0: 32 33 34 35 36 37 38 39                         | 23456789
dump mbuf at 0x7f72b1a39580, iova=0x11b665e80, buf_len=2048
  pkt_len=1100, ol_flags=0x2000000000000000, nb_segs=2, port=65535, ptype=0
  segment at 0x7f72b1a39580, data=0x7f72b1a65f00, len=1000, off=128, refcnt=1
  Dump data at [0x7f72b1a65f00], len=1000
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000070: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000080: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000090: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000000A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000000B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000000C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000000D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000000E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000000F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000100: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000110: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000120: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000130: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000140: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000150: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000160: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000170: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000180: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000190: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000001A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000001B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000001C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000001D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000001E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000001F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000200: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000210: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000220: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000230: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000240: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000250: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000260: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000270: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000280: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000290: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000002A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000002B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000002C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000002D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000002E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000002F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000300: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000310: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000320: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000330: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000340: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000350: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000360: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000370: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000380: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000390: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000003A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000003B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000003C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000003D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000003E0: E0 E1 E2 E3 E4 E5 E6 E7                         | ........
  segment at 0x7f72b1a33400, data=0x7f72b1a3ef00, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1a3ef00], len=100
00000000: E8 E9 EA EB EC ED EE EF F0 F1 F2 F3 F4 F5 F6 F7 | ................
00000010: F8 F9 FA FB FC FD FE FF 00 01 02 03 04 05 06 07 | ................
00000020: 08 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 | ................
00000030: 18 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 | ........ !"#$%&'
00000040: 28 29 2A 2B 2C 2D 2E 2F 30 31 32 33 34 35 36 37 | ()*+,-./01234567
00000050: 38 39 3A 3B 3C 3D 3E 3F 40 41 42 43 44 45 46 47 | 89:;<=>?@ABCDEFG
00000060: 48 49 4A 4B                                     | HIJK
dump mbuf at 0x7f72b1a33400, iova=0x11b63ee80, buf_len=2048
  pkt_len=1124, ol_flags=0x2000000000000000, nb_segs=2, port=65535, ptype=0
  segment at 0x7f72b1a33400, data=0x7f72b1a3ef00, len=1024, off=128, refcnt=1
  Dump data at [0x7f72b1a3ef00], len=1024
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000070: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000080: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000090: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000000A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000000B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000000C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000000D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000000E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000000F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000100: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000110: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000120: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000130: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000140: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000150: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000160: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000170: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000180: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000190: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000001A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000001B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000001C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000001D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000001E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000001F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000200: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000210: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000220: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000230: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000240: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000250: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000260: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000270: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000280: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000290: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000002A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000002B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000002C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000002D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000002E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000002F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000300: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000310: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000320: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000330: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000340: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000350: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000360: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000370: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000380: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000390: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000003A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000003B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000003C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000003D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000003E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000003F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
  segment at 0x7f72b1a337c0, data=0x7f72b1a40700, len=100, off=128, refcnt=1
  Dump data at [0x7f72b1a40700], len=100
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63                                     | `abc
dump mbuf at 0x7f72b1a337c0, iova=0x11b640680, buf_len=2048
  pkt_len=2001, ol_flags=0x2000000000000000, nb_segs=3, port=65535, ptype=0
  segment at 0x7f72b1a337c0, data=0x7f72b1a40700, len=1000, off=128, refcnt=1
  Dump data at [0x7f72b1a40700], len=1000
00000000: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000010: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000020: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000030: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000040: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000050: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000060: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000070: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000080: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000090: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000000A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000000B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000000C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000000D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000000E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000000F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000100: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000110: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000120: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000130: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000140: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000150: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000160: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000170: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000180: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000190: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000001A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000001B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000001C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000001D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000001E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000001F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000200: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000210: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000220: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000230: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000240: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000250: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000260: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000270: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000280: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000290: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000002A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000002B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000002C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000002D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000002E0: E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF | ................
000002F0: F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 FA FB FC FD FE FF | ................
00000300: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | ................
00000310: 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F | ................
00000320: 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F |  !"#$%&'()*+,-./
00000330: 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F | 0123456789:;<=>?
00000340: 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F | @ABCDEFGHIJKLMNO
00000350: 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F | PQRSTUVWXYZ[\]^_
00000360: 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F | `abcdefghijklmno
00000370: 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F | pqrstuvwxyz{|}~.
00000380: 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D 8E 8F | ................
00000390: 90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F | ................
000003A0: A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF | ................
000003B0: B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF | ................
000003C0: C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF | ................
000003D0: D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF | ................
000003E0: E0 E1 E2 E3 E4 E5 E6 E7                         | ........
  segment at 0x7f72b1a33400, data=0x7f72b1a3ef00, len=1, off=128, refcnt=1
  Dump data at [0x7f72b1a3ef00], len=1
00000000: E8                                              | .
  segment at 0x7f72b1a33900, data=0x7f72b1a40f00, len=1000, off=128, refcnt=1
  Dump data at [0x7f72b1a40f00], len=1000
00000000: E9 EA EB EC ED EE EF F0 F1 F2 F3 F4 F5 F6 F7 F8 | ................
00000010: F9 FA FB FC FD FE FF 00 01 02 03 04 05 06 07 08 | ................
00000020: 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 18 | ................
00000030: 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 28 | ....... !"#$%&'(
00000040: 29 2A 2B 2C 2D 2E 2F 30 31 32 33 34 35 36 37 38 | )*+,-./012345678
00000050: 39 3A 3B 3C 3D 3E 3F 40 41 42 43 44 45 46 47 48 | 9:;<=>?@ABCDEFGH
00000060: 49 4A 4B 4C 4D 4E 4F 50 51 52 53 54 55 56 57 58 | IJKLMNOPQRSTUVWX
00000070: 59 5A 5B 5C 5D 5E 5F 60 61 62 63 64 65 66 67 68 | YZ[\]^_`abcdefgh
00000080: 69 6A 6B 6C 6D 6E 6F 70 71 72 73 74 75 76 77 78 | ijklmnopqrstuvwx
00000090: 79 7A 7B 7C 7D 7E 7F 80 81 82 83 84 85 86 87 88 | yz{|}~..........
000000A0: 89 8A 8B 8C 8D 8E 8F 90 91 92 93 94 95 96 97 98 | ................
000000B0: 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 A4 A5 A6 A7 A8 | ................
000000C0: A9 AA AB AC AD AE AF B0 B1 B2 B3 B4 B5 B6 B7 B8 | ................
000000D0: B9 BA BB BC BD BE BF C0 C1 C2 C3 C4 C5 C6 C7 C8 | ................
000000E0: C9 CA CB CC CD CE CF D0 D1 D2 D3 D4 D5 D6 D7 D8 | ................
000000F0: D9 DA DB DC DD DE DF E0 E1 E2 E3 E4 E5 E6 E7 E8 | ................
00000100: E9 EA EB EC ED EE EF F0 F1 F2 F3 F4 F5 F6 F7 F8 | ................
00000110: F9 FA FB FC FD FE FF 00 01 02 03 04 05 06 07 08 | ................
00000120: 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 18 | ................
00000130: 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 28 | ....... !"#$%&'(
00000140: 29 2A 2B 2C 2D 2E 2F 30 31 32 33 34 35 36 37 38 | )*+,-./012345678
00000150: 39 3A 3B 3C 3D 3E 3F 40 41 42 43 44 45 46 47 48 | 9:;<=>?@ABCDEFGH
00000160: 49 4A 4B 4C 4D 4E 4F 50 51 52 53 54 55 56 57 58 | IJKLMNOPQRSTUVWX
00000170: 59 5A 5B 5C 5D 5E 5F 60 61 62 63 64 65 66 67 68 | YZ[\]^_`abcdefgh
00000180: 69 6A 6B 6C 6D 6E 6F 70 71 72 73 74 75 76 77 78 | ijklmnopqrstuvwx
00000190: 79 7A 7B 7C 7D 7E 7F 80 81 82 83 84 85 86 87 88 | yz{|}~..........
000001A0: 89 8A 8B 8C 8D 8E 8F 90 91 92 93 94 95 96 97 98 | ................
000001B0: 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 A4 A5 A6 A7 A8 | ................
000001C0: A9 AA AB AC AD AE AF B0 B1 B2 B3 B4 B5 B6 B7 B8 | ................
000001D0: B9 BA BB BC BD BE BF C0 C1 C2 C3 C4 C5 C6 C7 C8 | ................
000001E0: C9 CA CB CC CD CE CF D0 D1 D2 D3 D4 D5 D6 D7 D8 | ................
000001F0: D9 DA DB DC DD DE DF E0 E1 E2 E3 E4 E5 E6 E7 E8 | ................
00000200: E9 EA EB EC ED EE EF F0 F1 F2 F3 F4 F5 F6 F7 F8 | ................
00000210: F9 FA FB FC FD FE FF 00 01 02 03 04 05 06 07 08 | ................
00000220: 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 18 | ................
00000230: 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 28 | ....... !"#$%&'(
00000240: 29 2A 2B 2C 2D 2E 2F 30 31 32 33 34 35 36 37 38 | )*+,-./012345678
00000250: 39 3A 3B 3C 3D 3E 3F 40 41 42 43 44 45 46 47 48 | 9:;<=>?@ABCDEFGH
00000260: 49 4A 4B 4C 4D 4E 4F 50 51 52 53 54 55 56 57 58 | IJKLMNOPQRSTUVWX
00000270: 59 5A 5B 5C 5D 5E 5F 60 61 62 63 64 65 66 67 68 | YZ[\]^_`abcdefgh
00000280: 69 6A 6B 6C 6D 6E 6F 70 71 72 73 74 75 76 77 78 | ijklmnopqrstuvwx
00000290: 79 7A 7B 7C 7D 7E 7F 80 81 82 83 84 85 86 87 88 | yz{|}~..........
000002A0: 89 8A 8B 8C 8D 8E 8F 90 91 92 93 94 95 96 97 98 | ................
000002B0: 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 A4 A5 A6 A7 A8 | ................
000002C0: A9 AA AB AC AD AE AF B0 B1 B2 B3 B4 B5 B6 B7 B8 | ................
000002D0: B9 BA BB BC BD BE BF C0 C1 C2 C3 C4 C5 C6 C7 C8 | ................
000002E0: C9 CA CB CC CD CE CF D0 D1 D2 D3 D4 D5 D6 D7 D8 | ................
000002F0: D9 DA DB DC DD DE DF E0 E1 E2 E3 E4 E5 E6 E7 E8 | ................
00000300: E9 EA EB EC ED EE EF F0 F1 F2 F3 F4 F5 F6 F7 F8 | ................
00000310: F9 FA FB FC FD FE FF 00 01 02 03 04 05 06 07 08 | ................
00000320: 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 18 | ................
00000330: 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 28 | ....... !"#$%&'(
00000340: 29 2A 2B 2C 2D 2E 2F 30 31 32 33 34 35 36 37 38 | )*+,-./012345678
00000350: 39 3A 3B 3C 3D 3E 3F 40 41 42 43 44 45 46 47 48 | 9:;<=>?@ABCDEFGH
00000360: 49 4A 4B 4C 4D 4E 4F 50 51 52 53 54 55 56 57 58 | IJKLMNOPQRSTUVWX
00000370: 59 5A 5B 5C 5D 5E 5F 60 61 62 63 64 65 66 67 68 | YZ[\]^_`abcdefgh
00000380: 69 6A 6B 6C 6D 6E 6F 70 71 72 73 74 75 76 77 78 | ijklmnopqrstuvwx
00000390: 79 7A 7B 7C 7D 7E 7F 80 81 82 83 84 85 86 87 88 | yz{|}~..........
000003A0: 89 8A 8B 8C 8D 8E 8F 90 91 92 93 94 95 96 97 98 | ................
000003B0: 99 9A 9B 9C 9D 9E 9F A0 A1 A2 A3 A4 A5 A6 A7 A8 | ................
000003C0: A9 AA AB AC AD AE AF B0 B1 B2 B3 B4 B5 B6 B7 B8 | ................
000003D0: B9 BA BB BC BD BE BF C0 C1 C2 C3 C4 C5 C6 C7 C8 | ................
000003E0: C9 CA CB CC CD CE CF D0                         | ........
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f76b2e8c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/mbuf_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f76b2e32000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f76b2b7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f72b1600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f76b2b1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f6eb1400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f76b299f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f6ab1200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f76b293e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f66b1000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f76b169a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f62b0e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f76b1639000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f5eb0c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f72b159f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f5ab0a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f72b153e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f56b0800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
MBUF: Failed to get mbuf dyn shared memory
==1269==Running thread 1249 was not suspended. False leaks are possible.
==1269==Running thread 1250 was not suspended. False leaks are possible.
==1269==Running thread 1251 was not suspended. False leaks are possible.
==1269==Running thread 1252 was not suspended. False leaks are possible.
==1269==Running thread 1253 was not suspended. False leaks are possible.
==1269==Running thread 1254 was not suspended. False leaks are possible.
==1269==Running thread 1255 was not suspended. False leaks are possible.
==1269==Running thread 1256 was not suspended. False leaks are possible.
==1269==Running thread 1257 was not suspended. False leaks are possible.
==1269==Running thread 1258 was not suspended. False leaks are possible.
==1269==Running thread 1259 was not suspended. False leaks are possible.
==1269==Running thread 1260 was not suspended. False leaks are possible.
==1269==Running thread 1261 was not suspended. False leaks are possible.
==1269==Running thread 1262 was not suspended. False leaks are possible.
==1269==Running thread 1263 was not suspended. False leaks are possible.
==1269==Running thread 1264 was not suspended. False leaks are possible.
==1269==Running thread 1265 was not suspended. False leaks are possible.
==1269==Running thread 1266 was not suspended. False leaks are possible.
==1269==Running thread 1267 was not suspended. False leaks are possible.
PANIC in rte_mbuf_sanity_check():
mbuf is NULL
14: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5606adddcb6e]]
13: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f76b5cff0b3]]
12: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5606ad035838]]
11: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5606ae79c8a4]]
10: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5606ae7a5a79]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5606ae79c7b4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5606ae79f5a7]]
7: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5606adddcc7e]]
6: [/dpdk/build/app/test/dpdk-test(+0x14ec192) [0x5606ae014192]]
5: [/dpdk/build/app/test/dpdk-test(+0x14d670f) [0x5606adffe70f]]
4: [/dpdk/build/app/test/dpdk-test(+0x571931) [0x5606ad099931]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5606ad09a49d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5606ae8513cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f76b64a3d30]]
PANIC in rte_mbuf_sanity_check():
bad mbuf pool
14: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5606adddcb6e]]
13: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f76b5cff0b3]]
12: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5606ad035838]]
11: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5606ae79c8a4]]
10: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5606ae7a5a79]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5606ae79c7b4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5606ae79f5a7]]
7: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5606adddcc7e]]
6: [/dpdk/build/app/test/dpdk-test(+0x14ec192) [0x5606ae014192]]
5: [/dpdk/build/app/test/dpdk-test(+0x14d6792) [0x5606adffe792]]
4: [/dpdk/build/app/test/dpdk-test(+0x571931) [0x5606ad099931]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5606ad09a49d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5606ae8513cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f76b64a3d30]]
PANIC in rte_mbuf_sanity_check():
bad IO addr
14: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5606adddcb6e]]
13: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f76b5cff0b3]]
12: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5606ad035838]]
11: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5606ae79c8a4]]
10: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5606ae7a5a79]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5606ae79c7b4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5606ae79f5a7]]
7: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5606adddcc7e]]
6: [/dpdk/build/app/test/dpdk-test(+0x14ec192) [0x5606ae014192]]
5: [/dpdk/build/app/test/dpdk-test(+0x14d6792) [0x5606adffe792]]
4: [/dpdk/build/app/test/dpdk-test(+0x571931) [0x5606ad099931]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5606ad09a49d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5606ae8513cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f76b64a3d30]]
PANIC in rte_mbuf_sanity_check():
bad virt addr
14: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5606adddcb6e]]
13: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f76b5cff0b3]]
12: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5606ad035838]]
11: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5606ae79c8a4]]
10: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5606ae7a5a79]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5606ae79c7b4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5606ae79f5a7]]
7: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5606adddcc7e]]
6: [/dpdk/build/app/test/dpdk-test(+0x14ec192) [0x5606ae014192]]
5: [/dpdk/build/app/test/dpdk-test(+0x14d6792) [0x5606adffe792]]
4: [/dpdk/build/app/test/dpdk-test(+0x571931) [0x5606ad099931]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5606ad09a49d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5606ae8513cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f76b64a3d30]]
PANIC in rte_mbuf_sanity_check():
bad ref cnt
14: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5606adddcb6e]]
13: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f76b5cff0b3]]
12: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5606ad035838]]
11: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5606ae79c8a4]]
10: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5606ae7a5a79]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5606ae79c7b4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5606ae79f5a7]]
7: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5606adddcc7e]]
6: [/dpdk/build/app/test/dpdk-test(+0x14ec192) [0x5606ae014192]]
5: [/dpdk/build/app/test/dpdk-test(+0x14d6792) [0x5606adffe792]]
4: [/dpdk/build/app/test/dpdk-test(+0x571931) [0x5606ad099931]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5606ad09a49d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5606ae8513cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f76b64a3d30]]
PANIC in rte_mbuf_sanity_check():
bad ref cnt
14: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5606adddcb6e]]
13: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f76b5cff0b3]]
12: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5606ad035838]]
11: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5606ae79c8a4]]
10: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5606ae7a5a79]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5606ae79c7b4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5606ae79f5a7]]
7: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5606adddcc7e]]
6: [/dpdk/build/app/test/dpdk-test(+0x14ec192) [0x5606ae014192]]
5: [/dpdk/build/app/test/dpdk-test(+0x14d6792) [0x5606adffe792]]
4: [/dpdk/build/app/test/dpdk-test(+0x571931) [0x5606ad099931]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5606ad09a49d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5606ae8513cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f76b64a3d30]]
==1277==Running thread 1249 was not suspended. False leaks are possible.
==1277==Running thread 1250 was not suspended. False leaks are possible.
==1277==Running thread 1251 was not suspended. False leaks are possible.
==1277==Running thread 1252 was not suspended. False leaks are possible.
==1277==Running thread 1253 was not suspended. False leaks are possible.
==1277==Running thread 1254 was not suspended. False leaks are possible.
==1277==Running thread 1255 was not suspended. False leaks are possible.
==1277==Running thread 1256 was not suspended. False leaks are possible.
==1277==Running thread 1257 was not suspended. False leaks are possible.
==1277==Running thread 1258 was not suspended. False leaks are possible.
==1277==Running thread 1259 was not suspended. False leaks are possible.
==1277==Running thread 1260 was not suspended. False leaks are possible.
==1277==Running thread 1261 was not suspended. False leaks are possible.
==1277==Running thread 1262 was not suspended. False leaks are possible.
==1277==Running thread 1263 was not suspended. False leaks are possible.
==1277==Running thread 1264 was not suspended. False leaks are possible.
==1277==Running thread 1265 was not suspended. False leaks are possible.
==1277==Running thread 1266 was not suspended. False leaks are possible.
==1277==Running thread 1267 was not suspended. False leaks are possible.
PANIC in rte_mbuf_sanity_check():
mbuf is NULL
14: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5606adddcb6e]]
13: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f76b5cff0b3]]
12: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5606ad035838]]
11: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5606ae79c8a4]]
10: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5606ae7a5a79]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5606ae79c7b4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5606ae79f5a7]]
7: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5606adddcc7e]]
6: [/dpdk/build/app/test/dpdk-test(+0x14f096c) [0x5606ae01896c]]
5: [/dpdk/build/app/test/dpdk-test(+0x14d670f) [0x5606adffe70f]]
4: [/dpdk/build/app/test/dpdk-test(+0x571931) [0x5606ad099931]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5606ad09a49d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5606ae8513cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f76b64a3d30]]
PANIC in rte_mbuf_sanity_check():
bad mbuf pool
14: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5606adddcb6e]]
13: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f76b5cff0b3]]
12: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5606ad035838]]
11: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5606ae79c8a4]]
10: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5606ae7a5a79]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5606ae79c7b4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5606ae79f5a7]]
7: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5606adddcc7e]]
6: [/dpdk/build/app/test/dpdk-test(+0x14f096c) [0x5606ae01896c]]
5: [/dpdk/build/app/test/dpdk-test(+0x14d6792) [0x5606adffe792]]
4: [/dpdk/build/app/test/dpdk-test(+0x571931) [0x5606ad099931]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5606ad09a49d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5606ae8513cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f76b64a3d30]]
PANIC in rte_mbuf_sanity_check():
bad IO addr
14: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5606adddcb6e]]
13: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f76b5cff0b3]]
12: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5606ad035838]]
11: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5606ae79c8a4]]
10: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5606ae7a5a79]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5606ae79c7b4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5606ae79f5a7]]
7: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5606adddcc7e]]
6: [/dpdk/build/app/test/dpdk-test(+0x14f096c) [0x5606ae01896c]]
5: [/dpdk/build/app/test/dpdk-test(+0x14d6792) [0x5606adffe792]]
4: [/dpdk/build/app/test/dpdk-test(+0x571931) [0x5606ad099931]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5606ad09a49d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5606ae8513cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f76b64a3d30]]
PANIC in rte_mbuf_sanity_check():
bad virt addr
14: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5606adddcb6e]]
13: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f76b5cff0b3]]
12: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5606ad035838]]
11: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5606ae79c8a4]]
10: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5606ae7a5a79]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5606ae79c7b4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5606ae79f5a7]]
7: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5606adddcc7e]]
6: [/dpdk/build/app/test/dpdk-test(+0x14f096c) [0x5606ae01896c]]
5: [/dpdk/build/app/test/dpdk-test(+0x14d6792) [0x5606adffe792]]
4: [/dpdk/build/app/test/dpdk-test(+0x571931) [0x5606ad099931]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5606ad09a49d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5606ae8513cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f76b64a3d30]]
PANIC in rte_mbuf_sanity_check():
bad ref cnt
14: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5606adddcb6e]]
13: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f76b5cff0b3]]
12: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5606ad035838]]
11: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5606ae79c8a4]]
10: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5606ae7a5a79]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5606ae79c7b4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5606ae79f5a7]]
7: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5606adddcc7e]]
6: [/dpdk/build/app/test/dpdk-test(+0x14f096c) [0x5606ae01896c]]
5: [/dpdk/build/app/test/dpdk-test(+0x14d6792) [0x5606adffe792]]
4: [/dpdk/build/app/test/dpdk-test(+0x571931) [0x5606ad099931]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5606ad09a49d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5606ae8513cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f76b64a3d30]]
PANIC in rte_mbuf_sanity_check():
bad ref cnt
14: [/dpdk/build/app/test/dpdk-test(+0x12b4b6e) [0x5606adddcb6e]]
13: [/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f76b5cff0b3]]
12: [/dpdk/build/app/test/dpdk-test(+0x50d838) [0x5606ad035838]]
11: [/dpdk/build/app/test/dpdk-test(+0x1c748a4) [0x5606ae79c8a4]]
10: [/dpdk/build/app/test/dpdk-test(+0x1c7da79) [0x5606ae7a5a79]]
9: [/dpdk/build/app/test/dpdk-test(+0x1c747b4) [0x5606ae79c7b4]]
8: [/dpdk/build/app/test/dpdk-test(+0x1c775a7) [0x5606ae79f5a7]]
7: [/dpdk/build/app/test/dpdk-test(+0x12b4c7e) [0x5606adddcc7e]]
6: [/dpdk/build/app/test/dpdk-test(+0x14f096c) [0x5606ae01896c]]
5: [/dpdk/build/app/test/dpdk-test(+0x14d6792) [0x5606adffe792]]
4: [/dpdk/build/app/test/dpdk-test(+0x571931) [0x5606ad099931]]
3: [/dpdk/build/app/test/dpdk-test(+0x57249d) [0x5606ad09a49d]]
2: [/dpdk/build/app/test/dpdk-test(+0x1d293cd) [0x5606ae8513cd]]
1: [/lib/x86_64-linux-gnu/libasan.so.5(+0x6cd30) [0x7f76b64a3d30]]
------------------------------------------------------------------------------

 38/157 DPDK:fast-tests / mcslock_autotest                  OK                 8.80s
21:09:23 DPDK_TEST=mcslock_autotest MALLOC_PERTURB_=155 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=mcslock_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>mcslock_autotest
lcore 1 state: 0
lcore 2 state: 0
lcore 3 state: 0
lcore 4 state: 0
lcore 5 state: 0
lcore 6 state: 0
lcore 7 state: 0
lcore 8 state: 0
lcore 9 state: 0
lcore 10 state: 0
lcore 11 state: 0
lcore 12 state: 0
lcore 13 state: 0
lcore 14 state: 0
lcore 15 state: 0
lcore 1 state: 1
lcore 2 state: 1
lcore 3 state: 1
lcore 4 state: 1
lcore 5 state: 1
lcore 6 state: 1
lcore 7 state: 1
lcore 8 state: 1
lcore 9 state: 1
lcore 10 state: 1
lcore 11 state: 1
lcore 12 state: 1
lcore 13 state: 1
lcore 14 state: 1
lcore 15 state: 1
MCS lock taken on core 1
MCS lock released on core 1
MCS lock taken on core 2
MCS lock released on core 2
MCS lock taken on core 3
MCS lock released on core 3
MCS lock taken on core 4
MCS lock released on core 4
MCS lock taken on core 5
MCS lock released on core 5
MCS lock taken on core 6
MCS lock released on core 6
MCS lock taken on core 7
MCS lock released on core 7
MCS lock taken on core 8
MCS lock released on core 8
MCS lock taken on core 9
MCS lock released on core 9
MCS lock taken on core 10
MCS lock released on core 10
MCS lock taken on core 11
MCS lock released on core 11
MCS lock taken on core 12
MCS lock released on core 12
MCS lock taken on core 13
MCS lock released on core 13
MCS lock taken on core 14
MCS lock released on core 14
MCS lock taken on core 15
MCS lock released on core 15

Test with no lock on single core...
Core [0] Cost Time = 1938 us

Test with lock on single core...
Core [0] Cost Time = 13968 us

Test with lock on 16 cores...
Core [0] Cost Time = 8100678 us
Core [1] Cost Time = 8100686 us
Core [2] Cost Time = 8100679 us
Core [3] Cost Time = 8100690 us
Core [4] Cost Time = 8100706 us
Core [5] Cost Time = 8100718 us
Core [6] Cost Time = 8100700 us
Core [7] Cost Time = 8100680 us
Core [8] Cost Time = 8100676 us
Core [9] Cost Time = 8100676 us
Core [10] Cost Time = 8100676 us
Core [11] Cost Time = 8100679 us
Core [12] Cost Time = 8100675 us
Core [13] Cost Time = 8100681 us
Core [14] Cost Time = 8100675 us
Core [15] Cost Time = 8100676 us
Total Cost Time = 129610951 us
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fee39ea8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/mcslock_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fee39e4e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fee39b7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fea38600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fee39b1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fe638400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fee3999f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fe238200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fee3993e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fde38000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fee3869a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fda37e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fee38639000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fd637c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fea3859f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fd237a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fea3853e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fce37800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 39/157 DPDK:fast-tests / memcpy_autotest                   OK                 3.40s
21:09:31 DPDK_TEST=memcpy_autotest MALLOC_PERTURB_=172 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=memcpy_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>memcpy_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f848541e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/memcpy_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f84851a4000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f8485143000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f8083c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f8484f9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f7c83a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f8484f3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f7883800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f8483c9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f7483600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f8483c39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f7083400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f8083b9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f6c83200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f8083b3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f6883000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f8083add000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f6482e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 40/157 DPDK:fast-tests / memory_autotest                   OK                 0.40s
21:09:35 DPDK_TEST=memory_autotest MALLOC_PERTURB_=245 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=memory_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>memory_autotest
Dump memory layout
Segment 0-0: IOVA:0x11b800000, len:2097152, virt:0x7fb909800000, socket_id:0, hugepage_sz:2097152, nchannel:0, nrank:0 fd:80
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fbd0b046000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/memory_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fbd0adb2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fbd0ad51000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fb909800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fbd0ab9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb509600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fbd0ab3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fb109400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fbd0989a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fad09200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fbd09839000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fa909000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fb90979f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa508e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fb90973e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fa108c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fb9096dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9d08a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 41/157 DPDK:fast-tests / mempool_autotest                  OK                 0.85s
21:09:35 MALLOC_PERTURB_=139 DPDK_TEST=mempool_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=mempool_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>mempool_autotest
test_mempool ret = 273
Testing ring_mp_mc mempool handler
Walk into mempools:
	test_nocache
	test_cache
	test_stack_anon
	test_iter_obj
	test_stack
	default_pool
mempool <test_nocache>@0x7f5c6ce68cc0
  flags=10
  socket_id=-1
  pool=0x7f5c6ce48a00
  iova=0x11b868cc0
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=0
  common_pool_count=8447
  no statistics available
mempool <test_cache>@0x7f5c6e27df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e25dc80
  iova=0x11d27df40
  nb_mem_chunks=1
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=8447
  no statistics available
mempool <test_stack_anon>@0x7f5c6f67df40
  flags=10
  socket_id=-1
  pool=0x7f5c6f67d680
  iova=0x11e67df40
  nb_mem_chunks=273
  size=8447
  populated_size=273
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=0
  ops_name: <bucket>
  avg bytes/object=132.379306
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=273
  no statistics available
mempool <test_iter_obj>@0x7f5c6f87df40
  flags=10
  socket_id=-1
  pool=0x7f5c6f85dd40
  iova=0x11e87df40
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=8447
  no statistics available
mempool <test_stack>@0x7f5c70c7df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e4052c0
  iova=0x11c47df40
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=13
  ops_name: <stack>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=8447
  no statistics available
mempool <default_pool>@0x7f5c7207df40
  flags=10
  socket_id=-1
  pool=0x7f5c7205dd40
  iova=0x133c7df40
  nb_mem_chunks=2
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=8447
  no statistics available
mempool <test_nocache>@0x7f5c6ce68cc0
  flags=10
  socket_id=-1
  pool=0x7f5c6ce48a00
  iova=0x11b868cc0
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=0
  common_pool_count=8447
  no statistics available
get an object
mempool <test_nocache>@0x7f5c6ce68cc0
  flags=10
  socket_id=-1
  pool=0x7f5c6ce48a00
  iova=0x11b868cc0
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=0
  common_pool_count=8446
  no statistics available
get object count
get private data
get physical address of an object
put the object back
mempool <test_nocache>@0x7f5c6ce68cc0
  flags=10
  socket_id=-1
  pool=0x7f5c6ce48a00
  iova=0x11b868cc0
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=0
  common_pool_count=8447
  no statistics available
get 2 objects
mempool <test_nocache>@0x7f5c6ce68cc0
  flags=10
  socket_id=-1
  pool=0x7f5c6ce48a00
  iova=0x11b868cc0
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=0
  common_pool_count=8445
  no statistics available
put the objects back
mempool <test_nocache>@0x7f5c6ce68cc0
  flags=10
  socket_id=-1
  pool=0x7f5c6ce48a00
  iova=0x11b868cc0
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=0
  common_pool_count=8447
  no statistics available
mempool <test_cache>@0x7f5c6e27df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e25dc80
  iova=0x11d27df40
  nb_mem_chunks=1
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=8447
  no statistics available
get an object
mempool <test_cache>@0x7f5c6e27df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e25dc80
  iova=0x11d27df40
  nb_mem_chunks=1
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=512
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=512
  common_pool_count=7934
  no statistics available
get object count
get private data
get physical address of an object
put the object back
mempool <test_cache>@0x7f5c6e27df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e25dc80
  iova=0x11d27df40
  nb_mem_chunks=1
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=513
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=513
  common_pool_count=7934
  no statistics available
get 2 objects
mempool <test_cache>@0x7f5c6e27df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e25dc80
  iova=0x11d27df40
  nb_mem_chunks=1
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=511
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=511
  common_pool_count=7934
  no statistics available
put the objects back
mempool <test_cache>@0x7f5c6e27df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e25dc80
  iova=0x11d27df40
  nb_mem_chunks=1
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=513
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=513
  common_pool_count=7934
  no statistics available
mempool <test_nocache>@0x7f5c6ce68cc0
  flags=10
  socket_id=-1
  pool=0x7f5c6ce48a00
  iova=0x11b868cc0
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=0
  common_pool_count=8447
  no statistics available
get an object
mempool <test_nocache>@0x7f5c6ce68cc0
  flags=10
  socket_id=-1
  pool=0x7f5c6ce48a00
  iova=0x11b868cc0
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=0
  common_pool_count=7934
  no statistics available
get object count
get private data
get physical address of an object
put the object back
mempool <test_nocache>@0x7f5c6ce68cc0
  flags=10
  socket_id=-1
  pool=0x7f5c6ce48a00
  iova=0x11b868cc0
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=0
  common_pool_count=7934
  no statistics available
get 2 objects
mempool <test_nocache>@0x7f5c6ce68cc0
  flags=10
  socket_id=-1
  pool=0x7f5c6ce48a00
  iova=0x11b868cc0
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=0
  common_pool_count=7934
  no statistics available
put the objects back
mempool <test_nocache>@0x7f5c6ce68cc0
  flags=10
  socket_id=-1
  pool=0x7f5c6ce48a00
  iova=0x11b868cc0
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=0
  common_pool_count=7934
  no statistics available
test_mempool_basic_ex now mempool (test_nocache) has 0 free entries
number: 8447
mempool name is test_mempool_sp_sc
mempool <test_stack>@0x7f5c70c7df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e4052c0
  iova=0x11c47df40
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=13
  ops_name: <stack>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=8447
  no statistics available
get an object
mempool <test_stack>@0x7f5c70c7df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e4052c0
  iova=0x11c47df40
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=13
  ops_name: <stack>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=7934
  no statistics available
get object count
get private data
get physical address of an object
put the object back
mempool <test_stack>@0x7f5c70c7df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e4052c0
  iova=0x11c47df40
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=13
  ops_name: <stack>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=7934
  no statistics available
get 2 objects
mempool <test_stack>@0x7f5c70c7df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e4052c0
  iova=0x11c47df40
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=13
  ops_name: <stack>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=7934
  no statistics available
put the objects back
mempool <test_stack>@0x7f5c70c7df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e4052c0
  iova=0x11c47df40
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=13
  ops_name: <stack>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=7934
  no statistics available
mempool <default_pool>@0x7f5c7207df40
  flags=10
  socket_id=-1
  pool=0x7f5c7205dd40
  iova=0x133c7df40
  nb_mem_chunks=2
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=8447
  no statistics available
get an object
mempool <default_pool>@0x7f5c7207df40
  flags=10
  socket_id=-1
  pool=0x7f5c7205dd40
  iova=0x133c7df40
  nb_mem_chunks=2
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=7934
  no statistics available
get object count
get private data
get physical address of an object
put the object back
mempool <default_pool>@0x7f5c7207df40
  flags=10
  socket_id=-1
  pool=0x7f5c7205dd40
  iova=0x133c7df40
  nb_mem_chunks=2
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=7934
  no statistics available
get 2 objects
mempool <default_pool>@0x7f5c7207df40
  flags=10
  socket_id=-1
  pool=0x7f5c7205dd40
  iova=0x133c7df40
  nb_mem_chunks=2
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=7934
  no statistics available
put the objects back
mempool <default_pool>@0x7f5c7207df40
  flags=10
  socket_id=-1
  pool=0x7f5c7205dd40
  iova=0x133c7df40
  nb_mem_chunks=2
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=7934
  no statistics available
mempool <test_nocache>@0x7f5c6ce68cc0
  flags=10
  socket_id=-1
  pool=0x7f5c6ce48a00
  iova=0x11b868cc0
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=0
  common_pool_count=8447
  no statistics available
mempool <test_cache>@0x7f5c6e27df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e25dc80
  iova=0x11d27df40
  nb_mem_chunks=1
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=767
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=767
  common_pool_count=7680
  no statistics available
mempool <test_stack_anon>@0x7f5c6f67df40
  flags=10
  socket_id=-1
  pool=0x7f5c6f67d680
  iova=0x11e67df40
  nb_mem_chunks=273
  size=8447
  populated_size=273
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=0
  ops_name: <bucket>
  avg bytes/object=132.379306
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=273
  no statistics available
mempool <test_iter_obj>@0x7f5c6f87df40
  flags=10
  socket_id=-1
  pool=0x7f5c6f85dd40
  iova=0x11e87df40
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=8447
  no statistics available
mempool <test_stack>@0x7f5c70c7df40
  flags=10
  socket_id=-1
  pool=0x7f5c6e4052c0
  iova=0x11c47df40
  nb_mem_chunks=8
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=13
  ops_name: <stack>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=8447
  no statistics available
mempool <default_pool>@0x7f5c7207df40
  flags=10
  socket_id=-1
  pool=0x7f5c7205dd40
  iova=0x133c7df40
  nb_mem_chunks=2
  size=8447
  populated_size=8447
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.189653
  internal cache infos:
    cache_size=512
    cache_count[0]=0
    cache_count[1]=0
    cache_count[2]=0
    cache_count[3]=0
    cache_count[4]=0
    cache_count[5]=0
    cache_count[6]=0
    cache_count[7]=0
    cache_count[8]=0
    cache_count[9]=0
    cache_count[10]=0
    cache_count[11]=0
    cache_count[12]=0
    cache_count[13]=0
    cache_count[14]=0
    cache_count[15]=0
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=0
  common_pool_count=8447
  no statistics available
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f606e678000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/mempool_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f606e61e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f606e37f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f5c6ce00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f606e31e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f586cc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f606e19f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f546ca00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f606e13e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f506c800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f606ce9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f4c6c600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f606ce39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f486c400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f5c6cd9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f446c200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f5c6cd3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f406c000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 42/157 DPDK:fast-tests / memzone_autotest                  OK                 0.41s
21:09:36 DPDK_TEST=memzone_autotest MALLOC_PERTURB_=208 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=memzone_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>memzone_autotest
test basic memzone API
Zone 0: name:<rte_timer_mz>, len:0x181040, virt:0x7fa4fda68ec0, socket_id:0, flags:0
physical segments used:
  addr: 0x7fa4fda00000 iova: 0x11b800000 len: 0x200000 pagesz: 0x200000
Zone 1: name:<MZ_TEST_testzone1>, len:0x80, virt:0x7fa4fda68dc0, socket_id:0, flags:0
physical segments used:
  addr: 0x7fa4fda00000 iova: 0x11b800000 len: 0x200000 pagesz: 0x200000
Zone 2: name:<MZ_TEST_testzone2>, len:0x400, virt:0x7fa4fda68940, socket_id:0, flags:0
physical segments used:
  addr: 0x7fa4fda00000 iova: 0x11b800000 len: 0x200000 pagesz: 0x200000
Zone 3: name:<MZ_TEST_testzone3>, len:0x400, virt:0x7f94fd3ffc00, socket_id:1, flags:0
physical segments used:
  addr: 0x7f94fd200000 iova: 0x232c00000 len: 0x200000 pagesz: 0x200000
Zone 4: name:<MZ_TEST_testzone4>, len:0x400, virt:0x7fa4fda684c0, socket_id:0, flags:0
physical segments used:
  addr: 0x7fa4fda00000 iova: 0x11b800000 len: 0x200000 pagesz: 0x200000
check alignments and lengths
check overlapping
check socket ID
test zone lookup
test duplcate zone name
test free memzone
test reserving memzone with bigger size than the maximum
test memzone_reserve flags
2MB Huge pages available
test alignment for memzone_reserve
check alignments and lengths
check overlapping
test boundary alignment for memzone_reserve
test invalid alignment for memzone_reserve
test reserving the largest size memzone possible
There is no space left!
test reserving the largest size aligned memzone possible
There is no space left for biggest 2048-aligned memzone!
check memzone cleanup
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fa8ff39b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/memzone_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fa8ff341000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fa8ff07f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fa4fda00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fa8ff01e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fa0fd800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fa8fee9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f9cfd600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fa8fee3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f98fd400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fa8fdb9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f94fd200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fa8fdb39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f90fd000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fa8fdad8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f8cfce00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fa8fda77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f88fcc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: memzone_reserve_aligned_thread_unsafe(): Invalid alignment: 100
------------------------------------------------------------------------------

 43/157 DPDK:fast-tests / meter_autotest                    OK                 0.39s
21:09:36 MALLOC_PERTURB_=107 DPDK_TEST=meter_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=meter_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>meter_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f0d85a0d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/meter_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f0d8578e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f0d8572d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f0984200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f0d8559f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f0584000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f0d8553e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f0183e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f0d8429a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7efd83c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f0d84239000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7ef983a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f098419f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7ef583800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f098413e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7ef183600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f09840dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7eed83400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 44/157 DPDK:fast-tests / multiprocess_autotest             TIMEOUT          600.11s   killed by signal 15 SIGTERM
21:09:37 DPDK_TEST=multiprocess_autotest MALLOC_PERTURB_=7 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=multiprocess_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>multiprocess_autotest
IN SECONDARY PROCESS
### Testing object creation - expect lots of mz reserve errors!
# Checked rte_memzone_reserve() OK
# Checked rte_ring_create() OK
# Checked rte_mempool_create() OK
# Checked rte_hash_create() OK
# Checked rte_fbk_hash_create() OK
# Checked rte_lpm_create() OK

Usage: /dpdk/build/app/test/dpdk-test [options]

EAL common options:
  -c COREMASK         Hexadecimal bitmask of cores to run on
  -l CORELIST         List of cores to run on
                      The argument format is <c1>[-c2][,c3[-c4],...]
                      where c1, c2, etc are core indexes between 0 and 128
  --lcores COREMAP    Map lcore set to physical cpu set
                      The argument format is
                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'
                      lcores and cpus list are grouped by '(' and ')'
                      Within the group, '-' is used for range separator,
                      ',' is used for single number separator.
                      '( )' can be omitted for single element group,
                      '@' can be omitted if cpus and lcores have the same value
  -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores
  --main-lcore ID     Core ID that is used as main
  --mbuf-pool-ops-name Pool ops name for mbuf to use
  -n CHANNELS         Number of memory channels
  -m MB               Memory to allocate (see also --socket-mem)
  -r RANKS            Force number of memory ranks (don't detect)
  -b, --block         Add a device to the blocked list.
                      Prevent EAL from using this device. The argument
                      format for PCI devices is <domain:bus:devid.func>.
  -a, --allow         Add a device to the allow list.
                      Only use the specified devices. The argument format
                      for PCI devices is <[domain:]bus:devid.func>.
                      This option can be present several times.
                      [NOTE: allow cannot be used with block option]
  --vdev              Add a virtual device.
                      The argument format is <driver><id>[,key=val,...]
                      (ex: --vdev=net_pcap0,iface=eth2).
  --iova-mode   Set IOVA mode. 'pa' for IOVA_PA
                      'va' for IOVA_VA
  -d LIB.so|DIR       Add a driver or driver directory
                      (can be used multiple times)
  --vmware-tsc-map    Use VMware TSC map instead of native RDTSC
  --proc-type         Type of this process (primary|secondary|auto)
  --syslog            Set syslog facility
  --log-level=<level> Set global log level
  --log-level=<type-match>:<level>
                      Set specific log level
  --log-level=help    Show log types and levels
  --trace=<regex-match>
                      Enable trace based on regular expression trace name.
                      By default, the trace is disabled.
		      User must specify this option to enable trace.
  --trace-dir=<directory path>
                      Specify trace directory for trace output.
                      By default, trace output will created at
                      $HOME directory and parameter must be
                      specified once only.
  --trace-bufsz=<int>
                      Specify maximum size of allocated memory
                      for trace output for each thread. Valid
                      unit can be either 'B|K|M' for 'Bytes',
                      'KBytes' and 'MBytes' respectively.
                      Default is 1MB and parameter must be
                      specified once only.
  --trace-mode=<o[verwrite] | d[iscard]>
                      Specify the mode of update of trace
                      output file. Either update on a file can
                      be wrapped or discarded when file size
                      reaches its maximum limit.
                      Default mode is 'overwrite' and parameter
                      must be specified once only.
  -v                  Display version information on startup
  -h, --help          This help
  --in-memory   Operate entirely in memory. This will
                      disable secondary process support
  --base-virtaddr     Base virtual address
  --telemetry   Enable telemetry support (on by default)
  --no-telemetry   Disable telemetry support
  --force-max-simd-bitwidth Force the max SIMD bitwidth

EAL options for DEBUG use only:
  --huge-unlink       Unlink hugepage files after init
  --no-huge           Use malloc instead of hugetlbfs
  --no-pci            Disable PCI
  --no-hpet           Disable HPET
  --no-shconf         No shared config (mmap'd files)

EAL Linux options:
  --socket-mem        Memory to allocate on sockets (comma separated values)
  --socket-limit      Limit memory allocation on sockets (comma separated values)
  --huge-dir          Directory where hugetlbfs is mounted
  --file-prefix       Prefix for hugepage filenames
  --create-uio-dev    Create /dev/uioX (usually done by hotplug)
  --vfio-intr         Interrupt mode for VFIO (legacy|msi|msix)
  --vfio-vf-token     VF token (UUID) shared between SR-IOV PF and VFs
  --legacy-mem        Legacy memory mode (no dynamic allocation, contiguous segments)
  --single-file-segments Put all hugepage memory in single files
  --match-allocations Free hugepages exactly as allocated

### Testing rte_mp_disable() reject:
# Checked rte_mp_disable() is refused
Test Failed
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f630c8d7000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/multiprocess_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f630c87d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f630c81c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f5f0b000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f630c57f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f5b0ae00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f630c51e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f570ac00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f630c39f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f530aa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f630c33e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f4f0a800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f630b09a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f4b0a600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f630b039000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f470a400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f5f0af9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f430a200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/multiprocess_autotest/mp_socket_1438_50fdc320a40ea
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL:   Invalid NUMA socket, default to 0
HASH: rte_hash_create has invalid parameters
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Auto-detected process type: SECONDARY
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/multiprocess_autotest/mp_socket_1444_50fdc50594726
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Cannot get a virtual area at requested address: 0x7f470a400000 (got 0x7f4314cfe000)
EAL: Cannot reserve 17179869184 bytes at [0x7f470a400000] - please use '--base-virtaddr' option
EAL: Cannot preallocate VA space for hugepage memory
EAL: FATAL: Cannot init memory
EAL: Cannot init memory
EAL: Cannot destroy local memory map
EAL: Could not release memory subsystem data
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Invalid process type specified
EAL: FATAL: Invalid 'command line' arguments.
EAL: Invalid 'command line' arguments.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Cannot open '/var/run/dpdk/ERROR/config' for rte_mem_config
EAL: FATAL: Cannot init config
EAL: Cannot init config
------------------------------------------------------------------------------

 45/157 DPDK:fast-tests / per_lcore_autotest                OK                 0.51s
21:19:37 MALLOC_PERTURB_=153 DPDK_TEST=per_lcore_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=per_lcore_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>per_lcore_autotest
on socket 0, on core 1, variable is 1
on socket 0, on core 3, variable is 3
on socket 0, on core 2, variable is 2
on socket 0, on core 4, variable is 4
on socket 0, on core 5, variable is 5
on socket 0, on core 6, variable is 6
on socket 0, on core 7, variable is 7
on socket 1, on core 8, variable is 8
on socket 1, on core 9, variable is 9
on socket 1, on core 10, variable is 10
on socket 1, on core 11, variable is 11
on socket 1, on core 12, variable is 12
on socket 1, on core 13, variable is 13
on socket 1, on core 14, variable is 14
on socket 1, on core 15, variable is 15
wait 100ms on lcore 1
wait 100ms on lcore 2
wait 100ms on lcore 3
wait 100ms on lcore 4
wait 100ms on lcore 5
wait 100ms on lcore 6
wait 100ms on lcore 7
wait 100ms on lcore 8
wait 100ms on lcore 9
wait 100ms on lcore 10
wait 100ms on lcore 11
wait 100ms on lcore 12
wait 100ms on lcore 13
wait 100ms on lcore 14
wait 100ms on lcore 15
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fe765b03000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/per_lcore_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fe765886000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fe765825000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fe364200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fe76569f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fdf64000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fe76563e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fdb63e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fe76439a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fd763c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fe764339000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fd363a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fe7642d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fcf63800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fe764277000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fcb63600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fe764216000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fc763400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 46/157 DPDK:fast-tests / pflock_autotest                   OK                 2.10s
21:19:37 MALLOC_PERTURB_=95 DPDK_TEST=pflock_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=pflock_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>pflock_autotest
Global write lock taken on core 1
Hello from core 1 !
Global write lock taken on core 2
Global read lock taken on core 1
Hello from core 2 !
Release global read lock on core 1
Global write lock taken on core 3
Global read lock taken on core 2
Hello from core 3 !
Release global read lock on core 2
Global write lock taken on core 4
Global read lock taken on core 3
Hello from core 4 !
Release global read lock on core 3
Global write lock taken on core 5
Global read lock taken on core 4
Hello from core 5 !
Release global read lock on core 4
Global write lock taken on core 6
Global read lock taken on core 5
Hello from core 6 !
Release global read lock on core 5
Global write lock taken on core 7
Global read lock taken on core 6
Hello from core 7 !
Release global read lock on core 6
Global write lock taken on core 8
Global read lock taken on core 7
Hello from core 8 !
Release global read lock on core 7
Global write lock taken on core 9
Global read lock taken on core 8
Hello from core 9 !
Release global read lock on core 8
Global write lock taken on core 10
Global read lock taken on core 9
Hello from core 10 !
Release global read lock on core 9
Global write lock taken on core 11
Global read lock taken on core 10
Hello from core 11 !
Release global read lock on core 10
Global write lock taken on core 12
Global read lock taken on core 11
Hello from core 12 !
Release global read lock on core 11
Global write lock taken on core 13
Global read lock taken on core 12
Hello from core 13 !
Release global read lock on core 12
Global write lock taken on core 14
Global read lock taken on core 13
Hello from core 14 !
Release global read lock on core 13
Global write lock taken on core 15
Global read lock taken on core 14
Hello from core 15 !
Global read lock taken on core 15
Release global read lock on core 14
Release global read lock on core 15
Global write lock taken on main core 0

Test with no lock on single core...
Core [0] Cost Time = 2 us

Test with phase-fair lock on single core...
Core [0] Cost Time = 360 us

Phase-fair test on 16 cores...
Core [0] cost time = 209002 us
Core [1] cost time = 208996 us
Core [2] cost time = 208991 us
Core [3] cost time = 209000 us
Core [4] cost time = 208995 us
Core [5] cost time = 209001 us
Core [6] cost time = 208992 us
Core [7] cost time = 208998 us
Core [8] cost time = 208756 us
Core [9] cost time = 208722 us
Core [10] cost time = 208909 us
Core [11] cost time = 208866 us
Core [12] cost time = 208760 us
Core [13] cost time = 208742 us
Core [14] cost time = 208847 us
Core [15] cost time = 208677 us
Total cost time = 3342254 us
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f86e33d9000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/pflock_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f86e337f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f86e331e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f82e1e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f86e319f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f7ee1c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f86e313e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f7ae1a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f86e1e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f76e1800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f86e1e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f72e1600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f82e1d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f6ee1400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f82e1d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f6ae1200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f82e1cdd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f66e1000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 47/157 DPDK:fast-tests / prefetch_autotest                 OK                 0.39s
21:19:40 DPDK_TEST=prefetch_autotest MALLOC_PERTURB_=94 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=prefetch_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>prefetch_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fbb6b503000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/prefetch_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fbb6b276000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fbb6b215000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fb769c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fbb6b09f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb369a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fbb6b03e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7faf69800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fbb69d9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fab69600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fbb69d39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fa769400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fbb69cd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa369200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fbb69c77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f9f69000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fbb69c16000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9b68e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 48/157 DPDK:fast-tests / rcu_qsbr_autotest                 OK                 0.61s
21:19:40 MALLOC_PERTURB_=208 DPDK_TEST=rcu_qsbr_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=rcu_qsbr_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>rcu_qsbr_autotest

Test rte_rcu_qsbr_thread_register()

Test rte_rcu_qsbr_init()

Test rte_rcu_qsbr_thread_register()

Test rte_rcu_qsbr_thread_unregister()

Test rte_rcu_qsbr_start()

Test rte_rcu_qsbr_check()

Test rte_rcu_qsbr_synchronize()

Test rte_rcu_qsbr_dump()

Quiescent State Variable @0x7f85bc466d80
  QS variable memory size = 8384
  Given # max threads = 128
  Current # threads = 0
  Registered thread IDs = 
  Token = 1
  Least Acknowledged Token = 0
Quiescent State Counts for readers:

Quiescent State Variable @0x7f85bc466d80
  QS variable memory size = 8384
  Given # max threads = 128
  Current # threads = 1
  Registered thread IDs = 1 
  Token = 1
  Least Acknowledged Token = 0
Quiescent State Counts for readers:
thread ID = 1, count = 0, lock count = 0

Quiescent State Variable @0x7f85bc464c40
  QS variable memory size = 8384
  Given # max threads = 128
  Current # threads = 14
  Registered thread IDs = 2 3 4 5 6 7 8 9 10 11 12 13 14 15 
  Token = 1
  Least Acknowledged Token = 0
Quiescent State Counts for readers:
thread ID = 2, count = 0, lock count = 0
thread ID = 3, count = 0, lock count = 0
thread ID = 4, count = 0, lock count = 0
thread ID = 5, count = 0, lock count = 0
thread ID = 6, count = 0, lock count = 0
thread ID = 7, count = 0, lock count = 0
thread ID = 8, count = 0, lock count = 0
thread ID = 9, count = 0, lock count = 0
thread ID = 10, count = 0, lock count = 0
thread ID = 11, count = 0, lock count = 0
thread ID = 12, count = 0, lock count = 0
thread ID = 13, count = 0, lock count = 0
thread ID = 14, count = 0, lock count = 0
thread ID = 15, count = 0, lock count = 0

Test rte_rcu_qsbr_thread_online()

Test rte_rcu_qsbr_thread_offline()

Test rte_rcu_qsbr_dq_create()

Test rte_rcu_qsbr_dq_reclaim()

Test rte_rcu_qsbr_dq_delete()

Test rte_rcu_qsbr_dq_enqueue()

Functional tests
Test: 1 writer, 1 QSBR variable, simultaneous QSBR queries
Test: 6 writers, 3 QSBR variable, simultaneous QSBR queries

Test rte_rcu_qsbr_dq_xxx functional tests()
Size = 1, esize = 8, flags = 0x0
max_entries = 1

Test rte_rcu_qsbr_dq_xxx functional tests()
Size = 2, esize = 8, flags = 0x1
max_entries = 3

Test rte_rcu_qsbr_dq_xxx functional tests()
Size = 303, esize = 16, flags = 0x0
max_entries = 511

Test rte_rcu_qsbr_dq_xxx functional tests()
Size = 7, esize = 128, flags = 0x1
max_entries = 7

Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f89bdde3000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rcu_qsbr_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f89bdd89000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f89bdd28000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f85bc400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f89bda7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f81bc200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f89bda1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f7dbc000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f89bd89f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f79bbe00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f89bd83e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f75bbc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f89bc59a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f71bba00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f89bc539000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f6dbb800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f89bc4d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f69bb600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
rte_rcu_qsbr_get_memsize(): Invalid max_threads 0
rte_rcu_qsbr_init(): Invalid input parameter
rte_rcu_qsbr_thread_register(): Invalid input parameter
rte_rcu_qsbr_thread_register(): Invalid input parameter
rte_rcu_qsbr_thread_register(): Invalid input parameter
rte_rcu_qsbr_thread_unregister(): Invalid input parameter
rte_rcu_qsbr_thread_unregister(): Invalid input parameter
rte_rcu_qsbr_thread_unregister(): Invalid input parameter
rte_rcu_qsbr_dump(): Invalid input parameter
rte_rcu_qsbr_dump(): Invalid input parameter
rte_rcu_qsbr_dump(): Invalid input parameter
rte_rcu_qsbr_dq_create(): Invalid input parameter
rte_rcu_qsbr_dq_create(): Invalid input parameter
rte_rcu_qsbr_dq_create(): Invalid input parameter
rte_rcu_qsbr_dq_create(): Invalid input parameter
rte_rcu_qsbr_dq_create(): Invalid input parameter
rte_rcu_qsbr_dq_create(): Invalid input parameter
rte_rcu_qsbr_dq_create(): Invalid input parameter
rte_rcu_qsbr_dq_create(): Invalid input parameter
rte_rcu_qsbr_dq_reclaim(): Invalid input parameter
rte_rcu_qsbr_dq_create(): Invalid input parameter
rte_rcu_qsbr_dq_reclaim(): Invalid input parameter
rte_rcu_qsbr_dq_enqueue(): Invalid input parameter
rte_rcu_qsbr_dq_enqueue(): Invalid input parameter
rte_rcu_qsbr_dq_enqueue(): Invalid input parameter
rte_rcu_qsbr_dq_enqueue(): Enqueue failed
rte_rcu_qsbr_dq_enqueue(): Enqueue failed
rte_rcu_qsbr_dq_enqueue(): Enqueue failed
rte_rcu_qsbr_dq_enqueue(): Enqueue failed
rte_rcu_qsbr_dq_enqueue(): Enqueue failed
rte_rcu_qsbr_dq_enqueue(): Enqueue failed
rte_rcu_qsbr_dq_enqueue(): Enqueue failed
rte_rcu_qsbr_dq_enqueue(): Enqueue failed
------------------------------------------------------------------------------

 49/157 DPDK:fast-tests / red_autotest                      OK                 0.94s
21:19:41 MALLOC_PERTURB_=122 DPDK_TEST=red_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=red_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>red_autotest

--------------------------------------------------------------------------------
functional test 1 : use one rte_red configuration,
		    increase average queue size to various levels,
		    compare drop rate to drop probability

                avg queue size enqueued       dropped        drop prob %    drop rate %    diff %         tolerance %    
                6              10000          0              0.0000         0.0000         0.0000         50.0000        
                12             10000          0              0.0000         0.0000         0.0000         50.0000        
                18             10000          0              0.0000         0.0000         0.0000         50.0000        
                24             10000          0              0.0000         0.0000         0.0000         50.0000        
                30             10000          0              0.0000         0.0000         0.0000         50.0000        
                36             9960           40             0.4167         0.4000         0.0000         50.0000        
                42             9894           106            1.0417         1.0600         0.0000         50.0000        
                48             9840           160            1.6667         1.6000         0.0000         50.0000        
                54             9767           233            2.2917         2.3300         0.0000         50.0000        
                60             9707           293            2.9167         2.9300         0.0000         50.0000        
                66             9658           342            3.5417         3.4200         0.0000         50.0000        
                72             9603           397            4.1667         3.9700         0.0000         50.0000        
                78             9522           478            4.7917         4.7800         0.0000         50.0000        
                84             9495           505            5.4167         5.0500         0.0000         50.0000        
                90             9412           588            6.0417         5.8800         0.0000         50.0000        
                96             9375           625            6.6667         6.2500         0.0000         50.0000        
                102            9236           764            7.2917         7.6400         0.0000         50.0000        
                108            9182           818            7.9167         8.1800         0.0000         50.0000        
                114            9150           850            8.5417         8.5000         0.0000         50.0000        
                120            9091           909            9.1667         9.0900         0.0000         50.0000        
                126            9004           996            9.7917         9.9600         0.0000         50.0000        
                132            0              10000          100.0000       100.0000       0.0000         50.0000        
                138            0              10000          100.0000       100.0000       0.0000         50.0000        
                144            0              10000          100.0000       100.0000       0.0000         50.0000        
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
functional test 2 : use several RED configurations,
		    increase average queue size to just below maximum threshold,
		    compare drop rate to drop probability

RED config     avg queue size min threshold  max threshold  drop prob %    drop rate %    diff %         tolerance %    
0              127            32             128            9.8958         9.9800         0.0000         50.0000        
1              127            32             128            4.9479         4.7900         0.0000         50.0000        
2              127            32             128            3.2986         2.5000         0.0000         50.0000        
3              127            32             128            2.4740         1.6800         0.0000         50.0000        
4              127            32             128            1.9792         1.2200         0.0000         50.0000        
5              127            32             128            1.6493         1.0400         0.0000         50.0000        
6              127            32             128            1.4137         0.8600         0.0000         50.0000        
7              127            32             128            1.2370         0.7300         0.0000         50.0000        
8              127            32             128            1.0995         0.6200         0.0000         50.0000        
9              127            32             128            0.9896         0.5500         0.0000         50.0000        
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
functional test 3 : use one RED configuration,
		    increase average queue size to target level,
		    dequeue all packets until queue is empty,
		    confirm that average queue size is computed correctly while queue is empty

q avg before   q avg after    expected       difference %   tolerance %    result	 
1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
functional test 5 : use several queues (each with its own run-time data),
		    use several RED configurations (such that each configuration is shared by multiple queues),
		    increase average queue size to just below maximum threshold,
		    compare drop rate to drop probability,
		    (this is a larger scale version of functional test 2)

queue          config         avg queue size min threshold  max threshold  drop prob %    drop rate %    diff %         tolerance %    
0              0              127            32             128            9.8958         9.9800         0.0000         50.0000        
1              0              127            32             128            9.8958         9.5600         0.0000         50.0000        
2              1              127            32             128            4.9479         4.8900         0.0000         50.0000        
3              1              127            32             128            4.9479         5.1200         0.0000         50.0000        
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
functional test 6 : use several queues (each with its own run-time data),
		    use several RED configurations (such that each configuration is sharte_red by multiple queues),
		    increase average queue size to target level,
		    dequeue all packets until queue is empty,
		    confirm that average queue size is computed correctly while queue is empty
		    (this is a larger scale version of functional test 3)

queue          config         q avg before   q avg after    expected       difference %   tolerance %    result	 
0              0              1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
1              0              1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
2              1              1022.0000      1022.0000      1010.1483      1.1733         5.0000         pass           
3              1              1022.0000      1022.0000      1010.1483      1.1733         5.0000         pass           
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
overflow test 1 : use one RED configuration,
		  increase average queue size to target level,
		  check maximum number of bits requirte_red to represent avg_s

avg queue size  wq_log2  fraction bits  max queue avg  num bits  enqueued  dropped   drop prob %  drop rate %  
1023            12       10             0xffc00000     32        0         941366    100.00       100.00       
-------------------------------------<pass>-------------------------------------
[total: 6, pass: 6]
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f1b67870000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/red_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f1b67816000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f1b6757f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f1766000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f1b6751e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f1365e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f1b6739f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f0f65c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f1b6733e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f0b65a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f1b6609a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f0765800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f1b66039000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f0365600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f1765f9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7eff65400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f1765f3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7efb65200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 50/157 DPDK:fast-tests / rib_autotest                      OK                 5.06s
21:19:41 DPDK_TEST=rib_autotest MALLOC_PERTURB_=116 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=rib_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>rib_autotest
 + ------------------------------------------------------- +
 + Test Suite : rib autotest
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_create_invalid succeeded
 + TestCase [ 1] : test_free_null succeeded
 + TestCase [ 2] : test_insert_invalid succeeded
 + TestCase [ 3] : test_get_fn succeeded
 + TestCase [ 4] : test_basic succeeded
 + TestCase [ 5] : test_tree_traversal succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : rib autotest
 + ------------------------------------------------------- +
 + Tests Total :        6
 + Tests Skipped :      0
 + Tests Executed :     6
 + Tests Unsupported:   0
 + Tests Passed :       6
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f74ba839000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rib_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f74ba5b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f74ba551000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f70b9000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f74ba39f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f6cb8e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f74ba33e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f68b8c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f74b909a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f64b8a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f74b9039000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f60b8800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f70b8f9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f5cb8600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f70b8f3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f58b8400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f70b8edd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f54b8200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
LPM: Can not allocate mempool for RIB test_create_invalid
------------------------------------------------------------------------------

 51/157 DPDK:fast-tests / rib6_autotest                     OK                 5.03s
21:19:47 MALLOC_PERTURB_=101 DPDK_TEST=rib6_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=rib6_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>rib6_autotest
 + ------------------------------------------------------- +
 + Test Suite : rib6 autotest
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_create_invalid succeeded
 + TestCase [ 1] : test_free_null succeeded
 + TestCase [ 2] : test_insert_invalid succeeded
 + TestCase [ 3] : test_get_fn succeeded
 + TestCase [ 4] : test_basic succeeded
 + TestCase [ 5] : test_tree_traversal succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : rib6 autotest
 + ------------------------------------------------------- +
 + Tests Total :        6
 + Tests Skipped :      0
 + Tests Executed :     6
 + Tests Unsupported:   0
 + Tests Passed :       6
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fe9a5d27000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rib6_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fe9a5aaa000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fe9a5a49000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fe5a4400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fe9a589f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fe1a4200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fe9a583e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fdda4000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fe9a459a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fd9a3e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fe9a4539000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fd5a3c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fe9a44d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fd1a3a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fe9a4477000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fcda3800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fe9a4416000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fc9a3600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
LPM: Can not allocate mempool for RIB6 test_create_invalid
------------------------------------------------------------------------------

 52/157 DPDK:fast-tests / ring_autotest                     OK                 0.42s
21:19:52 MALLOC_PERTURB_=71 DPDK_TEST=ring_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=ring_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>ring_autotest
4095 ring entries are now free
4095 ring entries are now free
4095 ring entries are now free
4095 ring entries are now free
4095 ring entries are now free

Test exact size ring: legacy APIs: 
Test exact size ring: elem APIs: element size 4B 
Test exact size ring: elem APIs: element size 8B 
Test exact size ring: elem APIs: element size 16B 
Test exact size ring: elem APIs: element size 20B 
MP/MC sync mode: legacy APIs: : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 2512;
test_ring_burst_bulk_tests1: iteration 0, random shift: 592;
test_ring_burst_bulk_tests1: iteration 0, random shift: 972;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2229;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2375;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1667;
test_ring_burst_bulk_tests1: iteration 0, random shift: 124;
test_ring_burst_bulk_tests1: iteration 0, random shift: 183;

MP/MC sync mode: elem APIs: element size 4B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 3138;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3377;
test_ring_burst_bulk_tests1: iteration 1, random shift: 759;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2088;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2177;
test_ring_burst_bulk_tests1: iteration 1, random shift: 670;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3609;
test_ring_burst_bulk_tests1: iteration 1, random shift: 795;

MP/MC sync mode: elem APIs: element size 8B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 2091;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1687;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1864;
test_ring_burst_bulk_tests1: iteration 2, random shift: 400;
test_ring_burst_bulk_tests1: iteration 2, random shift: 4091;
test_ring_burst_bulk_tests1: iteration 2, random shift: 4045;
test_ring_burst_bulk_tests1: iteration 2, random shift: 570;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3384;

MP/MC sync mode: elem APIs: element size 16B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 2762;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2037;
test_ring_burst_bulk_tests1: iteration 3, random shift: 872;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2941;
test_ring_burst_bulk_tests1: iteration 3, random shift: 475;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1107;
test_ring_burst_bulk_tests1: iteration 3, random shift: 808;
test_ring_burst_bulk_tests1: iteration 3, random shift: 894;

MP/MC sync mode: elem APIs: element size 20B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 672;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1735;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3562;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2034;
test_ring_burst_bulk_tests1: iteration 4, random shift: 4061;
test_ring_burst_bulk_tests1: iteration 4, random shift: 842;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3878;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3763;

MP/MC sync mode: legacy APIs: : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 4B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 8B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 16B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 20B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: legacy APIs: : default enqueue/dequeue: bulk
fill and empty the ring

MP/MC sync mode: elem APIs: element size 4B : default enqueue/dequeue: bulk
fill and empty the ring

MP/MC sync mode: elem APIs: element size 8B : default enqueue/dequeue: bulk
fill and empty the ring

MP/MC sync mode: elem APIs: element size 16B : default enqueue/dequeue: bulk
fill and empty the ring

MP/MC sync mode: elem APIs: element size 20B : default enqueue/dequeue: bulk
fill and empty the ring

MP/MC sync mode: legacy APIs: : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 4B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 8B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 16B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 20B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode: legacy APIs: : SP/SC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 3455;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2363;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1431;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1106;
test_ring_burst_bulk_tests1: iteration 0, random shift: 728;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1169;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3495;
test_ring_burst_bulk_tests1: iteration 0, random shift: 20;

SP/SC sync mode: elem APIs: element size 4B : SP/SC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 1768;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1080;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3039;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2595;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2652;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2609;
test_ring_burst_bulk_tests1: iteration 1, random shift: 186;
test_ring_burst_bulk_tests1: iteration 1, random shift: 689;

SP/SC sync mode: elem APIs: element size 8B : SP/SC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 3288;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2145;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1803;
test_ring_burst_bulk_tests1: iteration 2, random shift: 170;
test_ring_burst_bulk_tests1: iteration 2, random shift: 692;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2948;
test_ring_burst_bulk_tests1: iteration 2, random shift: 492;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3753;

SP/SC sync mode: elem APIs: element size 16B : SP/SC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 382;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2435;
test_ring_burst_bulk_tests1: iteration 3, random shift: 207;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3915;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1373;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1095;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2241;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3324;

SP/SC sync mode: elem APIs: element size 20B : SP/SC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 3770;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2751;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1760;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2965;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1305;
test_ring_burst_bulk_tests1: iteration 4, random shift: 294;
test_ring_burst_bulk_tests1: iteration 4, random shift: 256;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2999;

SP/SC sync mode: legacy APIs: : SP/SC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode: elem APIs: element size 4B : SP/SC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode: elem APIs: element size 8B : SP/SC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode: elem APIs: element size 16B : SP/SC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode: elem APIs: element size 20B : SP/SC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode: legacy APIs: : SP/SC: bulk
fill and empty the ring

SP/SC sync mode: elem APIs: element size 4B : SP/SC: bulk
fill and empty the ring

SP/SC sync mode: elem APIs: element size 8B : SP/SC: bulk
fill and empty the ring

SP/SC sync mode: elem APIs: element size 16B : SP/SC: bulk
fill and empty the ring

SP/SC sync mode: elem APIs: element size 20B : SP/SC: bulk
fill and empty the ring

SP/SC sync mode: legacy APIs: : SP/SC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode: elem APIs: element size 4B : SP/SC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode: elem APIs: element size 8B : SP/SC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode: elem APIs: element size 16B : SP/SC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode: elem APIs: element size 20B : SP/SC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: legacy APIs: : MP/MC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 3962;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3597;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2568;
test_ring_burst_bulk_tests1: iteration 0, random shift: 845;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3725;
test_ring_burst_bulk_tests1: iteration 0, random shift: 25;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3435;
test_ring_burst_bulk_tests1: iteration 0, random shift: 137;

MP/MC sync mode: elem APIs: element size 4B : MP/MC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 3610;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2062;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3441;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1705;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1382;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1670;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2356;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3998;

MP/MC sync mode: elem APIs: element size 8B : MP/MC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 932;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1577;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2370;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1514;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3359;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3724;
test_ring_burst_bulk_tests1: iteration 2, random shift: 829;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3910;

MP/MC sync mode: elem APIs: element size 16B : MP/MC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 1910;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1786;
test_ring_burst_bulk_tests1: iteration 3, random shift: 185;
test_ring_burst_bulk_tests1: iteration 3, random shift: 111;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3851;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3861;
test_ring_burst_bulk_tests1: iteration 3, random shift: 370;
test_ring_burst_bulk_tests1: iteration 3, random shift: 408;

MP/MC sync mode: elem APIs: element size 20B : MP/MC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 981;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3559;
test_ring_burst_bulk_tests1: iteration 4, random shift: 79;
test_ring_burst_bulk_tests1: iteration 4, random shift: 458;
test_ring_burst_bulk_tests1: iteration 4, random shift: 434;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3775;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1020;
test_ring_burst_bulk_tests1: iteration 4, random shift: 385;

MP/MC sync mode: legacy APIs: : MP/MC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 4B : MP/MC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 8B : MP/MC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 16B : MP/MC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 20B : MP/MC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: legacy APIs: : MP/MC: bulk
fill and empty the ring

MP/MC sync mode: elem APIs: element size 4B : MP/MC: bulk
fill and empty the ring

MP/MC sync mode: elem APIs: element size 8B : MP/MC: bulk
fill and empty the ring

MP/MC sync mode: elem APIs: element size 16B : MP/MC: bulk
fill and empty the ring

MP/MC sync mode: elem APIs: element size 20B : MP/MC: bulk
fill and empty the ring

MP/MC sync mode: legacy APIs: : MP/MC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 4B : MP/MC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 8B : MP/MC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 16B : MP/MC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 20B : MP/MC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_RTS/MC_RTS sync mode: legacy APIs: : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 139;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1237;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3613;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1549;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3101;
test_ring_burst_bulk_tests1: iteration 0, random shift: 937;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3140;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1018;

MP_RTS/MC_RTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 1769;
test_ring_burst_bulk_tests1: iteration 1, random shift: 120;
test_ring_burst_bulk_tests1: iteration 1, random shift: 507;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3588;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2662;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2081;
test_ring_burst_bulk_tests1: iteration 1, random shift: 477;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3105;

MP_RTS/MC_RTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 3747;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1808;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3605;
test_ring_burst_bulk_tests1: iteration 2, random shift: 4021;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2878;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1256;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3783;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3293;

MP_RTS/MC_RTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 3457;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2192;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1776;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3332;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3227;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3781;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1819;
test_ring_burst_bulk_tests1: iteration 3, random shift: 926;

MP_RTS/MC_RTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 2775;
test_ring_burst_bulk_tests1: iteration 4, random shift: 850;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3130;
test_ring_burst_bulk_tests1: iteration 4, random shift: 31;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2978;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3474;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3425;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1524;

MP_RTS/MC_RTS sync mode: legacy APIs: : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_RTS/MC_RTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_RTS/MC_RTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_RTS/MC_RTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_RTS/MC_RTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_RTS/MC_RTS sync mode: legacy APIs: : default enqueue/dequeue: bulk
fill and empty the ring

MP_RTS/MC_RTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: bulk
fill and empty the ring

MP_RTS/MC_RTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: bulk
fill and empty the ring

MP_RTS/MC_RTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: bulk
fill and empty the ring

MP_RTS/MC_RTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: bulk
fill and empty the ring

MP_RTS/MC_RTS sync mode: legacy APIs: : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_RTS/MC_RTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_RTS/MC_RTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_RTS/MC_RTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_RTS/MC_RTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode: legacy APIs: : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 1784;
test_ring_burst_bulk_tests1: iteration 0, random shift: 203;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2130;
test_ring_burst_bulk_tests1: iteration 0, random shift: 441;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2016;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1981;
test_ring_burst_bulk_tests1: iteration 0, random shift: 674;
test_ring_burst_bulk_tests1: iteration 0, random shift: 445;

MP_HTS/MC_HTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 3675;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1648;
test_ring_burst_bulk_tests1: iteration 1, random shift: 181;
test_ring_burst_bulk_tests1: iteration 1, random shift: 950;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1311;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1390;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1594;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2325;

MP_HTS/MC_HTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 4075;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1883;
test_ring_burst_bulk_tests1: iteration 2, random shift: 404;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2331;
test_ring_burst_bulk_tests1: iteration 2, random shift: 985;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3597;
test_ring_burst_bulk_tests1: iteration 2, random shift: 4024;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3807;

MP_HTS/MC_HTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 2186;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2228;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2171;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2949;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3560;
test_ring_burst_bulk_tests1: iteration 3, random shift: 99;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3846;
test_ring_burst_bulk_tests1: iteration 3, random shift: 4088;

MP_HTS/MC_HTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 3887;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3233;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2992;
test_ring_burst_bulk_tests1: iteration 4, random shift: 104;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1120;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1923;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3404;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2041;

MP_HTS/MC_HTS sync mode: legacy APIs: : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode: legacy APIs: : default enqueue/dequeue: bulk
fill and empty the ring

MP_HTS/MC_HTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: bulk
fill and empty the ring

MP_HTS/MC_HTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: bulk
fill and empty the ring

MP_HTS/MC_HTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: bulk
fill and empty the ring

MP_HTS/MC_HTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: bulk
fill and empty the ring

MP_HTS/MC_HTS sync mode: legacy APIs: : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: legacy APIs: : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 1331;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2961;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2061;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3460;
test_ring_burst_bulk_tests1: iteration 0, random shift: 423;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1943;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2086;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1803;

MP/MC sync mode: elem APIs: element size 4B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 1199;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3349;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2822;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2203;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1764;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2520;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3896;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3984;

MP/MC sync mode: elem APIs: element size 8B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 2247;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2993;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3954;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1609;
test_ring_burst_bulk_tests1: iteration 2, random shift: 307;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2541;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1615;
test_ring_burst_bulk_tests1: iteration 2, random shift: 4038;

MP/MC sync mode: elem APIs: element size 16B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 3691;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1152;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1997;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3089;
test_ring_burst_bulk_tests1: iteration 3, random shift: 186;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3802;
test_ring_burst_bulk_tests1: iteration 3, random shift: 82;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1380;

MP/MC sync mode: elem APIs: element size 20B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 2305;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2708;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1120;
test_ring_burst_bulk_tests1: iteration 4, random shift: 17;
test_ring_burst_bulk_tests1: iteration 4, random shift: 396;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3163;
test_ring_burst_bulk_tests1: iteration 4, random shift: 410;
test_ring_burst_bulk_tests1: iteration 4, random shift: 347;

MP/MC sync mode: legacy APIs: : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 4B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 8B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 16B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 20B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: legacy APIs: : default enqueue/dequeue: burst
fill and empty the ring

MP/MC sync mode: elem APIs: element size 4B : default enqueue/dequeue: burst
fill and empty the ring

MP/MC sync mode: elem APIs: element size 8B : default enqueue/dequeue: burst
fill and empty the ring

MP/MC sync mode: elem APIs: element size 16B : default enqueue/dequeue: burst
fill and empty the ring

MP/MC sync mode: elem APIs: element size 20B : default enqueue/dequeue: burst
fill and empty the ring

MP/MC sync mode: legacy APIs: : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 4B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 8B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 16B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 20B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode: legacy APIs: : SP/SC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 3774;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1310;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1728;
test_ring_burst_bulk_tests1: iteration 0, random shift: 734;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1415;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3426;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2004;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1836;

SP/SC sync mode: elem APIs: element size 4B : SP/SC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 1706;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2315;
test_ring_burst_bulk_tests1: iteration 1, random shift: 592;
test_ring_burst_bulk_tests1: iteration 1, random shift: 989;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2878;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3648;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2473;
test_ring_burst_bulk_tests1: iteration 1, random shift: 480;

SP/SC sync mode: elem APIs: element size 8B : SP/SC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 2558;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2115;
test_ring_burst_bulk_tests1: iteration 2, random shift: 676;
test_ring_burst_bulk_tests1: iteration 2, random shift: 984;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3669;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2701;
test_ring_burst_bulk_tests1: iteration 2, random shift: 638;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1689;

SP/SC sync mode: elem APIs: element size 16B : SP/SC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 1048;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3627;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1526;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3210;
test_ring_burst_bulk_tests1: iteration 3, random shift: 20;
test_ring_burst_bulk_tests1: iteration 3, random shift: 527;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1138;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1828;

SP/SC sync mode: elem APIs: element size 20B : SP/SC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 1463;
test_ring_burst_bulk_tests1: iteration 4, random shift: 4083;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3480;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3266;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3189;
test_ring_burst_bulk_tests1: iteration 4, random shift: 618;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2481;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2129;

SP/SC sync mode: legacy APIs: : SP/SC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode: elem APIs: element size 4B : SP/SC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode: elem APIs: element size 8B : SP/SC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode: elem APIs: element size 16B : SP/SC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode: elem APIs: element size 20B : SP/SC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode: legacy APIs: : SP/SC: burst
fill and empty the ring

SP/SC sync mode: elem APIs: element size 4B : SP/SC: burst
fill and empty the ring

SP/SC sync mode: elem APIs: element size 8B : SP/SC: burst
fill and empty the ring

SP/SC sync mode: elem APIs: element size 16B : SP/SC: burst
fill and empty the ring

SP/SC sync mode: elem APIs: element size 20B : SP/SC: burst
fill and empty the ring

SP/SC sync mode: legacy APIs: : SP/SC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode: elem APIs: element size 4B : SP/SC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode: elem APIs: element size 8B : SP/SC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode: elem APIs: element size 16B : SP/SC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode: elem APIs: element size 20B : SP/SC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: legacy APIs: : MP/MC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 3870;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3548;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1706;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1743;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2378;
test_ring_burst_bulk_tests1: iteration 0, random shift: 484;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3079;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1558;

MP/MC sync mode: elem APIs: element size 4B : MP/MC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 1037;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1259;
test_ring_burst_bulk_tests1: iteration 1, random shift: 21;
test_ring_burst_bulk_tests1: iteration 1, random shift: 300;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2357;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1034;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1866;
test_ring_burst_bulk_tests1: iteration 1, random shift: 387;

MP/MC sync mode: elem APIs: element size 8B : MP/MC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 2575;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1603;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1528;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2966;
test_ring_burst_bulk_tests1: iteration 2, random shift: 160;
test_ring_burst_bulk_tests1: iteration 2, random shift: 164;
test_ring_burst_bulk_tests1: iteration 2, random shift: 492;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2403;

MP/MC sync mode: elem APIs: element size 16B : MP/MC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 1883;
test_ring_burst_bulk_tests1: iteration 3, random shift: 455;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2814;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3305;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3298;
test_ring_burst_bulk_tests1: iteration 3, random shift: 176;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2680;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3642;

MP/MC sync mode: elem APIs: element size 20B : MP/MC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 3284;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3526;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3467;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2873;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3880;
test_ring_burst_bulk_tests1: iteration 4, random shift: 514;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2614;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1763;

MP/MC sync mode: legacy APIs: : MP/MC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 4B : MP/MC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 8B : MP/MC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 16B : MP/MC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: elem APIs: element size 20B : MP/MC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP/MC sync mode: legacy APIs: : MP/MC: burst
fill and empty the ring

MP/MC sync mode: elem APIs: element size 4B : MP/MC: burst
fill and empty the ring

MP/MC sync mode: elem APIs: element size 8B : MP/MC: burst
fill and empty the ring

MP/MC sync mode: elem APIs: element size 16B : MP/MC: burst
fill and empty the ring

MP/MC sync mode: elem APIs: element size 20B : MP/MC: burst
fill and empty the ring

MP/MC sync mode: legacy APIs: : MP/MC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 4B : MP/MC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 8B : MP/MC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 16B : MP/MC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP/MC sync mode: elem APIs: element size 20B : MP/MC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_RTS/MC_RTS sync mode: legacy APIs: : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 2168;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2150;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1287;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2440;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1191;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1300;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2242;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3342;

MP_RTS/MC_RTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 2488;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3604;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2249;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2953;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3805;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2060;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3087;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1943;

MP_RTS/MC_RTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 2015;
test_ring_burst_bulk_tests1: iteration 2, random shift: 338;
test_ring_burst_bulk_tests1: iteration 2, random shift: 927;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3134;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2223;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3485;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3524;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2219;

MP_RTS/MC_RTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 3652;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2389;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3341;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3501;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3510;
test_ring_burst_bulk_tests1: iteration 3, random shift: 10;
test_ring_burst_bulk_tests1: iteration 3, random shift: 605;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2730;

MP_RTS/MC_RTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 1201;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1334;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1108;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2965;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1290;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2046;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3295;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3743;

MP_RTS/MC_RTS sync mode: legacy APIs: : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_RTS/MC_RTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_RTS/MC_RTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_RTS/MC_RTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_RTS/MC_RTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_RTS/MC_RTS sync mode: legacy APIs: : default enqueue/dequeue: burst
fill and empty the ring

MP_RTS/MC_RTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: burst
fill and empty the ring

MP_RTS/MC_RTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: burst
fill and empty the ring

MP_RTS/MC_RTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: burst
fill and empty the ring

MP_RTS/MC_RTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: burst
fill and empty the ring

MP_RTS/MC_RTS sync mode: legacy APIs: : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_RTS/MC_RTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_RTS/MC_RTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_RTS/MC_RTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_RTS/MC_RTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode: legacy APIs: : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 1262;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2045;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3876;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2815;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1829;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2629;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3457;
test_ring_burst_bulk_tests1: iteration 0, random shift: 698;

MP_HTS/MC_HTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 2941;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3710;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2964;
test_ring_burst_bulk_tests1: iteration 1, random shift: 549;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1854;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1678;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3492;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2364;

MP_HTS/MC_HTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 292;
test_ring_burst_bulk_tests1: iteration 2, random shift: 566;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1883;
test_ring_burst_bulk_tests1: iteration 2, random shift: 4069;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1734;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2651;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1787;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2423;

MP_HTS/MC_HTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 3584;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2843;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3719;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2456;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3817;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3239;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2402;
test_ring_burst_bulk_tests1: iteration 3, random shift: 58;

MP_HTS/MC_HTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 1311;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2221;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2372;
test_ring_burst_bulk_tests1: iteration 4, random shift: 239;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3998;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3195;
test_ring_burst_bulk_tests1: iteration 4, random shift: 17;
test_ring_burst_bulk_tests1: iteration 4, random shift: 663;

MP_HTS/MC_HTS sync mode: legacy APIs: : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode: legacy APIs: : default enqueue/dequeue: burst
fill and empty the ring

MP_HTS/MC_HTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: burst
fill and empty the ring

MP_HTS/MC_HTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: burst
fill and empty the ring

MP_HTS/MC_HTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: burst
fill and empty the ring

MP_HTS/MC_HTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: burst
fill and empty the ring

MP_HTS/MC_HTS sync mode: legacy APIs: : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode: elem APIs: element size 4B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode: elem APIs: element size 8B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode: elem APIs: element size 16B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode: elem APIs: element size 20B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode (ZC): legacy APIs: : SP/SC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 2644;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1132;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3450;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1797;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3376;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1610;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1134;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2353;

SP/SC sync mode (ZC): elem APIs: element size 4B : SP/SC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 908;
test_ring_burst_bulk_tests1: iteration 1, random shift: 4040;
test_ring_burst_bulk_tests1: iteration 1, random shift: 295;
test_ring_burst_bulk_tests1: iteration 1, random shift: 4083;
test_ring_burst_bulk_tests1: iteration 1, random shift: 140;
test_ring_burst_bulk_tests1: iteration 1, random shift: 610;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2447;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3203;

SP/SC sync mode (ZC): elem APIs: element size 8B : SP/SC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 1302;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1259;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3326;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3300;
test_ring_burst_bulk_tests1: iteration 2, random shift: 389;
test_ring_burst_bulk_tests1: iteration 2, random shift: 585;
test_ring_burst_bulk_tests1: iteration 2, random shift: 548;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2769;

SP/SC sync mode (ZC): elem APIs: element size 16B : SP/SC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 3533;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2879;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3537;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1846;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2631;
test_ring_burst_bulk_tests1: iteration 3, random shift: 765;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2914;
test_ring_burst_bulk_tests1: iteration 3, random shift: 980;

SP/SC sync mode (ZC): elem APIs: element size 20B : SP/SC: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 946;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1226;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2642;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3478;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2573;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1392;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3941;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1050;

SP/SC sync mode (ZC): legacy APIs: : SP/SC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode (ZC): elem APIs: element size 4B : SP/SC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode (ZC): elem APIs: element size 8B : SP/SC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode (ZC): elem APIs: element size 16B : SP/SC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode (ZC): elem APIs: element size 20B : SP/SC: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode (ZC): legacy APIs: : SP/SC: bulk
fill and empty the ring

SP/SC sync mode (ZC): elem APIs: element size 4B : SP/SC: bulk
fill and empty the ring

SP/SC sync mode (ZC): elem APIs: element size 8B : SP/SC: bulk
fill and empty the ring

SP/SC sync mode (ZC): elem APIs: element size 16B : SP/SC: bulk
fill and empty the ring

SP/SC sync mode (ZC): elem APIs: element size 20B : SP/SC: bulk
fill and empty the ring

SP/SC sync mode (ZC): legacy APIs: : SP/SC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode (ZC): elem APIs: element size 4B : SP/SC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode (ZC): elem APIs: element size 8B : SP/SC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode (ZC): elem APIs: element size 16B : SP/SC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode (ZC): elem APIs: element size 20B : SP/SC: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode (ZC): legacy APIs: : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 3030;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2763;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2513;
test_ring_burst_bulk_tests1: iteration 0, random shift: 290;
test_ring_burst_bulk_tests1: iteration 0, random shift: 590;
test_ring_burst_bulk_tests1: iteration 0, random shift: 919;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3048;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2082;

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 4B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 633;
test_ring_burst_bulk_tests1: iteration 1, random shift: 81;
test_ring_burst_bulk_tests1: iteration 1, random shift: 829;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2900;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1660;
test_ring_burst_bulk_tests1: iteration 1, random shift: 526;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2407;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2579;

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 8B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 1645;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2438;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3794;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3150;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1578;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3606;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3824;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3853;

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 16B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 2521;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1232;
test_ring_burst_bulk_tests1: iteration 3, random shift: 611;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1512;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3833;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2493;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1319;
test_ring_burst_bulk_tests1: iteration 3, random shift: 585;

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 20B : default enqueue/dequeue: bulk
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 1861;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2350;
test_ring_burst_bulk_tests1: iteration 4, random shift: 58;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1556;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2950;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1671;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2986;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2490;

MP_HTS/MC_HTS sync mode (ZC): legacy APIs: : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 4B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 8B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 16B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 20B : default enqueue/dequeue: bulk
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode (ZC): legacy APIs: : default enqueue/dequeue: bulk
fill and empty the ring

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 4B : default enqueue/dequeue: bulk
fill and empty the ring

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 8B : default enqueue/dequeue: bulk
fill and empty the ring

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 16B : default enqueue/dequeue: bulk
fill and empty the ring

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 20B : default enqueue/dequeue: bulk
fill and empty the ring

MP_HTS/MC_HTS sync mode (ZC): legacy APIs: : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 4B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 8B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 16B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 20B : default enqueue/dequeue: bulk
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode (ZC): legacy APIs: : SP/SC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 2981;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2046;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3067;
test_ring_burst_bulk_tests1: iteration 0, random shift: 4061;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3001;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1427;
test_ring_burst_bulk_tests1: iteration 0, random shift: 4044;
test_ring_burst_bulk_tests1: iteration 0, random shift: 415;

SP/SC sync mode (ZC): elem APIs: element size 4B : SP/SC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 1232;
test_ring_burst_bulk_tests1: iteration 1, random shift: 4091;
test_ring_burst_bulk_tests1: iteration 1, random shift: 524;
test_ring_burst_bulk_tests1: iteration 1, random shift: 4024;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3286;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2760;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2907;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2840;

SP/SC sync mode (ZC): elem APIs: element size 8B : SP/SC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 2534;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2618;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3092;
test_ring_burst_bulk_tests1: iteration 2, random shift: 253;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2662;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1761;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3428;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1886;

SP/SC sync mode (ZC): elem APIs: element size 16B : SP/SC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 2595;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1289;
test_ring_burst_bulk_tests1: iteration 3, random shift: 800;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1490;
test_ring_burst_bulk_tests1: iteration 3, random shift: 156;
test_ring_burst_bulk_tests1: iteration 3, random shift: 3314;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1513;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2419;

SP/SC sync mode (ZC): elem APIs: element size 20B : SP/SC: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 128;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3123;
test_ring_burst_bulk_tests1: iteration 4, random shift: 832;
test_ring_burst_bulk_tests1: iteration 4, random shift: 604;
test_ring_burst_bulk_tests1: iteration 4, random shift: 361;
test_ring_burst_bulk_tests1: iteration 4, random shift: 909;
test_ring_burst_bulk_tests1: iteration 4, random shift: 3889;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2854;

SP/SC sync mode (ZC): legacy APIs: : SP/SC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode (ZC): elem APIs: element size 4B : SP/SC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode (ZC): elem APIs: element size 8B : SP/SC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode (ZC): elem APIs: element size 16B : SP/SC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode (ZC): elem APIs: element size 20B : SP/SC: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

SP/SC sync mode (ZC): legacy APIs: : SP/SC: burst
fill and empty the ring

SP/SC sync mode (ZC): elem APIs: element size 4B : SP/SC: burst
fill and empty the ring

SP/SC sync mode (ZC): elem APIs: element size 8B : SP/SC: burst
fill and empty the ring

SP/SC sync mode (ZC): elem APIs: element size 16B : SP/SC: burst
fill and empty the ring

SP/SC sync mode (ZC): elem APIs: element size 20B : SP/SC: burst
fill and empty the ring

SP/SC sync mode (ZC): legacy APIs: : SP/SC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode (ZC): elem APIs: element size 4B : SP/SC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode (ZC): elem APIs: element size 8B : SP/SC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode (ZC): elem APIs: element size 16B : SP/SC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

SP/SC sync mode (ZC): elem APIs: element size 20B : SP/SC: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode (ZC): legacy APIs: : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 0, random shift: 143;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3859;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1385;
test_ring_burst_bulk_tests1: iteration 0, random shift: 1710;
test_ring_burst_bulk_tests1: iteration 0, random shift: 2062;
test_ring_burst_bulk_tests1: iteration 0, random shift: 3282;
test_ring_burst_bulk_tests1: iteration 0, random shift: 272;
test_ring_burst_bulk_tests1: iteration 0, random shift: 125;

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 4B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 1, random shift: 1577;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1365;
test_ring_burst_bulk_tests1: iteration 1, random shift: 2086;
test_ring_burst_bulk_tests1: iteration 1, random shift: 225;
test_ring_burst_bulk_tests1: iteration 1, random shift: 933;
test_ring_burst_bulk_tests1: iteration 1, random shift: 3745;
test_ring_burst_bulk_tests1: iteration 1, random shift: 1574;
test_ring_burst_bulk_tests1: iteration 1, random shift: 124;

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 8B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 2, random shift: 3557;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2454;
test_ring_burst_bulk_tests1: iteration 2, random shift: 2577;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1361;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1779;
test_ring_burst_bulk_tests1: iteration 2, random shift: 3005;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1465;
test_ring_burst_bulk_tests1: iteration 2, random shift: 1015;

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 16B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 3, random shift: 867;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2211;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1352;
test_ring_burst_bulk_tests1: iteration 3, random shift: 4004;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2644;
test_ring_burst_bulk_tests1: iteration 3, random shift: 1661;
test_ring_burst_bulk_tests1: iteration 3, random shift: 2201;
test_ring_burst_bulk_tests1: iteration 3, random shift: 572;

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 20B : default enqueue/dequeue: burst
Random full/empty test
test_ring_burst_bulk_tests1: iteration 4, random shift: 396;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1826;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2199;
test_ring_burst_bulk_tests1: iteration 4, random shift: 821;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1912;
test_ring_burst_bulk_tests1: iteration 4, random shift: 635;
test_ring_burst_bulk_tests1: iteration 4, random shift: 1442;
test_ring_burst_bulk_tests1: iteration 4, random shift: 2301;

MP_HTS/MC_HTS sync mode (ZC): legacy APIs: : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 4B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 8B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 16B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 20B : default enqueue/dequeue: burst
enqueue 1 obj
enqueue 2 objs
enqueue MAX_BULK objs
dequeue 1 obj
dequeue 2 objs
dequeue MAX_BULK objs

MP_HTS/MC_HTS sync mode (ZC): legacy APIs: : default enqueue/dequeue: burst
fill and empty the ring

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 4B : default enqueue/dequeue: burst
fill and empty the ring

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 8B : default enqueue/dequeue: burst
fill and empty the ring

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 16B : default enqueue/dequeue: burst
fill and empty the ring

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 20B : default enqueue/dequeue: burst
fill and empty the ring

MP_HTS/MC_HTS sync mode (ZC): legacy APIs: : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 4B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 8B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 16B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty

MP_HTS/MC_HTS sync mode (ZC): elem APIs: element size 20B : default enqueue/dequeue: burst
Test enqueue without enough memory space
Enqueue 2 objects, free entries = MAX_BULK - 2
Enqueue the remaining entries = MAX_BULK - 3
Test if ring is full
Test enqueue for a full entry
Test dequeue without enough objects
Test if ring is empty
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f18036df000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/ring_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f1803685000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f1803624000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f1401e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f180337f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f1001c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f180331e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f0c01a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f180319f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f0801800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f180313e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f0401600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f1801e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f0001400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f1801e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7efc01200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f1401d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ef801000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
RING: element size is not a multiple of 4
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Cannot reserve memory
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Cannot reserve memory
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Cannot reserve memory
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Cannot reserve memory
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Requested number of elements is invalid, must be power of 2, and not exceed 2147483647
RING: Cannot reserve memory
------------------------------------------------------------------------------

 53/157 DPDK:fast-tests / rwlock_test1_autotest             OK                 2.05s
21:19:52 DPDK_TEST=rwlock_test1_autotest MALLOC_PERTURB_=13 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=rwlock_test1_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>rwlock_test1_autotest
Global write lock taken on core 8
Global write lock taken on core 5
Global write lock taken on core 3
Global write lock taken on core 13
Global write lock taken on core 12
Global write lock taken on core 4
Global write lock taken on core 10
Global write lock taken on core 11
Global write lock taken on core 9
Global write lock taken on core 1
Hello from core 1 !
Global write lock taken on core 14
Global write lock taken on core 6
Global write lock taken on core 15
Global read lock taken on core 1
Release global read lock on core 1
Global write lock taken on core 7
Global write lock taken on core 2
Hello from core 2 !
Global read lock taken on core 2
Hello from core 3 !
Global read lock taken on core 3
Release global read lock on core 2
Hello from core 4 !
Global read lock taken on core 4
Release global read lock on core 3
Hello from core 5 !
Global read lock taken on core 5
Release global read lock on core 4
Hello from core 6 !
Global read lock taken on core 6
Release global read lock on core 5
Hello from core 7 !
Global read lock taken on core 7
Release global read lock on core 6
Hello from core 8 !
Global read lock taken on core 8
Release global read lock on core 7
Hello from core 9 !
Global read lock taken on core 9
Release global read lock on core 8
Hello from core 10 !
Release global read lock on core 9
Global read lock taken on core 10
Hello from core 11 !
Global read lock taken on core 11
Release global read lock on core 10
Hello from core 12 !
Global read lock taken on core 12
Release global read lock on core 11
Hello from core 13 !
Global read lock taken on core 13
Release global read lock on core 12
Hello from core 14 !
Global read lock taken on core 14
Release global read lock on core 13
Hello from core 15 !
Global read lock taken on core 15
Release global read lock on core 14
Release global read lock on core 15
Global write lock taken on main core 0

Rwlock Perf Test on 16 cores...
Core [0] cost time = 137654 us
Core [1] cost time = 151876 us
Core [2] cost time = 143395 us
Core [3] cost time = 81488 us
Core [4] cost time = 152450 us
Core [5] cost time = 152460 us
Core [6] cost time = 151933 us
Core [7] cost time = 144515 us
Core [8] cost time = 156370 us
Core [9] cost time = 156169 us
Core [10] cost time = 156547 us
Core [11] cost time = 156408 us
Core [12] cost time = 156606 us
Core [13] cost time = 156492 us
Core [14] cost time = 140846 us
Core [15] cost time = 156603 us
Total cost time = 2351812 us
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f6152b03000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rwlock_test1_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f6152886000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f6152825000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f5d51200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f615269f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f5951000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f615263e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f5550e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f615139a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f5150c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f6151339000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f4d50a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f61512d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f4950800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6151277000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f4550600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6151216000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4150400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 54/157 DPDK:fast-tests / rwlock_rda_autotest               OK                 5.47s
21:19:54 DPDK_TEST=rwlock_rda_autotest MALLOC_PERTURB_=22 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=rwlock_rda_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>rwlock_rda_autotest
try_lcore_data[0]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2796416,
	cycles=16189695608,
	cycles/op=5789.444635,
	cycles/success=5789.444635,
	success/fail=2796416.000000,
};
try_lcore_data[1]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2902784,
	cycles=16190598250,
	cycles/op=5577.610408,
	cycles/success=5577.610408,
	success/fail=2902784.000000,
};
try_lcore_data[2]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=3176064,
	cycles=16190928856,
	cycles/op=5097.796787,
	cycles/success=5097.796787,
	success/fail=3176064.000000,
};
try_lcore_data[3]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2923008,
	cycles=16191086634,
	cycles/op=5539.186562,
	cycles/success=5539.186562,
	success/fail=2923008.000000,
};
try_lcore_data[4]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=3064832,
	cycles=16184928886,
	cycles/op=5280.853530,
	cycles/success=5280.853530,
	success/fail=3064832.000000,
};
try_lcore_data[5]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=3000576,
	cycles=16191118746,
	cycles/op=5396.003549,
	cycles/success=5396.003549,
	success/fail=3000576.000000,
};
try_lcore_data[6]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2723328,
	cycles=16189051474,
	cycles/op=5944.583786,
	cycles/success=5944.583786,
	success/fail=2723328.000000,
};
try_lcore_data[7]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=3162368,
	cycles=16186280292,
	cycles/op=5118.405034,
	cycles/success=5118.405034,
	success/fail=3162368.000000,
};
try_lcore_data[8]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2163968,
	cycles=16185913954,
	cycles/op=7479.738126,
	cycles/success=7479.738126,
	success/fail=2163968.000000,
};
try_lcore_data[9]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2200576,
	cycles=16185548560,
	cycles/op=7355.141817,
	cycles/success=7355.141817,
	success/fail=2200576.000000,
};
try_lcore_data[10]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2201472,
	cycles=16189771722,
	cycles/op=7354.066607,
	cycles/success=7354.066607,
	success/fail=2201472.000000,
};
try_lcore_data[11]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2284032,
	cycles=16190096244,
	cycles/op=7088.384157,
	cycles/success=7088.384157,
	success/fail=2284032.000000,
};
try_lcore_data[12]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2206848,
	cycles=16187128072,
	cycles/op=7334.953777,
	cycles/success=7334.953777,
	success/fail=2206848.000000,
};
try_lcore_data[13]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2214656,
	cycles=16187074626,
	cycles/op=7309.069502,
	cycles/success=7309.069502,
	success/fail=2214656.000000,
};
try_lcore_data[14]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2089600,
	cycles=16184966332,
	cycles/op=7745.485419,
	cycles/success=7745.485419,
	success/fail=2089600.000000,
};
try_lcore_data[15]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2201856,
	cycles=16184686158,
	cycles/op=7350.474399,
	cycles/success=7350.474399,
	success/fail=2201856.000000,
};
aggregated stats for 16 RDLOCK cores:
try_lcore_data[16]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=41312384,
	cycles=259008874414,
	cycles/op=6269.521372,
	cycles/success=6269.521372,
	success/fail=41312384.000000,
};
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f8613b7c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rwlock_rda_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f8613b22000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f861387f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f8212200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f861381e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f7e12000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f861369f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f7a11e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f861363e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f7611c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f861239a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f7211a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f8612339000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f6e11800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f86122d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f6a11600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f8612277000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f6611400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 55/157 DPDK:fast-tests / rwlock_rds_wrm_autotest           OK                 5.54s
21:19:59 DPDK_TEST=rwlock_rds_wrm_autotest MALLOC_PERTURB_=23 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=rwlock_rds_wrm_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>rwlock_rds_wrm_autotest
try_lcore_data[0]={
	rc=0,
	type=WRLOCK,
	fail=64498180,
	success=252,
	cycles=16405902382,
	cycles/op=254.361259,
	cycles/success=65102787.230159,
	success/fail=0.000004,
};
try_lcore_data[1]={
	rc=0,
	type=RDLOCK,
	fail=896,
	success=1991424,
	cycles=15950494912,
	cycles/op=8005.990459,
	cycles/success=8009.592589,
	success/fail=2222.571429,
};
try_lcore_data[2]={
	rc=0,
	type=RDLOCK,
	fail=2810,
	success=2201990,
	cycles=15950188282,
	cycles/op=7234.301652,
	cycles/success=7243.533477,
	success/fail=783.626335,
};
try_lcore_data[3]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2337664,
	cycles=15950017434,
	cycles/op=6823.058161,
	cycles/success=6823.058161,
	success/fail=2337664.000000,
};
try_lcore_data[4]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=2040960,
	cycles=15950116366,
	cycles/op=7815.006843,
	cycles/success=7815.006843,
	success/fail=2040960.000000,
};
try_lcore_data[5]={
	rc=0,
	type=RDLOCK,
	fail=2287,
	success=2026129,
	cycles=15950200160,
	cycles/op=7863.377217,
	cycles/success=7872.253030,
	success/fail=885.933100,
};
try_lcore_data[6]={
	rc=0,
	type=RDLOCK,
	fail=1481,
	success=2381111,
	cycles=15950216038,
	cycles/op=6694.480649,
	cycles/success=6698.644472,
	success/fail=1607.772451,
};
try_lcore_data[7]={
	rc=0,
	type=RDLOCK,
	fail=47,
	success=2067537,
	cycles=15950100992,
	cycles/op=7714.366619,
	cycles/success=7714.541985,
	success/fail=43990.148936,
};
try_lcore_data[8]={
	rc=0,
	type=RDLOCK,
	fail=4236,
	success=1472372,
	cycles=15950563336,
	cycles/op=10802.165054,
	cycles/success=10833.242778,
	success/fail=347.585458,
};
try_lcore_data[9]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=1576320,
	cycles=15950268132,
	cycles/op=10118.673957,
	cycles/success=10118.673957,
	success/fail=1576320.000000,
};
try_lcore_data[10]={
	rc=0,
	type=RDLOCK,
	fail=27507,
	success=1512717,
	cycles=15950451882,
	cycles/op=10355.929970,
	cycles/success=10544.240517,
	success/fail=54.993892,
};
try_lcore_data[11]={
	rc=0,
	type=RDLOCK,
	fail=0,
	success=1434240,
	cycles=15950154138,
	cycles/op=11120.979849,
	cycles/success=11120.979849,
	success/fail=1434240.000000,
};
try_lcore_data[12]={
	rc=0,
	type=RDLOCK,
	fail=4239,
	success=1654257,
	cycles=15950215062,
	cycles/op=9617.276775,
	cycles/success=9641.920851,
	success/fail=390.246992,
};
try_lcore_data[13]={
	rc=0,
	type=RDLOCK,
	fail=37,
	success=1406811,
	cycles=16406443626,
	cycles/op=11661.845221,
	cycles/success=11662.151935,
	success/fail=38021.918919,
};
try_lcore_data[14]={
	rc=0,
	type=RDLOCK,
	fail=3196,
	success=1538820,
	cycles=15950058882,
	cycles/op=10343.640327,
	cycles/success=10365.123200,
	success/fail=481.483104,
};
try_lcore_data[15]={
	rc=0,
	type=RDLOCK,
	fail=28069,
	success=1666139,
	cycles=15950077284,
	cycles/op=9414.474069,
	cycles/success=9573.077207,
	success/fail=59.358688,
};
aggregated stats for 15 RDLOCK cores:
try_lcore_data[15]={
	rc=0,
	type=RDLOCK,
	fail=74805,
	success=27308491,
	cycles=239709566526,
	cycles/op=8753.860986,
	cycles/success=8777.840069,
	success/fail=365.062376,
};
aggregated stats for 1 WRLOCK cores:
try_lcore_data[1]={
	rc=0,
	type=WRLOCK,
	fail=64498180,
	success=252,
	cycles=16405902382,
	cycles/op=254.361259,
	cycles/success=65102787.230159,
	success/fail=0.000004,
};
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f4ff7281000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rwlock_rds_wrm_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f4ff7227000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f4ff6f7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f4bf5a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f4ff6f1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f47f5800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f4ff6d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f43f5600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f4ff6d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f3ff5400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f4ff5a9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f3bf5200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f4ff5a39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f37f5000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f4bf599f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f33f4e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f4bf593e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f2ff4c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 56/157 DPDK:fast-tests / rwlock_rde_wro_autotest           OK                 5.46s
21:20:05 MALLOC_PERTURB_=44 DPDK_TEST=rwlock_rde_wro_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=rwlock_rde_wro_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>rwlock_rde_wro_autotest
try_lcore_data[0]={
	rc=0,
	type=RDLOCK,
	fail=429776,
	success=1829552,
	cycles=15950003170,
	cycles/op=7059.622671,
	cycles/success=8717.982965,
	success/fail=4.256990,
};
try_lcore_data[1]={
	rc=0,
	type=WRLOCK,
	fail=75216651,
	success=1141,
	cycles=15950007820,
	cycles/op=212.050997,
	cycles/success=13978972.673094,
	success/fail=0.000015,
};
try_lcore_data[2]={
	rc=0,
	type=RDLOCK,
	fail=1143874,
	success=1635774,
	cycles=15950618604,
	cycles/op=5738.359175,
	cycles/success=9751.113909,
	success/fail=1.430030,
};
try_lcore_data[3]={
	rc=0,
	type=WRLOCK,
	fail=78350420,
	success=172,
	cycles=15950002438,
	cycles/op=203.572201,
	cycles/success=92732572.313953,
	success/fail=0.000002,
};
try_lcore_data[4]={
	rc=0,
	type=RDLOCK,
	fail=398577,
	success=1880591,
	cycles=15950431724,
	cycles/op=6998.357174,
	cycles/success=8481.605902,
	success/fail=4.718263,
};
try_lcore_data[5]={
	rc=0,
	type=WRLOCK,
	fail=72936186,
	success=262,
	cycles=15950003304,
	cycles/op=218.683576,
	cycles/success=60877875.206107,
	success/fail=0.000004,
};
try_lcore_data[6]={
	rc=0,
	type=RDLOCK,
	fail=448588,
	success=1824436,
	cycles=15950189298,
	cycles/op=7017.167130,
	cycles/success=8742.531554,
	success/fail=4.067064,
};
try_lcore_data[7]={
	rc=0,
	type=WRLOCK,
	fail=73437026,
	success=798,
	cycles=15950011666,
	cycles/op=217.190690,
	cycles/success=19987483.290727,
	success/fail=0.000011,
};
try_lcore_data[8]={
	rc=0,
	type=RDLOCK,
	fail=414323,
	success=2767245,
	cycles=15950390612,
	cycles/op=5013.374101,
	cycles/success=5763.996542,
	success/fail=6.678956,
};
try_lcore_data[9]={
	rc=0,
	type=WRLOCK,
	fail=80304733,
	success=163,
	cycles=15950001726,
	cycles/op=198.618048,
	cycles/success=97852771.325153,
	success/fail=0.000002,
};
try_lcore_data[10]={
	rc=0,
	type=RDLOCK,
	fail=432900,
	success=2428796,
	cycles=15950219694,
	cycles/op=5573.694653,
	cycles/success=6567.130255,
	success/fail=5.610524,
};
try_lcore_data[11]={
	rc=0,
	type=WRLOCK,
	fail=79899147,
	success=117,
	cycles=15950006008,
	cycles/op=199.626445,
	cycles/success=136324837.675214,
	success/fail=0.000001,
};
try_lcore_data[12]={
	rc=0,
	type=RDLOCK,
	fail=2349892,
	success=2271548,
	cycles=15950055928,
	cycles/op=3451.317323,
	cycles/success=7021.668011,
	success/fail=0.966661,
};
try_lcore_data[13]={
	rc=0,
	type=WRLOCK,
	fail=79581950,
	success=514,
	cycles=15950009010,
	cycles/op=200.421151,
	cycles/success=31031145.933852,
	success/fail=0.000006,
};
try_lcore_data[14]={
	rc=0,
	type=RDLOCK,
	fail=1168856,
	success=2270248,
	cycles=15950095926,
	cycles/op=4637.863794,
	cycles/success=7025.706410,
	success/fail=1.942282,
};
try_lcore_data[15]={
	rc=0,
	type=WRLOCK,
	fail=83850577,
	success=559,
	cycles=15950055376,
	cycles/op=190.218715,
	cycles/success=28533193.874776,
	success/fail=0.000007,
};
aggregated stats for 8 RDLOCK cores:
try_lcore_data[8]={
	rc=0,
	type=RDLOCK,
	fail=6786786,
	success=16908190,
	cycles=127602004956,
	cycles/op=5385.192412,
	cycles/success=7546.757220,
	success/fail=2.491340,
};
aggregated stats for 8 WRLOCK cores:
try_lcore_data[8]={
	rc=0,
	type=WRLOCK,
	fail=623576690,
	success=3726,
	cycles=127600097348,
	cycles/op=204.624927,
	cycles/success=34245866.169619,
	success/fail=0.000006,
};
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f596630f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rwlock_rde_wro_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f5966094000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f5966033000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f5564a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f5965e9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f5164800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f5965e3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f4d64600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f5964b9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f4964400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f5964b39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f4564200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f5964ad8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f4164000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f5964a77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f3d63e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f5964a16000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f3963c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 57/157 DPDK:fast-tests / sched_autotest                    OK                 0.39s
21:20:11 DPDK_TEST=sched_autotest MALLOC_PERTURB_=200 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=sched_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>sched_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fa7c4508000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/sched_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fa7c427e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fa7c421d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fa3c2c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fa7c409f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f9fc2a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fa7c403e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f9bc2800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fa7c2d9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f97c2600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fa7c2d39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f93c2400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fa7c2cd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f8fc2200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fa7c2c77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f8bc2000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fa7c2c16000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f87c1e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 58/157 DPDK:fast-tests / security_autotest                 OK                 0.39s
21:20:11 MALLOC_PERTURB_=28 DPDK_TEST=security_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=security_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>security_autotest
 + ------------------------------------------------------- +
 + Test Suite : generic security
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_session_create_inv_context succeeded
 + TestCase [ 1] : test_session_create_inv_context_ops succeeded
 + TestCase [ 2] : test_session_create_inv_context_ops_fun succeeded
 + TestCase [ 3] : test_session_create_inv_configuration succeeded
 + TestCase [ 4] : test_session_create_inv_mempool succeeded
 + TestCase [ 5] : test_session_create_inv_sess_priv_mempool succeeded
 + TestCase [ 6] : test_session_create_mempool_empty succeeded
 + TestCase [ 7] : test_session_create_ops_failure succeeded
 + TestCase [ 8] : test_session_create_success succeeded
 + TestCase [ 9] : test_session_update_inv_context succeeded
 + TestCase [10] : test_session_update_inv_context_ops succeeded
 + TestCase [11] : test_session_update_inv_context_ops_fun succeeded
 + TestCase [12] : test_session_update_inv_configuration succeeded
 + TestCase [13] : test_session_update_inv_session succeeded
 + TestCase [14] : test_session_update_ops_failure succeeded
 + TestCase [15] : test_session_update_success succeeded
 + TestCase [16] : test_session_get_size_inv_context succeeded
 + TestCase [17] : test_session_get_size_inv_context_ops succeeded
 + TestCase [18] : test_session_get_size_inv_context_ops_fun succeeded
 + TestCase [19] : test_session_get_size_ops_failure succeeded
 + TestCase [20] : test_session_get_size_success succeeded
 + TestCase [21] : test_session_stats_get_inv_context succeeded
 + TestCase [22] : test_session_stats_get_inv_context_ops succeeded
 + TestCase [23] : test_session_stats_get_inv_context_ops_fun succeeded
 + TestCase [24] : test_session_stats_get_inv_stats succeeded
 + TestCase [25] : test_session_stats_get_ops_failure succeeded
 + TestCase [26] : test_session_stats_get_success succeeded
 + TestCase [27] : test_session_destroy_inv_context succeeded
 + TestCase [28] : test_session_destroy_inv_context_ops succeeded
 + TestCase [29] : test_session_destroy_inv_context_ops_fun succeeded
 + TestCase [30] : test_session_destroy_inv_session succeeded
 + TestCase [31] : test_session_destroy_ops_failure succeeded
 + TestCase [32] : test_session_destroy_success succeeded
 + TestCase [33] : test_set_pkt_metadata_inv_context skipped
 + TestCase [34] : test_set_pkt_metadata_inv_context_ops skipped
 + TestCase [35] : test_set_pkt_metadata_inv_context_ops_fun succeeded
 + TestCase [36] : test_set_pkt_metadata_inv_session skipped
 + TestCase [37] : test_set_pkt_metadata_ops_failure succeeded
 + TestCase [38] : test_set_pkt_metadata_success succeeded
 + TestCase [39] : test_get_userdata_inv_context skipped
 + TestCase [40] : test_get_userdata_inv_context_ops skipped
 + TestCase [41] : test_get_userdata_inv_context_ops_fun succeeded
 + TestCase [42] : test_get_userdata_ops_failure succeeded
 + TestCase [43] : test_get_userdata_success succeeded
 + TestCase [44] : test_capabilities_get_inv_context succeeded
 + TestCase [45] : test_capabilities_get_inv_context_ops succeeded
 + TestCase [46] : test_capabilities_get_inv_context_ops_fun succeeded
 + TestCase [47] : test_capabilities_get_ops_failure succeeded
 + TestCase [48] : test_capabilities_get_success succeeded
 + TestCase [49] : test_capability_get_inv_context succeeded
 + TestCase [50] : test_capability_get_inv_context_ops succeeded
 + TestCase [51] : test_capability_get_inv_context_ops_fun succeeded
 + TestCase [52] : test_capability_get_inv_idx succeeded
 + TestCase [53] : test_capability_get_ops_failure succeeded
 + TestCase [54] : test_capability_get_empty_table succeeded
 + TestCase [55] : test_capability_get_no_matching_action succeeded
 + TestCase [56] : test_capability_get_no_matching_protocol succeeded
 + TestCase [57] : test_capability_get_no_support_for_macsec succeeded
 + TestCase [58] : test_capability_get_ipsec_mismatch_proto succeeded
 + TestCase [59] : test_capability_get_ipsec_mismatch_mode succeeded
 + TestCase [60] : test_capability_get_ipsec_mismatch_dir succeeded
 + TestCase [61] : test_capability_get_ipsec_match succeeded
 + TestCase [62] : test_capability_get_pdcp_mismatch_domain succeeded
 + TestCase [63] : test_capability_get_pdcp_match succeeded
 + TestCase [64] : test_capability_get_docsis_mismatch_direction succeeded
 + TestCase [65] : test_capability_get_docsis_match succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : generic security
 + ------------------------------------------------------- +
 + Tests Total :       66
 + Tests Skipped :      5
 + Tests Executed :    66
 + Tests Unsupported:   0
 + Tests Passed :      61
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f918da76000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/security_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f918da1c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f918d77f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f8d8c200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f918d71e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f898c000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f918d59f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f858be00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f918d53e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f818bc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f918c29a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f7d8ba00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f918c239000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f798b800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f8d8c19f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f758b600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f8d8c13e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f718b400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: lib.eal log level changed from info to debug
EAL: request: mp_malloc_sync
EAL: Heap on socket 0 was shrunk by 2MB
------------------------------------------------------------------------------

 59/157 DPDK:fast-tests / spinlock_autotest                 OK                 0.57s
21:20:11 DPDK_TEST=spinlock_autotest MALLOC_PERTURB_=115 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=spinlock_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>spinlock_autotest
lcore 1 state: 0
lcore 2 state: 0
lcore 3 state: 0
lcore 4 state: 0
lcore 5 state: 0
lcore 6 state: 0
lcore 7 state: 0
lcore 8 state: 0
lcore 9 state: 0
lcore 10 state: 0
lcore 11 state: 0
lcore 12 state: 0
lcore 13 state: 0
lcore 14 state: 0
lcore 15 state: 0
lcore 1 state: 1
lcore 2 state: 1
lcore 3 state: 1
lcore 4 state: 1
lcore 5 state: 1
lcore 6 state: 1
lcore 7 state: 1
lcore 8 state: 1
lcore 9 state: 1
lcore 10 state: 1
lcore 11 state: 1
lcore 12 state: 1
lcore 13 state: 1
lcore 14 state: 1
lcore 15 state: 1
Global lock taken on core 13
Global lock taken on core 6
Global lock taken on core 15
Global lock taken on core 11
Global lock taken on core 2
Global lock taken on core 1
Hello from core 1 !
Global lock taken on core 3
Global lock taken on core 7
Global lock taken on core 8
Global lock taken on core 5
Global lock taken on core 4
Global lock taken on core 12
Global lock taken on core 14
Global lock taken on core 9
Global lock taken on core 10
Hello from core 2 !
Hello from core 3 !
Hello from core 4 !
Hello from core 5 !
Hello from core 6 !
Hello from core 7 !
Hello from core 8 !
Hello from core 9 !
Hello from core 10 !
Hello from core 11 !
Hello from core 12 !
Hello from core 13 !
Hello from core 14 !
Hello from core 15 !
Global recursive lock taken on core 12 - count = 1
Global recursive lock taken on core 12 - count = 2
Global recursive lock taken on core 12 - count = 3
Hello from within recursive locks from core 12 !
Global recursive lock released on core 12 - count = 2
Global recursive lock released on core 12 - count = 1
Global recursive lock released on core 12 - count = 0
Global recursive lock taken on core 4 - count = 1
Global recursive lock taken on core 4 - count = 2
Global recursive lock taken on core 4 - count = 3
Hello from within recursive locks from core 4 !
Global recursive lock released on core 4 - count = 2
Global recursive lock released on core 4 - count = 1
Global recursive lock released on core 4 - count = 0
Global recursive lock taken on core 6 - count = 1
Global recursive lock taken on core 6 - count = 2
Global recursive lock taken on core 6 - count = 3
Hello from within recursive locks from core 6 !
Global recursive lock released on core 6 - count = 2
Global recursive lock released on core 6 - count = 1
Global recursive lock released on core 6 - count = 0
Global recursive lock taken on core 1 - count = 1
Global recursive lock taken on core 1 - count = 2
Global recursive lock taken on core 1 - count = 3
Hello from within recursive locks from core 1 !
Global recursive lock released on core 1 - count = 2
Global recursive lock released on core 1 - count = 1
Global recursive lock released on core 1 - count = 0
Global recursive lock taken on core 15 - count = 1
Global recursive lock taken on core 15 - count = 2
Global recursive lock taken on core 15 - count = 3
Hello from within recursive locks from core 15 !
Global recursive lock released on core 15 - count = 2
Global recursive lock released on core 15 - count = 1
Global recursive lock released on core 15 - count = 0
Global recursive lock taken on core 2 - count = 1
Global recursive lock taken on core 2 - count = 2
Global recursive lock taken on core 2 - count = 3
Hello from within recursive locks from core 2 !
Global recursive lock released on core 2 - count = 2
Global recursive lock released on core 2 - count = 1
Global recursive lock released on core 2 - count = 0
Global recursive lock taken on core 14 - count = 1
Global recursive lock taken on core 14 - count = 2
Global recursive lock taken on core 14 - count = 3
Hello from within recursive locks from core 14 !
Global recursive lock released on core 14 - count = 2
Global recursive lock released on core 14 - count = 1
Global recursive lock released on core 14 - count = 0
Global recursive lock taken on core 10 - count = 1
Global recursive lock taken on core 10 - count = 2
Global recursive lock taken on core 10 - count = 3
Hello from within recursive locks from core 10 !
Global recursive lock released on core 10 - count = 2
Global recursive lock released on core 10 - count = 1
Global recursive lock released on core 10 - count = 1
Global recursive lock taken on core 5 - count = 1
Global recursive lock taken on core 5 - count = 2
Global recursive lock taken on core 5 - count = 3
Hello from within recursive locks from core 5 !
Global recursive lock released on core 5 - count = 2
Global recursive lock released on core 5 - count = 1
Global recursive lock released on core 5 - count = 1
Global recursive lock taken on core 9 - count = 1
Global recursive lock taken on core 9 - count = 2
Global recursive lock taken on core 9 - count = 3
Hello from within recursive locks from core 9 !
Global recursive lock released on core 9 - count = 2
Global recursive lock released on core 9 - count = 1
Global recursive lock released on core 9 - count = 0
Global recursive lock taken on core 7 - count = 1
Global recursive lock taken on core 7 - count = 2
Global recursive lock taken on core 7 - count = 3
Hello from within recursive locks from core 7 !
Global recursive lock released on core 7 - count = 2
Global recursive lock released on core 7 - count = 1
Global recursive lock released on core 7 - count = 0
Global recursive lock taken on core 13 - count = 1
Global recursive lock taken on core 13 - count = 2
Global recursive lock taken on core 13 - count = 3
Hello from within recursive locks from core 13 !
Global recursive lock released on core 13 - count = 2
Global recursive lock released on core 13 - count = 1
Global recursive lock released on core 13 - count = 0
Global recursive lock taken on core 11 - count = 1
Global recursive lock taken on core 11 - count = 2
Global recursive lock taken on core 11 - count = 3
Hello from within recursive locks from core 11 !
Global recursive lock released on core 11 - count = 2
Global recursive lock released on core 11 - count = 1
Global recursive lock released on core 11 - count = 0
Global recursive lock taken on core 8 - count = 1
Global recursive lock taken on core 8 - count = 2
Global recursive lock taken on core 8 - count = 3
Hello from within recursive locks from core 8 !
Global recursive lock released on core 8 - count = 2
Global recursive lock released on core 8 - count = 1
Global recursive lock released on core 8 - count = 0
Global recursive lock taken on core 3 - count = 1
Global recursive lock taken on core 3 - count = 2
Global recursive lock taken on core 3 - count = 3
Hello from within recursive locks from core 3 !
Global recursive lock released on core 3 - count = 2
Global recursive lock released on core 3 - count = 1
Global recursive lock released on core 3 - count = 0

Test with no lock on single core...
Core [0] Cost Time = 14 us

Test with lock on single core...
Core [0] Cost Time = 110 us

Test with lock on 16 cores...
Core [0] Cost Time = 35619 us
Core [1] Cost Time = 35573 us
Core [2] Cost Time = 35172 us
Core [3] Cost Time = 34677 us
Core [4] Cost Time = 32454 us
Core [5] Cost Time = 32930 us
Core [6] Cost Time = 33468 us
Core [7] Cost Time = 35338 us
Core [8] Cost Time = 36607 us
Core [9] Cost Time = 36813 us
Core [10] Cost Time = 36388 us
Core [11] Cost Time = 36668 us
Core [12] Cost Time = 36819 us
Core [13] Cost Time = 36658 us
Core [14] Cost Time = 36815 us
Core [15] Cost Time = 36264 us
Total Cost Time = 568263 us
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f7a445e4000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/spinlock_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f7a4458a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f7a44529000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f7642c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f7a4427f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f7242a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f7a4421e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f6e42800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f7a4409f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f6a42600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f7a4403e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f6642400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f7a42d9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f6242200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f7a42d39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f5e42000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f7a42cd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f5a41e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 60/157 DPDK:fast-tests / stack_autotest                    OK                 4.69s
21:20:12 DPDK_TEST=stack_autotest MALLOC_PERTURB_=143 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=stack_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>stack_autotest
[test_stack_multithreaded():320] Running with 16 lcores
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f4130a6d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/stack_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f4130a13000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f413077f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f3d2f200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f413071e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f392f000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f413059f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f352ee00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f413053e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f312ec00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f412f29a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f2d2ea00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f412f239000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f292e800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f3d2f19f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f252e600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f3d2f13e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f212e400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
rte_stack_create(): Cannot reserve stack memzone!

------------------------------------------------------------------------------

 61/157 DPDK:fast-tests / stack_lf_autotest                 OK                 5.66s
21:20:17 MALLOC_PERTURB_=163 DPDK_TEST=stack_lf_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=stack_lf_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>stack_lf_autotest
[test_stack_multithreaded():320] Running with 16 lcores
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fea8d79e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/stack_lf_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fea8d744000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fea8d47f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fe68be00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fea8d41e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fe28bc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fea8d29f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fde8ba00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fea8d23e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fda8b800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fea8bf9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fd68b600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fea8bf39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fd28b400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fea8bed8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fce8b200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fea8be77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fca8b000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
rte_stack_create(): Cannot reserve stack memzone!

------------------------------------------------------------------------------

 62/157 DPDK:fast-tests / string_autotest                   OK                 0.39s
21:20:22 MALLOC_PERTURB_=127 DPDK_TEST=string_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=string_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>string_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f13d1dc6000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/string_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f13d1d6c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f13d1d0b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f0fd0400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f13d1a7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f0bd0200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f13d1a1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f07d0000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f13d189f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f03cfe00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f13d183e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7effcfc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f13d059a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7efbcfa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f13d0539000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7ef7cf800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f13d04d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ef3cf600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
test_rte_strsplit() ln 33: Source string: '54:65:76:87:98:90', to split on ':'
test_rte_strsplit() ln 40: Token 1 = 54
test_rte_strsplit() ln 40: Token 2 = 65
test_rte_strsplit() ln 40: Token 3 = 76
test_rte_strsplit() ln 40: Token 4 = 87
test_rte_strsplit() ln 40: Token 5 = 98
test_rte_strsplit() ln 40: Token 6 = 90
test_rte_strsplit() ln 51: Source string: '54 65 76 87 98 90', to split on ' '
test_rte_strsplit() ln 58: Token 1 = 54
test_rte_strsplit() ln 58: Token 2 = 65
test_rte_strsplit() ln 58: Token 3 = 76 87 98 90
test_rte_strsplit() ln 68: Source string: 'a,b,c,d', to split on ','
test_rte_strsplit() ln 75: Token 1 = a
test_rte_strsplit() ln 75: Token 2 = b
test_rte_strsplit() ln 75: Token 3 = c
test_rte_strsplit() ln 75: Token 4 = d
test_rte_strsplit() ln 85: Source string: 'a,b,c,d', to split on ' '
test_rte_strsplit() ln 91: String not split
test_rte_strsplit() ln 125: Parameter test cases passed
test_rte_strsplit() ln 128: test_rte_strsplit - PASSED
------------------------------------------------------------------------------

 63/157 DPDK:fast-tests / table_autotest                    FAIL               0.49s   exit status 1
21:20:23 DPDK_TEST=table_autotest MALLOC_PERTURB_=66 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=table_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>table_autotest
Getting/Creating the mempool ...




************Pipeline tests************
Added default entry to table id 0 with action 0
Added default entry to table id 1 with action 0
Pipeline Consistency OK!
Got no objects from ring 0 - error code 0
Got no objects from ring 1 - error code 0
Added default entry to table id 0 with action 1
Added default entry to table id 1 with action 1
Pipeline Consistency OK!
Got 2 object(s) from ring 0!
Object: at [0x7fc936285a00], len=0
Object: at [0x7fc936286340], len=0
Got 2 object(s) from ring 1!
Object: at [0x7fc936284780], len=0
Object: at [0x7fc9362850c0], len=0
Added default entry to table id 0 with action 1
Added default entry to table id 1 with action 1
Pipeline Consistency OK!
STUB Table Action Miss - setting mask to 0x1
STUB Table Action Miss - setting mask to 0x1
Got 1 object(s) from ring 0!
Object: at [0x7fc936286340], len=0
Got 1 object(s) from ring 1!
Object: at [0x7fc9362850c0], len=0
Added default entry to table id 0 with action 1
Added default entry to table id 1 with action 1
Pipeline Consistency OK!
STUB Table Action Miss - setting mask to 0x2
STUB Table Action Miss - setting mask to 0x2
Got 1 object(s) from ring 0!
Object: at [0x7fc936284780], len=0
Got 1 object(s) from ring 1!
Object: at [0x7fc936286340], len=0
Added default entry to table id 0 with action 1
Added default entry to table id 1 with action 1
Pipeline Consistency OK!
STUB Table Action Miss - setting mask to 0x3
STUB Table Action Miss - setting mask to 0x3
Got 2 object(s) from ring 0!
Object: at [0x7fc936285a00], len=0
Object: at [0x7fc9362850c0], len=0
Got 2 object(s) from ring 1!
Object: at [0x7fc936286340], len=0
Object: at [0x7fc936284780], len=0
Setting first table to output to next table
Added default entry to table id 0 with action 3
Setting secont table to output to port
Added default entry to table id 0 with action 1
Setting first table to output to next table
Added default entry to table id 2 with action 3
Setting secont table to output to port
Added default entry to table id 2 with action 1
Pipeline Consistency OK!
Got 2 object(s) from ring 0!
Object: at [0x7fc9362850c0], len=0
Object: at [0x7fc936285a00], len=0
Got 2 object(s) from ring 1!
Object: at [0x7fc936284780], len=0
Object: at [0x7fc936286340], len=0
TEST - two tables, hitmask override to 0x01
Setting first table to output to next table
Added default entry to table id 0 with action 3
Setting secont table to output to port
Added default entry to table id 0 with action 1
Setting first table to output to next table
Added default entry to table id 2 with action 3
Setting secont table to output to port
Added default entry to table id 2 with action 1
Pipeline Consistency OK!
STUB Table Action Miss - setting mask to 0x1
STUB Table Action Miss - setting mask to 0x1
STUB Table Action Miss - setting mask to 0x1
STUB Table Action Miss - setting mask to 0x1
Got 1 object(s) from ring 0!
Object: at [0x7fc936285a00], len=0
Got 1 object(s) from ring 1!
Object: at [0x7fc936286340], len=0
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fcd3730c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/table_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fcd3708e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fcd3702d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fc935a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fcd36e9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fc535800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fcd36e3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fc135600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fcd35b9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fbd35400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fcd35b39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fb935200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fcd35ad8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fb535000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fcd35a77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fb134e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fcd35a16000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fad34c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
PIPELINE: setup_pipeline: **** Setting up Stub test
PIPELINE: test_pipeline_single_filter: **** Running Stub test
PIPELINE: rte_pipeline_flush: pipeline parameter NULL
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: setup_pipeline: **** Setting up Stub test
PIPELINE: test_pipeline_single_filter: **** Running Stub test
PIPELINE: rte_pipeline_flush: pipeline parameter NULL
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: setup_pipeline: **** Setting up Stub test
PIPELINE: test_pipeline_single_filter: **** Running Stub test
PIPELINE: rte_pipeline_flush: pipeline parameter NULL
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: setup_pipeline: **** Setting up Stub test
PIPELINE: test_pipeline_single_filter: **** Running Stub test
PIPELINE: rte_pipeline_flush: pipeline parameter NULL
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: setup_pipeline: **** Setting up Stub test
PIPELINE: test_pipeline_single_filter: **** Running Stub test
PIPELINE: rte_pipeline_flush: pipeline parameter NULL
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: setup_pipeline: **** Setting up Stub test
PIPELINE: test_pipeline_single_filter: **** Running Stub test
PIPELINE: rte_pipeline_flush: pipeline parameter NULL
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: setup_pipeline: **** Setting up Stub test
PIPELINE: test_pipeline_single_filter: **** Running Stub test
PIPELINE: rte_pipeline_flush: pipeline parameter NULL
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 0
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: test_pipeline_single_filter: Enqueue onto ring 1
PIPELINE: rte_pipeline_check_params: Incorrect value for parameter params
PIPELINE: rte_pipeline_create: Pipeline params check failed (-22)
PIPELINE: rte_pipeline_check_params: Incorrect value for parameter name
PIPELINE: rte_pipeline_create: Pipeline params check failed (-22)
PIPELINE: rte_pipeline_check_params: Incorrect value for parameter socket_id
PIPELINE: rte_pipeline_create: Pipeline params check failed (-22)
PIPELINE: rte_pipeline_create: Pipeline memory allocation failed
PIPELINE: rte_pipeline_check: pipeline parameter NULL
PORT: rte_port_ring_reader_create_internal: Invalid Parameters
PORT: rte_port_ring_reader_free: port is NULL
PORT: rte_port_ring_writer_create_internal: Invalid Parameters
PORT: rte_port_ring_writer_free: Port is NULL
PORT: rte_port_ring_writer_create_internal: Invalid Parameters
PORT: rte_port_ring_writer_create_internal: Invalid Parameters
TABLE: rte_table_array_free: table parameter is NULL
TABLE: rte_table_array_entry_add: table parameter is NULL
TABLE: rte_table_array_entry_add: entry parameter is NULL
TABLE: rte_table_lpm_create: NULL input parameters
TABLE: rte_table_lpm_create: Table name is NULL
TABLE: rte_table_lpm_create: Invalid n_rules
TABLE: rte_table_lpm_create: Invalid entry_unique_size
TABLE: rte_table_lpm_create: Invalid entry_unique_size
TABLE: rte_table_lpm_free: table parameter is NULL
TABLE: rte_table_lpm_entry_add: table parameter is NULL
TABLE: rte_table_lpm_entry_add: ip_prefix parameter is NULL
TABLE: rte_table_lpm_entry_add: entry parameter is NULL
TABLE: rte_table_lpm_entry_add: invalid depth (0)
TABLE: rte_table_lpm_entry_add: invalid depth (33)
=================================================================
==1847==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7ffde7ef6821 at pc 0x7fcd3a952480 bp 0x7ffde7ef6660 sp 0x7ffde7ef5e08
READ of size 8 at 0x7ffde7ef6821 thread T0
    #0 0x7fcd3a95247f  (/lib/x86_64-linux-gnu/libasan.so.5+0x9b47f)
    #1 0x557206a41c85 in rte_table_lpm_entry_add (/dpdk/build/app/test/dpdk-test+0x18f8c85)
    #2 0x557206827413 in test_table_lpm (/dpdk/build/app/test/dpdk-test+0x16de413)
    #3 0x5572067f87d2 in test_table (/dpdk/build/app/test/dpdk-test+0x16af7d2)
    #4 0x5572063fdc7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #5 0x557206dc05a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #6 0x557206dbd7b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #7 0x557206dc6a78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #8 0x557206dbd8a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #9 0x557205656837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #10 0x7fcd3a17f0b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)
    #11 0x5572063fdb6d in _start (/dpdk/build/app/test/dpdk-test+0x12b4b6d)

Address 0x7ffde7ef6821 is located in stack of thread T0 at offset 33 in frame
    #0 0x557206826d0f in test_table_lpm (/dpdk/build/app/test/dpdk-test+0x16ddd0f)

  This frame has 10 object(s):
    [32, 33) 'entry' (line 293) <== Memory access at offset 33 overflows this variable
    [48, 52) 'key_found' (line 295)
    [64, 72) 'result_mask' (line 289)
    [96, 104) 'entry_ptr' (line 294)
    [128, 136) 'lpm_key' (line 355)
    [160, 168) 'm'
    [192, 200) 'm'
    [224, 256) 'lpm_params' (line 299)
    [288, 800) 'mbufs' (line 290)
    [864, 1376) 'entries' (line 292)
HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork
      (longjmp and C++ exceptions *are* supported)
SUMMARY: AddressSanitizer: stack-buffer-overflow (/lib/x86_64-linux-gnu/libasan.so.5+0x9b47f) 
Shadow bytes around the buggy address:
  0x10003cfd6cb0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10003cfd6cc0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10003cfd6cd0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 f1 f1
  0x10003cfd6ce0: f1 f1 04 f3 f3 f3 00 00 00 00 00 00 00 00 00 00
  0x10003cfd6cf0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
=>0x10003cfd6d00: f1 f1 f1 f1[01]f2 04 f2 00 f2 f2 f2 00 f2 f2 f2
  0x10003cfd6d10: 00 f2 f2 f2 00 f2 f2 f2 00 f2 f2 f2 00 00 00 00
  0x10003cfd6d20: f2 f2 f2 f2 00 00 00 00 00 00 00 00 00 00 00 00
  0x10003cfd6d30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10003cfd6d40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10003cfd6d50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07 
  Heap left redzone:       fa
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
  Shadow gap:              cc
==1847==ABORTING
------------------------------------------------------------------------------

 64/157 DPDK:fast-tests / tailq_autotest                    OK                 0.39s
21:20:23 DPDK_TEST=tailq_autotest MALLOC_PERTURB_=132 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=tailq_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>tailq_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f530ab54000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/tailq_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f530a8b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f530a851000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f4f09200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f530a69f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f4b09000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f530a63e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f4708e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f530939a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f4308c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f5309339000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f3f08a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f53092d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f3b08800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f5309277000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f3708600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f5309216000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f3308400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: dummy_dyn tailq is already registered
------------------------------------------------------------------------------

 65/157 DPDK:fast-tests / ticketlock_autotest               OK                 0.66s
21:20:23 MALLOC_PERTURB_=147 DPDK_TEST=ticketlock_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=ticketlock_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>ticketlock_autotest
lcore 1 state: 0
lcore 2 state: 0
lcore 3 state: 0
lcore 4 state: 0
lcore 5 state: 0
lcore 6 state: 0
lcore 7 state: 0
lcore 8 state: 0
lcore 9 state: 0
lcore 10 state: 0
lcore 11 state: 0
lcore 12 state: 0
lcore 13 state: 0
lcore 14 state: 0
lcore 15 state: 0
lcore 1 state: 1
lcore 2 state: 1
lcore 3 state: 1
lcore 4 state: 1
lcore 5 state: 1
lcore 6 state: 1
lcore 7 state: 1
lcore 8 state: 1
lcore 9 state: 1
lcore 10 state: 1
lcore 11 state: 1
lcore 12 state: 1
lcore 13 state: 1
lcore 14 state: 1
lcore 15 state: 1
Global lock taken on core 1
Hello from core 1 !
Global lock taken on core 2
Global lock taken on core 3
Global lock taken on core 4
Global lock taken on core 5
Global lock taken on core 6
Global lock taken on core 7
Global lock taken on core 8
Global lock taken on core 9
Global lock taken on core 10
Global lock taken on core 11
Global lock taken on core 12
Global lock taken on core 13
Global lock taken on core 14
Global lock taken on core 15
Hello from core 2 !
Hello from core 3 !
Hello from core 4 !
Hello from core 5 !
Hello from core 6 !
Hello from core 7 !
Hello from core 8 !
Hello from core 9 !
Hello from core 10 !
Hello from core 11 !
Hello from core 12 !
Hello from core 13 !
Hello from core 14 !
Hello from core 15 !
Global recursive lock taken on core 1 - count = 1
Global recursive lock taken on core 1 - count = 2
Global recursive lock taken on core 1 - count = 3
Hello from within recursive locks from core 1 !
Global recursive lock released on core 1 - count = 2
Global recursive lock released on core 1 - count = 1
Global recursive lock released on core 1 - count = 0
Global recursive lock taken on core 2 - count = 1
Global recursive lock taken on core 2 - count = 2
Global recursive lock taken on core 2 - count = 3
Hello from within recursive locks from core 2 !
Global recursive lock released on core 2 - count = 2
Global recursive lock released on core 2 - count = 1
Global recursive lock released on core 2 - count = 0
Global recursive lock taken on core 3 - count = 1
Global recursive lock taken on core 3 - count = 2
Global recursive lock taken on core 3 - count = 3
Hello from within recursive locks from core 3 !
Global recursive lock released on core 3 - count = 2
Global recursive lock released on core 3 - count = 1
Global recursive lock released on core 3 - count = 0
Global recursive lock taken on core 4 - count = 1
Global recursive lock taken on core 4 - count = 2
Global recursive lock taken on core 4 - count = 3
Hello from within recursive locks from core 4 !
Global recursive lock released on core 4 - count = 2
Global recursive lock released on core 4 - count = 1
Global recursive lock released on core 4 - count = 0
Global recursive lock taken on core 5 - count = 1
Global recursive lock taken on core 5 - count = 2
Global recursive lock taken on core 5 - count = 3
Hello from within recursive locks from core 5 !
Global recursive lock released on core 5 - count = 2
Global recursive lock released on core 5 - count = 1
Global recursive lock released on core 5 - count = 0
Global recursive lock taken on core 6 - count = 1
Global recursive lock taken on core 6 - count = 2
Global recursive lock taken on core 6 - count = 3
Hello from within recursive locks from core 6 !
Global recursive lock released on core 6 - count = 2
Global recursive lock released on core 6 - count = 1
Global recursive lock released on core 6 - count = 0
Global recursive lock taken on core 7 - count = 1
Global recursive lock taken on core 7 - count = 2
Global recursive lock taken on core 7 - count = 3
Hello from within recursive locks from core 7 !
Global recursive lock released on core 7 - count = 2
Global recursive lock released on core 7 - count = 1
Global recursive lock released on core 7 - count = 0
Global recursive lock taken on core 8 - count = 1
Global recursive lock taken on core 8 - count = 2
Global recursive lock taken on core 8 - count = 3
Hello from within recursive locks from core 8 !
Global recursive lock released on core 8 - count = 2
Global recursive lock released on core 8 - count = 1
Global recursive lock released on core 8 - count = 0
Global recursive lock taken on core 9 - count = 1
Global recursive lock taken on core 9 - count = 2
Global recursive lock taken on core 9 - count = 3
Hello from within recursive locks from core 9 !
Global recursive lock released on core 9 - count = 2
Global recursive lock released on core 9 - count = 1
Global recursive lock released on core 9 - count = 0
Global recursive lock taken on core 10 - count = 1
Global recursive lock taken on core 10 - count = 2
Global recursive lock taken on core 10 - count = 3
Hello from within recursive locks from core 10 !
Global recursive lock released on core 10 - count = 2
Global recursive lock released on core 10 - count = 1
Global recursive lock released on core 10 - count = 0
Global recursive lock taken on core 11 - count = 1
Global recursive lock taken on core 11 - count = 2
Global recursive lock taken on core 11 - count = 3
Hello from within recursive locks from core 11 !
Global recursive lock released on core 11 - count = 2
Global recursive lock released on core 11 - count = 1
Global recursive lock released on core 11 - count = 0
Global recursive lock taken on core 12 - count = 1
Global recursive lock taken on core 12 - count = 2
Global recursive lock taken on core 12 - count = 3
Hello from within recursive locks from core 12 !
Global recursive lock released on core 12 - count = 2
Global recursive lock released on core 12 - count = 1
Global recursive lock released on core 12 - count = 0
Global recursive lock taken on core 13 - count = 1
Global recursive lock taken on core 13 - count = 2
Global recursive lock taken on core 13 - count = 3
Hello from within recursive locks from core 13 !
Global recursive lock released on core 13 - count = 2
Global recursive lock released on core 13 - count = 1
Global recursive lock released on core 13 - count = 0
Global recursive lock taken on core 14 - count = 1
Global recursive lock taken on core 14 - count = 2
Global recursive lock taken on core 14 - count = 3
Hello from within recursive locks from core 14 !
Global recursive lock released on core 14 - count = 2
Global recursive lock released on core 14 - count = 1
Global recursive lock released on core 14 - count = 0
Global recursive lock taken on core 15 - count = 1
Global recursive lock taken on core 15 - count = 2
Global recursive lock taken on core 15 - count = 3
Hello from within recursive locks from core 15 !
Global recursive lock released on core 15 - count = 2
Global recursive lock released on core 15 - count = 1
Global recursive lock released on core 15 - count = 0

Test with no lock on single core...
Core [0] cost time = 13 us

Test with lock on single core...
Core [0] cost time = 82 us

Test with lock on 16 cores...
Core [0] cost time = 119090 us
Core [1] cost time = 119109 us
Core [2] cost time = 119114 us
Core [3] cost time = 119108 us
Core [4] cost time = 119106 us
Core [5] cost time = 119101 us
Core [6] cost time = 119114 us
Core [7] cost time = 119110 us
Core [8] cost time = 119109 us
Core [9] cost time = 119113 us
Core [10] cost time = 119111 us
Core [11] cost time = 119110 us
Core [12] cost time = 119112 us
Core [13] cost time = 119113 us
Core [14] cost time = 119105 us
Core [15] cost time = 119113 us
Total cost time = 1905738 us
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f3b4858d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/ticketlock_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f3b48533000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f3b4827f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f3746c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f3b4821e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f3346a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f3b4809f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f2f46800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f3b4803e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f2b46600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f3b46d9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f2746400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f3b46d39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f2346200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f3b46cd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f1f46000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f3b46c77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f1b45e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 66/157 DPDK:fast-tests / timer_autotest                    OK                12.25s
21:20:24 MALLOC_PERTURB_=137 DPDK_TEST=timer_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=timer_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>timer_autotest
Start timer stress tests

Start timer stress tests 2
- 4008 timer reset collisions (OK)
Test OK

Start timer basic tests
No timer statistics, RTE_LIBRTE_TIMER_DEBUG is disabled
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f4281213000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/timer_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f4280f94000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f4280f33000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f3e7fa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f4280d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f3a7f800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f4280d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f367f600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f427fa9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f327f400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f427fa39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f2e7f200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f3e7f99f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f2a7f000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f3e7f93e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f267ee00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f3e7f8dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f227ec00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
TESTTIMER: core 5 finished
TESTTIMER: core 15 finished
TESTTIMER: core 4 finished
TESTTIMER: core 3 finished
TESTTIMER: core 1 finished
TESTTIMER: core 13 finished
TESTTIMER: core 11 finished
TESTTIMER: core 12 finished
TESTTIMER: core 9 finished
TESTTIMER: core 14 finished
TESTTIMER: core 8 finished
TESTTIMER: core 6 finished
TESTTIMER: core 10 finished
TESTTIMER: core 2 finished
TESTTIMER: core 0 finished
TESTTIMER: core 7 finished
TESTTIMER: 1426914711800494: callback id=0 count=1 on core 0
TESTTIMER: 1426914712281166: callback id=2 count=1 on core 0
TESTTIMER: 1426914711807378: callback id=3 count=1 on core 1
TESTTIMER: 1426915509304260: callback id=1 count=1 on core 0
TESTTIMER: 1426915509879066: callback id=2 count=2 on core 0
TESTTIMER: 1426915509313278: callback id=3 count=2 on core 1
TESTTIMER: 1426916584892092: callback id=3 count=3 on core 1
TESTTIMER: 1426916593778064: callback id=2 count=3 on core 0
TESTTIMER: core 2 finished
TESTTIMER: core 1 finished
TESTTIMER: core 6 finished
TESTTIMER: core 5 finished
TESTTIMER: core 3 finished
TESTTIMER: core 10 finished
TESTTIMER: core 11 finished
TESTTIMER: core 8 finished
TESTTIMER: core 7 finished
TESTTIMER: core 9 finished
TESTTIMER: core 13 finished
TESTTIMER: core 12 finished
TESTTIMER: core 0 finished
TESTTIMER: core 15 finished
TESTTIMER: core 14 finished
TESTTIMER: core 4 finished
------------------------------------------------------------------------------

 67/157 DPDK:fast-tests / user_delay_us                     OK                 0.39s
21:20:36 DPDK_TEST=user_delay_us MALLOC_PERTURB_=9 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=user_delay_us
----------------------------------- output -----------------------------------
stdout:
RTE>>user_delay_us
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fd2e3c4f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/user_delay_us/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fd2e39b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fd2e3951000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fcee2400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fd2e379f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fcae2200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fd2e373e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fc6e2000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fd2e249a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fc2e1e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fd2e2439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fbee1c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fcee239f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fbae1a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fcee233e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fb6e1800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fcee22dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fb2e1600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 68/157 DPDK:fast-tests / version_autotest                  OK                 0.39s
21:20:37 DPDK_TEST=version_autotest MALLOC_PERTURB_=116 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=version_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>version_autotest
Version string: 'DPDK 21.08.0-rc0'
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fbeed05b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/version_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fbeed001000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fbeecd7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fbaeb800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fbeecd1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb6eb600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fbeecb9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fb2eb400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fbeecb3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7faeeb200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fbeeb89a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7faaeb000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fbeeb839000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa6eae00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fbaeb79f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fa2eac00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fbaeb73e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9eeaa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 69/157 DPDK:fast-tests / crc_autotest                      OK                 0.39s
21:20:37 DPDK_TEST=crc_autotest MALLOC_PERTURB_=172 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=crc_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>crc_autotest
  Dump data at [0x56502b552de0], len=32
00000000: 30 31 32 33 34 35 36 37 38 39 61 62 63 64 65 66 | 0123456789abcdef
00000010: 67 68 69 6A 41 42 43 44 45 46 47 48 49 4A 4B 4C | ghijABCDEFGHIJKL
  Dump data at [0x7f8291268840], len=1512
00000000: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000010: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000020: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000030: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000040: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000050: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000060: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000070: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000080: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000090: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000A0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000B0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000C0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000D0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000E0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000F0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000100: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000110: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000120: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000130: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000140: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000150: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000160: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000170: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000180: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000190: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000001A0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000001B0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000001C0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000001D0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000001E0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000001F0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000200: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000210: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000220: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000230: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000240: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000250: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000260: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000270: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000280: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000290: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000002A0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000002B0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000002C0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000002D0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000002E0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000002F0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000300: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000310: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000320: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000330: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000340: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000350: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000360: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000370: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000380: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000390: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000003A0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000003B0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000003C0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000003D0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000003E0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000003F0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000400: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000410: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000420: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000430: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000440: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000450: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000460: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000470: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000480: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000490: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000004A0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000004B0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000004C0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000004D0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000004E0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000004F0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000500: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000510: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000520: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000530: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000540: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000550: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000560: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000570: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000580: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000590: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000005A0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000005B0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000005C0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000005D0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000005E0: 6B 8F B3 14 5E FB 35 59                         | k...^.5Y
  Dump data at [0x7f8291268840], len=348
00000000: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000010: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000020: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000030: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000040: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000050: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000060: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000070: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000080: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000090: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000A0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000B0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000C0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000D0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000E0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000F0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000100: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000110: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000120: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000130: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000140: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000150: BE D7 23 47 6B 8F B3 14 5E FB 35 59             | ..#Gk...^.5Y
  Dump data at [0x56502b552de0], len=32
00000000: 30 31 32 33 34 35 36 37 38 39 61 62 63 64 65 66 | 0123456789abcdef
00000010: 67 68 69 6A 41 42 43 44 45 46 47 48 49 4A 4B 4C | ghijABCDEFGHIJKL
  Dump data at [0x56502b552d60], len=12
00000000: 0D 01 01 23 45 67 89 01 23 45 00 01             | ...#Eg..#E..
  Dump data at [0x56502b552d20], len=2
00000000: 03 3F                                           | .?
  Dump data at [0x56502b552de0], len=32
00000000: 30 31 32 33 34 35 36 37 38 39 61 62 63 64 65 66 | 0123456789abcdef
00000010: 67 68 69 6A 41 42 43 44 45 46 47 48 49 4A 4B 4C | ghijABCDEFGHIJKL
  Dump data at [0x7f8291268840], len=1512
00000000: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000010: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000020: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000030: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000040: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000050: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000060: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000070: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000080: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000090: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000A0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000B0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000C0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000D0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000E0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000F0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000100: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000110: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000120: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000130: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000140: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000150: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000160: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000170: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000180: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000190: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000001A0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000001B0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000001C0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000001D0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000001E0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000001F0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000200: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000210: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000220: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000230: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000240: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000250: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000260: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000270: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000280: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000290: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000002A0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000002B0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000002C0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000002D0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000002E0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000002F0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000300: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000310: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000320: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000330: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000340: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000350: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000360: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000370: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000380: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000390: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000003A0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000003B0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000003C0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000003D0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000003E0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000003F0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000400: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000410: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000420: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000430: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000440: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000450: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000460: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000470: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000480: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000490: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000004A0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000004B0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000004C0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000004D0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000004E0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000004F0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000500: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000510: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000520: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000530: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000540: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000550: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000560: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000570: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000580: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000590: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000005A0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000005B0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000005C0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000005D0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000005E0: 6B 8F B3 14 5E FB 35 59                         | k...^.5Y
  Dump data at [0x7f8291268840], len=348
00000000: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000010: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000020: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000030: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000040: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000050: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000060: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000070: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000080: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000090: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000A0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000B0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000C0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000D0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000E0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000F0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000100: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000110: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000120: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000130: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000140: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000150: BE D7 23 47 6B 8F B3 14 5E FB 35 59             | ..#Gk...^.5Y
  Dump data at [0x56502b552de0], len=32
00000000: 30 31 32 33 34 35 36 37 38 39 61 62 63 64 65 66 | 0123456789abcdef
00000010: 67 68 69 6A 41 42 43 44 45 46 47 48 49 4A 4B 4C | ghijABCDEFGHIJKL
  Dump data at [0x56502b552d60], len=12
00000000: 0D 01 01 23 45 67 89 01 23 45 00 01             | ...#Eg..#E..
  Dump data at [0x56502b552d20], len=2
00000000: 03 3F                                           | .?
  Dump data at [0x56502b552de0], len=32
00000000: 30 31 32 33 34 35 36 37 38 39 61 62 63 64 65 66 | 0123456789abcdef
00000010: 67 68 69 6A 41 42 43 44 45 46 47 48 49 4A 4B 4C | ghijABCDEFGHIJKL
  Dump data at [0x7f8291268840], len=1512
00000000: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000010: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000020: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000030: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000040: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000050: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000060: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000070: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000080: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000090: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000A0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000B0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000C0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000D0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000E0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000F0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000100: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000110: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000120: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000130: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000140: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000150: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000160: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000170: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000180: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000190: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000001A0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000001B0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000001C0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000001D0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000001E0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000001F0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000200: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000210: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000220: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000230: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000240: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000250: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000260: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000270: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000280: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000290: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000002A0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000002B0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000002C0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000002D0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000002E0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000002F0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000300: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000310: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000320: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000330: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000340: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000350: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000360: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000370: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000380: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000390: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000003A0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000003B0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000003C0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000003D0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000003E0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000003F0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000400: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000410: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000420: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000430: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000440: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000450: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000460: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000470: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000480: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000490: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000004A0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000004B0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000004C0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000004D0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000004E0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000004F0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000500: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000510: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000520: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000530: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000540: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000550: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000560: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000570: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000580: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000590: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000005A0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000005B0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000005C0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000005D0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000005E0: 6B 8F B3 14 5E FB 35 59                         | k...^.5Y
  Dump data at [0x7f8291268840], len=348
00000000: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000010: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000020: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000030: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000040: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000050: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000060: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000070: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000080: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000090: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000A0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000B0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000C0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000D0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000E0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000F0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000100: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000110: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000120: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000130: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000140: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000150: BE D7 23 47 6B 8F B3 14 5E FB 35 59             | ..#Gk...^.5Y
  Dump data at [0x56502b552de0], len=32
00000000: 30 31 32 33 34 35 36 37 38 39 61 62 63 64 65 66 | 0123456789abcdef
00000010: 67 68 69 6A 41 42 43 44 45 46 47 48 49 4A 4B 4C | ghijABCDEFGHIJKL
  Dump data at [0x56502b552d60], len=12
00000000: 0D 01 01 23 45 67 89 01 23 45 00 01             | ...#Eg..#E..
  Dump data at [0x56502b552d20], len=2
00000000: 03 3F                                           | .?
  Dump data at [0x56502b552de0], len=32
00000000: 30 31 32 33 34 35 36 37 38 39 61 62 63 64 65 66 | 0123456789abcdef
00000010: 67 68 69 6A 41 42 43 44 45 46 47 48 49 4A 4B 4C | ghijABCDEFGHIJKL
  Dump data at [0x7f8291268840], len=1512
00000000: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000010: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000020: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000030: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000040: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000050: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000060: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000070: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000080: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000090: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000A0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000B0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000C0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000D0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000E0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000F0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000100: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000110: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000120: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000130: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000140: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000150: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000160: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000170: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000180: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000190: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000001A0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000001B0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000001C0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000001D0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000001E0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000001F0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000200: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000210: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000220: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000230: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000240: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000250: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000260: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000270: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000280: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000290: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000002A0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000002B0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000002C0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000002D0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000002E0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000002F0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000300: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000310: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000320: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000330: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000340: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000350: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000360: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000370: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000380: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000390: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000003A0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000003B0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000003C0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000003D0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000003E0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000003F0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000400: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000410: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000420: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000430: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000440: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000450: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000460: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000470: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000480: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000490: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000004A0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000004B0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000004C0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000004D0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000004E0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000004F0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000500: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000510: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000520: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000530: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000540: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000550: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000560: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000570: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000580: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000590: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000005A0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000005B0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000005C0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000005D0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000005E0: 6B 8F B3 14 5E FB 35 59                         | k...^.5Y
  Dump data at [0x7f8291268840], len=348
00000000: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000010: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000020: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000030: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000040: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000050: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000060: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000070: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000080: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000090: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000A0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000B0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000C0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
000000D0: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
000000E0: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
000000F0: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000100: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000110: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000120: BE D7 23 47 6B 8F B3 14 5E FB 35 59 BE D7 23 47 | ..#Gk...^.5Y..#G
00000130: 6B 8F B3 14 5E FB 35 59 BE D7 23 47 6B 8F B3 14 | k...^.5Y..#Gk...
00000140: 5E FB 35 59 BE D7 23 47 6B 8F B3 14 5E FB 35 59 | ^.5Y..#Gk...^.5Y
00000150: BE D7 23 47 6B 8F B3 14 5E FB 35 59             | ..#Gk...^.5Y
  Dump data at [0x56502b552de0], len=32
00000000: 30 31 32 33 34 35 36 37 38 39 61 62 63 64 65 66 | 0123456789abcdef
00000010: 67 68 69 6A 41 42 43 44 45 46 47 48 49 4A 4B 4C | ghijABCDEFGHIJKL
  Dump data at [0x56502b552d60], len=12
00000000: 0D 01 01 23 45 67 89 01 23 45 00 01             | ...#Eg..#E..
  Dump data at [0x56502b552d20], len=2
00000000: 03 3F                                           | .?
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f86927d9000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/crc_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f869277f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f869271e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f8291200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f869259f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f7e91000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f869253e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f7a90e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f869129a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f7690c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f8691239000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f7290a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f829119f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f6e90800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f829113e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f6a90600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f82910dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f6690400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
avx512_vpclmulqdq_get_handlers(): Requirements not met, can't use AVX512

neon_pmull_get_handlers(): Requirements not met, can't use NEON

------------------------------------------------------------------------------

 70/157 DPDK:fast-tests / distributor_autotest              OK                 1.26s
21:20:38 MALLOC_PERTURB_=187 DPDK_TEST=distributor_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=distributor_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>distributor_autotest
=== Basic distributor sanity tests ===
Worker 0 handled 32 packets
Worker 1 handled 0 packets
Worker 2 handled 0 packets
Worker 3 handled 0 packets
Worker 4 handled 0 packets
Worker 5 handled 0 packets
Worker 6 handled 0 packets
Worker 7 handled 0 packets
Worker 8 handled 0 packets
Worker 9 handled 0 packets
Worker 10 handled 0 packets
Worker 11 handled 0 packets
Worker 12 handled 0 packets
Worker 13 handled 0 packets
Worker 14 handled 0 packets
Sanity test with all zero hashes done.
Worker 0 handled 16 packets
Worker 1 handled 16 packets
Worker 2 handled 0 packets
Worker 3 handled 0 packets
Worker 4 handled 0 packets
Worker 5 handled 0 packets
Worker 6 handled 0 packets
Worker 7 handled 0 packets
Worker 8 handled 0 packets
Worker 9 handled 0 packets
Worker 10 handled 0 packets
Worker 11 handled 0 packets
Worker 12 handled 0 packets
Worker 13 handled 0 packets
Worker 14 handled 0 packets
Sanity test with two hash values done
Worker 0 handled 3 packets
Worker 1 handled 3 packets
Worker 2 handled 2 packets
Worker 3 handled 2 packets
Worker 4 handled 2 packets
Worker 5 handled 2 packets
Worker 6 handled 2 packets
Worker 7 handled 2 packets
Worker 8 handled 2 packets
Worker 9 handled 2 packets
Worker 10 handled 2 packets
Worker 11 handled 2 packets
Worker 12 handled 2 packets
Worker 13 handled 2 packets
Worker 14 handled 2 packets
Sanity test with non-zero hashes done
=== testing big burst (single) ===
Sanity test of returned packets done

=== Sanity test with mbuf alloc/free (single) ===
Sanity test with mbuf alloc/free passed

=== Sanity test of worker shutdown ===
Worker 0 handled 33 packets
Worker 1 handled 31 packets
Worker 2 handled 0 packets
Worker 3 handled 0 packets
Worker 4 handled 0 packets
Worker 5 handled 0 packets
Worker 6 handled 0 packets
Worker 7 handled 0 packets
Worker 8 handled 0 packets
Worker 9 handled 0 packets
Worker 10 handled 0 packets
Worker 11 handled 0 packets
Worker 12 handled 0 packets
Worker 13 handled 0 packets
Worker 14 handled 0 packets
Sanity test with worker shutdown passed

=== Test flush fn with worker shutdown (single) ===
Worker 0 handled 25 packets
Worker 1 handled 7 packets
Worker 2 handled 0 packets
Worker 3 handled 0 packets
Worker 4 handled 0 packets
Worker 5 handled 0 packets
Worker 6 handled 0 packets
Worker 7 handled 0 packets
Worker 8 handled 0 packets
Worker 9 handled 0 packets
Worker 10 handled 0 packets
Worker 11 handled 0 packets
Worker 12 handled 0 packets
Worker 13 handled 0 packets
Worker 14 handled 0 packets
Flush test with worker shutdown passed

=== Marked packets test ===
Worker 0 handled 16 packets
Worker 1 handled 0 packets
Worker 2 handled 8 packets
Worker 3 handled 0 packets
Worker 4 handled 0 packets
Worker 5 handled 0 packets
Worker 6 handled 0 packets
Worker 7 handled 0 packets
Worker 8 handled 0 packets
Worker 9 handled 0 packets
Worker 10 handled 0 packets
Worker 11 handled 0 packets
Worker 12 handled 0 packets
Worker 13 handled 0 packets
Worker 14 handled 0 packets
Marked packets test passed
=== Basic distributor sanity tests ===
Worker 0 handled 32 packets
Worker 1 handled 0 packets
Worker 2 handled 0 packets
Worker 3 handled 0 packets
Worker 4 handled 0 packets
Worker 5 handled 0 packets
Worker 6 handled 0 packets
Worker 7 handled 0 packets
Worker 8 handled 0 packets
Worker 9 handled 0 packets
Worker 10 handled 0 packets
Worker 11 handled 0 packets
Worker 12 handled 0 packets
Worker 13 handled 0 packets
Worker 14 handled 0 packets
Sanity test with all zero hashes done.
Worker 0 handled 16 packets
Worker 1 handled 0 packets
Worker 2 handled 0 packets
Worker 3 handled 0 packets
Worker 4 handled 16 packets
Worker 5 handled 0 packets
Worker 6 handled 0 packets
Worker 7 handled 0 packets
Worker 8 handled 0 packets
Worker 9 handled 0 packets
Worker 10 handled 0 packets
Worker 11 handled 0 packets
Worker 12 handled 0 packets
Worker 13 handled 0 packets
Worker 14 handled 0 packets
Sanity test with two hash values done
Worker 0 handled 1 packets
Worker 1 handled 0 packets
Worker 2 handled 0 packets
Worker 3 handled 0 packets
Worker 4 handled 0 packets
Worker 5 handled 0 packets
Worker 6 handled 0 packets
Worker 7 handled 0 packets
Worker 8 handled 8 packets
Worker 9 handled 8 packets
Worker 10 handled 8 packets
Worker 11 handled 7 packets
Worker 12 handled 0 packets
Worker 13 handled 0 packets
Worker 14 handled 0 packets
Sanity test with non-zero hashes done
=== testing big burst (burst) ===
Sanity test of returned packets done

=== Sanity test with mbuf alloc/free (burst) ===
Sanity test with mbuf alloc/free passed

=== Sanity test of worker shutdown ===
Worker 0 handled 0 packets
Worker 1 handled 24 packets
Worker 2 handled 0 packets
Worker 3 handled 0 packets
Worker 4 handled 0 packets
Worker 5 handled 0 packets
Worker 6 handled 0 packets
Worker 7 handled 0 packets
Worker 8 handled 0 packets
Worker 9 handled 40 packets
Worker 10 handled 0 packets
Worker 11 handled 0 packets
Worker 12 handled 0 packets
Worker 13 handled 0 packets
Worker 14 handled 0 packets
Sanity test with worker shutdown passed

=== Test flush fn with worker shutdown (burst) ===
Worker 0 handled 0 packets
Worker 1 handled 0 packets
Worker 2 handled 0 packets
Worker 3 handled 0 packets
Worker 4 handled 0 packets
Worker 5 handled 32 packets
Worker 6 handled 0 packets
Worker 7 handled 0 packets
Worker 8 handled 0 packets
Worker 9 handled 0 packets
Worker 10 handled 0 packets
Worker 11 handled 0 packets
Worker 12 handled 0 packets
Worker 13 handled 0 packets
Worker 14 handled 0 packets
Flush test with worker shutdown passed

=== Marked packets test ===
Worker 0 handled 0 packets
Worker 1 handled 0 packets
Worker 2 handled 0 packets
Worker 3 handled 0 packets
Worker 4 handled 0 packets
Worker 5 handled 0 packets
Worker 6 handled 0 packets
Worker 7 handled 0 packets
Worker 8 handled 0 packets
Worker 9 handled 0 packets
Worker 10 handled 16 packets
Worker 11 handled 8 packets
Worker 12 handled 0 packets
Worker 13 handled 0 packets
Worker 14 handled 0 packets
Marked packets test passed
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f326b15b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/distributor_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f326b101000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f326ae7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f2e69800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f326ae1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f2a69600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f326ac9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f2669400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f326ac3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f2269200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f326999a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f1e69000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f3269939000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f1a68e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f32698d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f1668c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f3269877000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f1268a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 71/157 DPDK:fast-tests / eventdev_common_autotest          OK                 0.39s
21:20:39 DPDK_TEST=eventdev_common_autotest MALLOC_PERTURB_=168 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=eventdev_common_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>eventdev_common_autotest
 + ------------------------------------------------------- +
 + Test Suite : eventdev common code unit test suite
Failed to find a valid event device, testing with event_skeleton device
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_eventdev_count succeeded
 + TestCase [ 1] : test_eventdev_get_dev_id succeeded
 + TestCase [ 2] : test_eventdev_socket_id succeeded
 + TestCase [ 3] : test_eventdev_info_get succeeded
 + TestCase [ 4] : test_eventdev_configure succeeded
 + TestCase [ 5] : test_eventdev_queue_default_conf_get succeeded
 + TestCase [ 6] : test_eventdev_queue_setup succeeded
 + TestCase [ 7] : test_eventdev_queue_count succeeded
 + TestCase [ 8] : test_eventdev_queue_attr_priority succeeded
 + TestCase [ 9] : test_eventdev_queue_attr_nb_atomic_flows succeeded
 + TestCase [10] : test_eventdev_queue_attr_nb_atomic_order_sequences succeeded
 + TestCase [11] : test_eventdev_queue_attr_event_queue_cfg succeeded
 + TestCase [12] : test_eventdev_port_default_conf_get succeeded
 + TestCase [13] : test_eventdev_port_setup succeeded
 + TestCase [14] : test_eventdev_port_attr_dequeue_depth succeeded
 + TestCase [15] : test_eventdev_port_attr_enqueue_depth succeeded
 + TestCase [16] : test_eventdev_port_attr_new_event_threshold succeeded
 + TestCase [17] : test_eventdev_port_count succeeded
 + TestCase [18] : test_eventdev_timeout_ticks succeeded
 + TestCase [19] : test_eventdev_start_stop succeeded
 + TestCase [20] : test_eventdev_link succeeded
 + TestCase [21] : test_eventdev_unlink succeeded
 + TestCase [22] : test_eventdev_link_get succeeded
 + TestCase [23] : test_eventdev_close succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : eventdev common code unit test suite
 + ------------------------------------------------------- +
 + Tests Total :       24
 + Tests Skipped :      0
 + Tests Executed :    24
 + Tests Unsupported:   0
 + Tests Passed :      24
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7ff288380000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/eventdev_common_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7ff288326000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7ff28807f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fee86a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7ff28801e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fea86800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7ff287e9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fe686600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7ff287e3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fe286400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7ff286b9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fde86200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7ff286b39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fda86000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7ff286ad8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fd685e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7ff286a77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fd285c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
PMD: Initializing event_skeleton on NUMA node 0
EVENTDEV: rte_event_dev_socket_id() line 84: Invalid dev_id=16

EVENTDEV: rte_event_dev_configure() line 426: dev0 invalid dequeue_timeout_ns=10001 min_dequeue_timeout_ns=1 max_dequeue_timeout_ns=10000
EVENTDEV: rte_event_dev_configure() line 437: dev0 nb_events_limit=1048577 > max_num_events=1048576
EVENTDEV: rte_event_dev_configure() line 490: id0 nb_event_ports=33 - nb_single_link_event_port_queues=0 > max_event_ports=32
EVENTDEV: rte_event_dev_configure() line 459: id0 nb_event_queues=65 - nb_single_link_event_port_queues=0 > max_event_queues=64
EVENTDEV: rte_event_dev_configure() line 513: dev0 nb_flows=100001 > max_flows=100000
EVENTDEV: rte_event_dev_configure() line 528: dev0 nb_dq_depth=17 > max_dq_depth=16
EVENTDEV: rte_event_dev_configure() line 543: dev0 nb_enq_depth=17 > max_enq_depth=16
EVENTDEV: rte_event_queue_setup() line 668: dev0 queue0 Invalid nb_atomic_flows=1048577 max_flows=1048576
EVENTDEV: rte_event_queue_setup() line 681: dev0 queue0 Invalid nb_atomic_order_seq=1048577 max_flows=1048576
EVENTDEV: rte_event_queue_setup() line 659: Invalid queue_id=64
EVENTDEV: rte_event_port_setup() line 761: dev0 port0 Invalid event_threshold=1048577 nb_events_limit=1048576
EVENTDEV: rte_event_port_setup() line 772: dev0 port0 Invalid dequeue depth=17 max_dequeue_depth=16
EVENTDEV: rte_event_port_setup() line 783: dev0 port0 Invalid enqueue depth=17 max_enqueue_depth=16
EVENTDEV: rte_event_port_setup() line 794: dev0 port0 Implicit release disable not supported
EVENTDEV: rte_event_port_setup() line 753: Invalid port_id=32
------------------------------------------------------------------------------

 72/157 DPDK:fast-tests / fbarray_autotest                  OK                 0.40s
21:20:39 DPDK_TEST=fbarray_autotest MALLOC_PERTURB_=15 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=fbarray_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>fbarray_autotest
 + ------------------------------------------------------- +
 + Test Suite : fbarray autotest
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_invalid succeeded
 + TestCase [ 1] : test_basic succeeded
 + TestCase [ 2] : test_find succeeded
 + TestCase [ 3] : test_find succeeded
 + TestCase [ 4] : test_find succeeded
 + TestCase [ 5] : test_find succeeded
 + TestCase [ 6] : test_find succeeded
 + TestCase [ 7] : test_empty succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : fbarray autotest
 + ------------------------------------------------------- +
 + Tests Total :        8
 + Tests Skipped :      0
 + Tests Executed :     8
 + Tests Unsupported:   0
 + Tests Passed :       8
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f8ed7f43000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/fbarray_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f8ed7cb2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f8ed7c51000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f8ad6600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f8ed7a9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f86d6400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f8ed7a3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f82d6200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f8ed679a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f7ed6000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f8ed6739000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f7ad5e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f8ed66d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f76d5c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f8ed6677000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f72d5a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f8ed6616000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f6ed5800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: WARNING! Base virtual address hint (0x106041000 != 0x7f8ed7f00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x106047000 != 0x7f8ed7c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
------------------------------------------------------------------------------

 73/157 DPDK:fast-tests / hash_readwrite_func_autotest      OK                 4.70s
21:20:40 DPDK_TEST=hash_readwrite_func_autotest MALLOC_PERTURB_=34 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=hash_readwrite_func_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>hash_readwrite_func_autotest
Hardware transactional memory (lock elision) is supported
Test read-write with Hardware transactional memory

HTM = 1, RW-LF = 0, EXT-Table = 0
++++++++Start function tests:+++++++++
Core #1 inserting and reading 314572: 0 - 314571
Core #2 inserting and reading 314572: 314572 - 629143
Core #3 inserting and reading 314572: 629144 - 943715
Core #4 inserting and reading 314572: 943716 - 1258287
Core #5 inserting and reading 314572: 1258288 - 1572859
Core #8 inserting and reading 314572: 2202004 - 2516575
Core #7 inserting and reading 314572: 1887432 - 2202003
Core #9 inserting and reading 314572: 2516576 - 2831147
Core #12 inserting and reading 314572: 3460292 - 3774863
Core #10 inserting and reading 314572: 2831148 - 3145719
Core #6 inserting and reading 314572: 1572860 - 1887431
Core #11 inserting and reading 314572: 3145720 - 3460291
Core #13 inserting and reading 314572: 3774864 - 4089435
Core #14 inserting and reading 314572: 4089436 - 4404007
Core #15 inserting and reading 314572: 4404008 - 4718579
No key corrupted during read-write test.
cycles per insertion and lookup: 5340
+++++++++Complete function tests+++++++++

HTM = 1, RW-LF = 1, EXT-Table = 0
++++++++Start function tests:+++++++++
Core #1 inserting and reading 314572: 0 - 314571
Core #2 inserting and reading 314572: 314572 - 629143
Core #3 inserting and reading 314572: 629144 - 943715
Core #4 inserting and reading 314572: 943716 - 1258287
Core #5 inserting and reading 314572: 1258288 - 1572859
Core #8 inserting and reading 314572: 2202004 - 2516575
Core #6 inserting and reading 314572: 1572860 - 1887431
Core #9 inserting and reading 314572: 2516576 - 2831147
Core #13 inserting and reading 314572: 3774864 - 4089435
Core #12 inserting and reading 314572: 3460292 - 3774863
Core #7 inserting and reading 314572: 1887432 - 2202003
Core #14 inserting and reading 314572: 4089436 - 4404007
Core #11 inserting and reading 314572: 3145720 - 3460291
Core #10 inserting and reading 314572: 2831148 - 3145719
Core #15 inserting and reading 314572: 4404008 - 4718579
No key corrupted during read-write test.
cycles per insertion and lookup: 3135
+++++++++Complete function tests+++++++++

HTM = 1, RW-LF = 0, EXT-Table = 1
++++++++Start function tests:+++++++++
Core #1 inserting and reading 349525: 0 - 349524
Core #2 inserting and reading 349525: 349525 - 699049
Core #3 inserting and reading 349525: 699050 - 1048574
Core #4 inserting and reading 349525: 1048575 - 1398099
Core #5 inserting and reading 349525: 1398100 - 1747624
Core #6 inserting and reading 349525: 1747625 - 2097149
Core #7 inserting and reading 349525: 2097150 - 2446674
Core #8 inserting and reading 349525: 2446675 - 2796199
Core #13 inserting and reading 349525: 4194300 - 4543824
Core #10 inserting and reading 349525: 3145725 - 3495249
Core #9 inserting and reading 349525: 2796200 - 3145724
Core #12 inserting and reading 349525: 3844775 - 4194299
Core #11 inserting and reading 349525: 3495250 - 3844774
Core #14 inserting and reading 349525: 4543825 - 4893349
Core #15 inserting and reading 349525: 4893350 - 5242874
No key corrupted during read-write test.
cycles per insertion and lookup: 3787
+++++++++Complete function tests+++++++++

HTM = 1, RW-LF = 1, EXT-Table = 1
++++++++Start function tests:+++++++++
Core #1 inserting and reading 349525: 0 - 349524
Core #2 inserting and reading 349525: 349525 - 699049
Core #3 inserting and reading 349525: 699050 - 1048574
Core #4 inserting and reading 349525: 1048575 - 1398099
Core #5 inserting and reading 349525: 1398100 - 1747624
Core #6 inserting and reading 349525: 1747625 - 2097149
Core #8 inserting and reading 349525: 2446675 - 2796199
Core #7 inserting and reading 349525: 2097150 - 2446674
Core #10 inserting and reading 349525: 3145725 - 3495249
Core #13 inserting and reading 349525: 4194300 - 4543824
Core #14 inserting and reading 349525: 4543825 - 4893349
Core #15 inserting and reading 349525: 4893350 - 5242874
Core #9 inserting and reading 349525: 2796200 - 3145724
Core #12 inserting and reading 349525: 3844775 - 4194299
Core #11 inserting and reading 349525: 3495250 - 3844774
No key corrupted during read-write test.
cycles per insertion and lookup: 3188
+++++++++Complete function tests+++++++++
Test read-write without Hardware transactional memory

HTM = 0, RW-LF = 0, EXT-Table = 0
++++++++Start function tests:+++++++++
Core #1 inserting and reading 314572: 0 - 314571
Core #2 inserting and reading 314572: 314572 - 629143
Core #3 inserting and reading 314572: 629144 - 943715
Core #4 inserting and reading 314572: 943716 - 1258287
Core #5 inserting and reading 314572: 1258288 - 1572859
Core #8 inserting and reading 314572: 2202004 - 2516575
Core #7 inserting and reading 314572: 1887432 - 2202003
Core #13 inserting and reading 314572: 3774864 - 4089435
Core #6 inserting and reading 314572: 1572860 - 1887431
Core #12 inserting and reading 314572: 3460292 - 3774863
Core #14 inserting and reading 314572: 4089436 - 4404007
Core #11 inserting and reading 314572: 3145720 - 3460291
Core #15 inserting and reading 314572: 4404008 - 4718579
Core #9 inserting and reading 314572: 2516576 - 2831147
Core #10 inserting and reading 314572: 2831148 - 3145719
No key corrupted during read-write test.
cycles per insertion and lookup: 2337
+++++++++Complete function tests+++++++++

HTM = 0, RW-LF = 1, EXT-Table = 0
++++++++Start function tests:+++++++++
Core #1 inserting and reading 314572: 0 - 314571
Core #2 inserting and reading 314572: 314572 - 629143
Core #3 inserting and reading 314572: 629144 - 943715
Core #4 inserting and reading 314572: 943716 - 1258287
Core #5 inserting and reading 314572: 1258288 - 1572859
Core #6 inserting and reading 314572: 1572860 - 1887431
Core #7 inserting and reading 314572: 1887432 - 2202003
Core #8 inserting and reading 314572: 2202004 - 2516575
Core #14 inserting and reading 314572: 4089436 - 4404007
Core #13 inserting and reading 314572: 3774864 - 4089435
Core #10 inserting and reading 314572: 2831148 - 3145719
Core #9 inserting and reading 314572: 2516576 - 2831147
Core #15 inserting and reading 314572: 4404008 - 4718579
Core #12 inserting and reading 314572: 3460292 - 3774863
Core #11 inserting and reading 314572: 3145720 - 3460291
No key corrupted during read-write test.
cycles per insertion and lookup: 2200
+++++++++Complete function tests+++++++++

HTM = 0, RW-LF = 0, EXT-Table = 1
++++++++Start function tests:+++++++++
Core #1 inserting and reading 349525: 0 - 349524
Core #2 inserting and reading 349525: 349525 - 699049
Core #3 inserting and reading 349525: 699050 - 1048574
Core #4 inserting and reading 349525: 1048575 - 1398099
Core #5 inserting and reading 349525: 1398100 - 1747624
Core #6 inserting and reading 349525: 1747625 - 2097149
Core #7 inserting and reading 349525: 2097150 - 2446674
Core #8 inserting and reading 349525: 2446675 - 2796199
Core #10 inserting and reading 349525: 3145725 - 3495249
Core #15 inserting and reading 349525: 4893350 - 5242874
Core #13 inserting and reading 349525: 4194300 - 4543824
Core #14 inserting and reading 349525: 4543825 - 4893349
Core #9 inserting and reading 349525: 2796200 - 3145724
Core #11 inserting and reading 349525: 3495250 - 3844774
Core #12 inserting and reading 349525: 3844775 - 4194299
No key corrupted during read-write test.
cycles per insertion and lookup: 2174
+++++++++Complete function tests+++++++++

HTM = 0, RW-LF = 1, EXT-Table = 1
++++++++Start function tests:+++++++++
Core #1 inserting and reading 349525: 0 - 349524
Core #2 inserting and reading 349525: 349525 - 699049
Core #3 inserting and reading 349525: 699050 - 1048574
Core #4 inserting and reading 349525: 1048575 - 1398099
Core #5 inserting and reading 349525: 1398100 - 1747624
Core #6 inserting and reading 349525: 1747625 - 2097149
Core #7 inserting and reading 349525: 2097150 - 2446674
Core #8 inserting and reading 349525: 2446675 - 2796199
Core #10 inserting and reading 349525: 3145725 - 3495249
Core #9 inserting and reading 349525: 2796200 - 3145724
Core #11 inserting and reading 349525: 3495250 - 3844774
Core #13 inserting and reading 349525: 4194300 - 4543824
Core #14 inserting and reading 349525: 4543825 - 4893349
Core #12 inserting and reading 349525: 3844775 - 4194299
Core #15 inserting and reading 349525: 4893350 - 5242874
No key corrupted during read-write test.
cycles per insertion and lookup: 2277
+++++++++Complete function tests+++++++++
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f3843cb6000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/hash_readwrite_func_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f3843c5c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f384397f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f3442400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f384391e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f3042200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f384379f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f2c42000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f384373e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f2841e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f384249a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f2441c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f3842439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f2041a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f344239f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f1c41800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f344233e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f1841600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 74/157 DPDK:fast-tests / ipsec_autotest                    SKIP               0.39s   exit status 77
21:20:44 DPDK_TEST=ipsec_autotest MALLOC_PERTURB_=245 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=ipsec_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>ipsec_autotest
 + ------------------------------------------------------- +
 + Test Suite : IPsec NULL Unit Test Suite
 + ------------------------------------------------------- +
 + Test Suite Summary : IPsec NULL Unit Test Suite
 + ------------------------------------------------------- +
 + Tests Total :       14
 + Tests Skipped :     14
 + Tests Executed :     0
 + Tests Unsupported:   0
 + Tests Passed :       0
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fbfb2f3b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/ipsec_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fbfb2cb2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fbfb2c51000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fbbb1600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fbfb2a9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb7b1400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fbfb2a3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fb3b1200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fbfb179a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fafb1000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fbfb1739000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fabb0e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fbfb16d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa7b0c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fbfb1677000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fa3b0a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fbfb1616000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9fb0800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: No crypto devices found?
------------------------------------------------------------------------------

 75/157 DPDK:fast-tests / kni_autotest                      SKIP               0.39s   exit status 77
21:20:45 DPDK_TEST=kni_autotest MALLOC_PERTURB_=3 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=kni_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>kni_autotest
Cannot run UT due to missing rte_kni module
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f14d445c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/kni_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f14d4402000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f14d417f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f10d2c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f14d411e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f0cd2a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f14d3f9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f08d2800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f14d3f3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f04d2600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f14d2c9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f00d2400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f14d2c39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7efcd2200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f10d2b9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7ef8d2000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f10d2b3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ef4d1e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 76/157 DPDK:fast-tests / kvargs_autotest                   OK                 0.38s
21:20:45 MALLOC_PERTURB_=47 DPDK_TEST=kvargs_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=kvargs_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>kvargs_autotest
== test valid case ==
== test invalid case ==
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f6bd9d2e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/kvargs_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f6bd9ab2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f6bd9a51000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f67d8400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f6bd989f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f63d8200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f6bd983e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f5fd8000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f6bd859a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f5bd7e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f6bd8539000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f57d7c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f6bd84d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f53d7a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6bd8477000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f4fd7800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6bd8416000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4bd7600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 77/157 DPDK:fast-tests / member_autotest                   OK                 0.42s
21:20:46 MALLOC_PERTURB_=19 DPDK_TEST=member_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=member_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>member_autotest
Expected error section begin...
Expected error section end...
Creation of setsums success
insert key success
lookup single key success
delete success
lookup single key for multimatch success
lookup for bulk multimatch success
...
Keys inserted when no space(non-cache) = 99.58% (65261/65536)
...
Keys inserted when eviction happens(cache)= 53.14% (34823/65536)
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f872daa2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/member_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f872da48000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f872d77f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f832c200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f872d71e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f7f2c000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f872d59f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f7b2be00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f872d53e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f772bc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f872c29a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f732ba00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f872c239000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f6f2b800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f832c19f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f6b2b600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f832c13e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f672b400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
rte_member_create_vbf(): Membership vBF create with invalid parameters
rte_member_create_vbf(): Membership vBF create with invalid parameters
rte_member_create_vbf(): Membership vBF create with invalid parameters
rte_member_create_ht(): Membership HT create with invalid parameters
rte_member_create_ht(): Membership HT create with invalid parameters
rte_member_create_ht(): Membership HT create with invalid parameters
rte_member_create_ht(): Hash table based filter created, the table has 65536 entries, 4096 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 65536 entries, 4096 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 65536 entries, 4096 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 4096 keys, needs 65536 bits, 5 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.02205
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 65536 entries, 4096 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 65536 entries, 4096 buckets
rte_member_create(): Creating a setsummary table with mode 0
------------------------------------------------------------------------------

 78/157 DPDK:fast-tests / metrics_autotest                  OK                 0.39s
21:20:46 DPDK_TEST=metrics_autotest MALLOC_PERTURB_=54 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=metrics_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>metrics_autotest
 + ------------------------------------------------------- +
 + Test Suite : Metrics Unit Test Suite
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_metrics_without_init succeeded
 + TestCase [ 1] : test_metrics_reg_name_with_validname succeeded
 + TestCase [ 2] : test_metrics_reg_names succeeded
 + TestCase [ 3] : test_metrics_update_value succeeded
 + TestCase [ 4] : test_metrics_update_values succeeded
 + TestCase [ 5] : test_metrics_get_names succeeded
 + TestCase [ 6] : test_metrics_get_values succeeded
 + TestCase [ 7] : test_metrics_deinitialize succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : Metrics Unit Test Suite
 + ------------------------------------------------------- +
 + Tests Total :        8
 + Tests Skipped :      0
 + Tests Executed :     8
 + Tests Unsupported:   0
 + Tests Passed :       8
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f8cdecb1000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/metrics_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f8cdec57000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f8cde97f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f88dd400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f8cde91e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f84dd200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f8cde79f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f80dd000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f8cde73e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f7cdce00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f8cdd49a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f78dcc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f8cdd439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f74dca00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f88dd39f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f70dc800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f88dd33e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f6cdc600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 79/157 DPDK:fast-tests / power_cpufreq_autotest            SKIP               0.39s   exit status 77
21:20:46 DPDK_TEST=power_cpufreq_autotest MALLOC_PERTURB_=191 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=power_cpufreq_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>power_cpufreq_autotest
Cannot initialise power management for lcore 2, this may occur if environment is not configured correctly(APCI cpufreq) or operating in another valid Power management environment
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f68aabe2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/power_cpufreq_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f68aab88000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f68aab27000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f64a9200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f68aa87f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f60a9000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f68aa81e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f5ca8e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f68aa69f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f58a8c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f68aa63e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f54a8a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f68a939a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f50a8800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f68a9339000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f4ca8600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f68a92d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f48a8400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
POWER: Env isn't set yet!
POWER: Attempting to initialise ACPI cpufreq power management...
POWER: File not opened
POWER: Cannot set governor of lcore 2 to userspace
POWER: Attempting to initialise PSTAT power management...
POWER: File not opened
POWER: Cannot set governor of lcore 2 to performance
POWER: Attempting to initialise VM power management...
GUEST_CHANNEL: Opening channel '/dev/virtio-ports/virtio.serial.port.poweragent.2' for lcore 2
GUEST_CHANNEL: Unable to to connect to '/dev/virtio-ports/virtio.serial.port.poweragent.2' with error No such file or directory
POWER: Unable to set Power Management Environment for lcore 2
------------------------------------------------------------------------------

 80/157 DPDK:fast-tests / power_autotest                    OK                 0.39s
21:20:47 MALLOC_PERTURB_=197 DPDK_TEST=power_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=power_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>power_autotest
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fc091ea8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/power_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fc091e4e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fc091b7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fbc90600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fc091b1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb890400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fc09199f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fb490200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fc09193e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fb090000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fc09069a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fac8fe00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fc090639000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa88fc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fbc9059f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fa48fa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fbc9053e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fa08f800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
POWER: Invalid Power Management Environment(0) set
------------------------------------------------------------------------------

 81/157 DPDK:fast-tests / power_kvm_vm_autotest             SKIP               0.39s   exit status 77
21:20:47 MALLOC_PERTURB_=201 DPDK_TEST=power_kvm_vm_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=power_kvm_vm_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>power_kvm_vm_autotest
Cannot initialise power management for lcore 0, this may occur if environment is not configured correctly(KVM VM) or operating in another valid Power management environment
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fd314cdc000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/power_kvm_vm_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fd314c82000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fd314c21000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fcf13400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fd31497f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fcb13200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fd31491e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fc713000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fd31479f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fc312e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fd31473e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fbf12c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fd31349a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fbb12a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fd313439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fb712800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fcf1339f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fb312600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
POWER: Core(129) is out of range 0...127
GUEST_CHANNEL: Opening channel '/dev/virtio-ports/virtio.serial.port.poweragent.0' for lcore 0
GUEST_CHANNEL: Unable to to connect to '/dev/virtio-ports/virtio.serial.port.poweragent.0' with error No such file or directory
------------------------------------------------------------------------------

 82/157 DPDK:fast-tests / reorder_autotest                  OK                 0.44s
21:20:48 DPDK_TEST=reorder_autotest MALLOC_PERTURB_=45 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=reorder_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>reorder_autotest
 + ------------------------------------------------------- +
 + Test Suite : Reorder Unit Test Suite
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_reorder_create succeeded
 + TestCase [ 1] : test_reorder_init succeeded
 + TestCase [ 2] : test_reorder_find_existing succeeded
 + TestCase [ 3] : test_reorder_free succeeded
 + TestCase [ 4] : test_reorder_insert succeeded
 + TestCase [ 5] : test_reorder_drain succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : Reorder Unit Test Suite
 + ------------------------------------------------------- +
 + Tests Total :        6
 + Tests Skipped :      0
 + Tests Executed :     6
 + Tests Unsupported:   0
 + Tests Passed :       6
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f7bfa122000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/reorder_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f7bf9ea4000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f7bf9e43000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f77f8800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f7bf9c9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f73f8600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f7bf9c3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f6ff8400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f7bf899a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f6bf8200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f7bf8939000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f67f8000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f7bf88d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f63f7e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f7bf8877000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f5ff7c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f7bf8816000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f5bf7a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
REORDER: Invalid reorder buffer name ptr: NULL
REORDER: Invalid reorder buffer size - Not a power of 2
REORDER: Invalid reorder buffer parameter: NULL
REORDER: Invalid reorder buffer memory size: 100, minimum required: 262400
REORDER: Invalid reorder buffer size - Not a power of 2
REORDER: Invalid reorder buffer parameter: NULL
------------------------------------------------------------------------------

 83/157 DPDK:fast-tests / service_autotest                  OK                 4.00s
21:20:48 MALLOC_PERTURB_=179 DPDK_TEST=service_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=service_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>service_autotest
 + ------------------------------------------------------- +
 + Test Suite : service core test suite
 + ------------------------------------------------------- +
 + TestCase [ 0] : unregister_all succeeded
 + TestCase [ 1] : service_name succeeded
 + TestCase [ 2] : service_get_by_name succeeded
Service dummy_service Summary
  dummy_service: stats 1	calls 0	cycles 0	avg: 0
Service dummy_service Summary
  dummy_service: stats 0	calls 0	cycles 0	avg: 0
 + TestCase [ 3] : service_dump succeeded
 + TestCase [ 4] : service_attr_get succeeded
 + TestCase [ 5] : service_lcore_attr_get succeeded
 + TestCase [ 6] : service_probe_capability succeeded
 + TestCase [ 7] : service_start_stop succeeded
 + TestCase [ 8] : service_lcore_add_del succeeded
 + TestCase [ 9] : service_lcore_start_stop succeeded
 + TestCase [10] : service_lcore_en_dis_able succeeded
 + TestCase [11] : service_mt_unsafe_poll succeeded
 + TestCase [12] : service_mt_safe_poll succeeded
perf test for MT Safe: 63.4 cycles per call
 + TestCase [13] : service_app_lcore_mt_safe succeeded
perf test for MT Unsafe: 97.9 cycles per call
 + TestCase [14] : service_app_lcore_mt_unsafe succeeded
 + TestCase [15] : service_may_be_active succeeded
 + TestCase [16] : service_active_two_cores succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : service core test suite
 + ------------------------------------------------------- +
 + Tests Total :       17
 + Tests Skipped :      0
 + Tests Executed :    17
 + Tests Unsupported:   0
 + Tests Passed :      17
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f70285e1000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/service_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f7028587000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f7028526000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f6c26c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f702827f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f6826a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f702821e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f6426800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f702809f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f6026600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f702803e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f5c26400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f7026d9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f5826200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f7026d39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f5426000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f7026cd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f5025e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 84/157 DPDK:fast-tests / thash_autotest                    OK                 0.39s
21:20:52 DPDK_TEST=thash_autotest MALLOC_PERTURB_=186 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=thash_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>thash_autotest
 + ------------------------------------------------------- +
 + Test Suite : thash autotest
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_toeplitz_hash_calc succeeded
 + TestCase [ 1] : test_create_invalid succeeded
 + TestCase [ 2] : test_multiple_create succeeded
 + TestCase [ 3] : test_free_null succeeded
 + TestCase [ 4] : test_add_invalid_helper succeeded
 + TestCase [ 5] : test_find_existing succeeded
 + TestCase [ 6] : test_get_helper succeeded
 + TestCase [ 7] : test_period_overflow succeeded
 + TestCase [ 8] : test_predictable_rss_min_seq succeeded
 + TestCase [ 9] : test_predictable_rss_multirange succeeded
 + TestCase [10] : test_adjust_tuple succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : thash autotest
 + ------------------------------------------------------- +
 + Tests Total :       11
 + Tests Skipped :      0
 + Tests Executed :    11
 + Tests Unsupported:   0
 + Tests Passed :      11
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f9824fb1000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/thash_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f9824f57000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f9824c7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f9423600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f9824c1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f9023400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f9824a9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f8c23200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f9824a3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f8823000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f982379a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f8422e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f9823739000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f8022c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f98236d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f7c22a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f9823677000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f7822800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
HASH: Can't add helper  due to conflict with existing helper second_range
HASH: Can't generate m-sequence due to period overflow
------------------------------------------------------------------------------

 85/157 DPDK:fast-tests / trace_autotest                    OK                 0.38s
21:20:52 DPDK_TEST=trace_autotest MALLOC_PERTURB_=169 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=trace_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>trace_autotest
 + ------------------------------------------------------- +
 + Test Suite : trace autotest
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_trace_mode skipped
 + TestCase [ 1] : test_generic_trace_points succeeded
 + TestCase [ 2] : test_fp_trace_points succeeded
 + TestCase [ 3] : test_trace_point_disable_enable succeeded
 + TestCase [ 4] : test_trace_point_globbing succeeded
 + TestCase [ 5] : test_trace_point_regex succeeded
 + TestCase [ 6] : test_trace_points_lookup succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : trace autotest
 + ------------------------------------------------------- +
 + Tests Total :        7
 + Tests Skipped :      1
 + Tests Executed :     7
 + Tests Unsupported:   0
 + Tests Passed :       6
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f5f65fcd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/trace_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f5f65f73000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f5f65f12000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f5b64600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f5f65c7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f5764400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f5f65c1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f5364200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f5f65a9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f4f64000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f5f65a3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f4b63e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f5f6479a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f4763c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f5f64739000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f4363a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f5f646d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f3f63800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 86/157 DPDK:fast-tests / telemetry_json_autotest           OK                 0.39s
21:20:53 DPDK_TEST=telemetry_json_autotest MALLOC_PERTURB_=119 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=telemetry_json_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>telemetry_json_autotest
test_basic_array: buf = '["meaning of life",42]', expected = '["meaning of life",42]'
test_basic_obj: buf = '{"weddings":4,"funerals":1}', expected = '{"weddings":4,"funerals":1}'
test_overflow_array: buf = '["Arsenal","Chelsea"]', expected = '["Arsenal","Chelsea"]'
test_overflow_obj: buf = '{"Italy":20,"Wales":61}', expected = '{"Italy":20,"Wales":61}'
test_large_array_element: buf = 'ABC', expected = 'ABC'
test_large_obj_element: buf = 'XYZ', expected = 'XYZ'
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f85b8bd9000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/telemetry_json_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f85b8b7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f85b8b1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f81b7600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f85b899f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f7db7400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f85b893e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f79b7200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f85b769a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f75b7000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f85b7639000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f71b6e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f81b759f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f6db6c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f81b753e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f69b6a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f81b74dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f65b6800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 87/157 DPDK:fast-tests / telemetry_data_autotest           OK                 0.40s
21:20:53 MALLOC_PERTURB_=124 DPDK_TEST=telemetry_data_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=telemetry_data_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>telemetry_data_autotest

connect_to_socket: {"version":"DPDK 21.08.0-rc0","pid":2374,"max_output_len":16384}
test_case_array_string: buf = '{"/test":["aaaa","bbbb","cccc","dddd","eeee"]}', expected = '{"/test":["aaaa","bbbb","cccc","dddd","eeee"]}'
test_case_array_int: buf = '{"/test":[0,1,2,3,4]}', expected = '{"/test":[0,1,2,3,4]}'
test_case_array_u64: buf = '{"/test":[0,1,2,3,4]}', expected = '{"/test":[0,1,2,3,4]}'
test_case_add_dict_int: buf = '{"/test":{"dict_0":0,"dict_1":1,"dict_2":2,"dict_3":3,"dict_4":4}}', expected = '{"/test":{"dict_0":0,"dict_1":1,"dict_2":2,"dict_3":3,"dict_4":4}}'
test_case_add_dict_u64: buf = '{"/test":{"dict_0":0,"dict_1":1,"dict_2":2,"dict_3":3,"dict_4":4}}', expected = '{"/test":{"dict_0":0,"dict_1":1,"dict_2":2,"dict_3":3,"dict_4":4}}'
test_case_add_dict_string: buf = '{"/test":{"dict_0":"aaaa","dict_1":"bbbb","dict_2":"cccc","dict_3":"dddd"}}', expected = '{"/test":{"dict_0":"aaaa","dict_1":"bbbb","dict_2":"cccc","dict_3":"dddd"}}'
test_dict_with_array_int_values: buf = '{"/test":{"dict_0":[0,1,2,3,4],"dict_1":[0,1,2,3,4]}}', expected = '{"/test":{"dict_0":[0,1,2,3,4],"dict_1":[0,1,2,3,4]}}'
test_dict_with_array_u64_values: buf = '{"/test":{"dict_0":[0,1,2,3,4,5,6,7,8,9],"dict_1":[0,1,2,3,4,5,6,7,8,9]}}', expected = '{"/test":{"dict_0":[0,1,2,3,4,5,6,7,8,9],"dict_1":[0,1,2,3,4,5,6,7,8,9]}}'
test_dict_with_array_string_values: buf = '{"/test":{"dict_0":["aaaa"],"dict_1":["bbbb"]}}', expected = '{"/test":{"dict_0":["aaaa"],"dict_1":["bbbb"]}}'
test_array_with_array_int_values: buf = '{"/test":[[0,1,2,3,4],[0,1,2,3,4]]}', expected = '{"/test":[[0,1,2,3,4],[0,1,2,3,4]]}'
test_array_with_array_u64_values: buf = '{"/test":[[0,1,2,3,4],[0,1,2,3,4]]}', expected = '{"/test":[[0,1,2,3,4],[0,1,2,3,4]]}'
test_array_with_array_string_values: buf = '{"/test":[["aaaa"],["bbbb"]]}', expected = '{"/test":[["aaaa"],["bbbb"]]}'
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fee3b3ab000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/telemetry_data_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fee3b351000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fee3b07f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fea39a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fee3b01e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fe639800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fee3ae9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fe239600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fee3ae3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fde39400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fee39b9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fda39200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fee39b39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fd639000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fee39ad8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fd238e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fee39a77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fce38c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 88/157 DPDK:fast-tests / ring_pmd_autotest                 OK                 0.39s
21:20:54 MALLOC_PERTURB_=64 DPDK_TEST=ring_pmd_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=ring_pmd_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>ring_pmd_autotest
 + ------------------------------------------------------- +
 + Test Suite : Test Pmd Ring Unit Test Suite
nb_ports=0
tx_porta=0 rx_portb=1 rxtx_portc=2 rxtx_portd=3 rxtx_porte=4
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_ethdev_configure_ports succeeded
Testing send and receive RING_SIZE/2 packets (tx_porta -> rx_portb)
 + TestCase [ 1] : test_send_basic_packets succeeded
Testing ring PMD stats_get port 2
 + TestCase [ 2] : test_get_stats_for_port succeeded
Testing ring PMD stats_reset port 2
 + TestCase [ 3] : test_stats_reset_for_port succeeded
Testing send and receive 1 packet (rxtx_portd -> rxtx_porte)
Testing send and receive 1 packet (rxtx_porte -> rxtx_portd)
Testing send and receive 1 packet (rxtx_portd -> rxtx_portd)
Testing send and receive 1 packet (rxtx_porte -> rxtx_porte)
 + TestCase [ 4] : test_pmd_ring_pair_create_attach succeeded
 + TestCase [ 5] : test_command_line_ring_port succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : Test Pmd Ring Unit Test Suite
 + ------------------------------------------------------- +
 + Tests Total :        6
 + Tests Skipped :      0
 + Tests Executed :     6
 + Tests Unsupported:   0
 + Tests Passed :       6
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f7663114000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/ring_pmd_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f7662e94000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f7662e33000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f7261800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f7662c9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f6e61600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f7662c3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f6a61400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f766199a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f6661200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f7661939000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f6261000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f76618d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f5e60e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f7661877000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f5a60c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f7661816000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f5660a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 89/157 DPDK:fast-tests / event_eth_tx_adapter_autotest     OK                 1.12s
21:20:54 DPDK_TEST=event_eth_tx_adapter_autotest MALLOC_PERTURB_=243 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=event_eth_tx_adapter_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>event_eth_tx_adapter_autotest
 + ------------------------------------------------------- +
 + Test Suite : tx event eth adapter test suite
Port 0 MAC: 00 00 00 00 00 00
Port 1 MAC: 00 00 00 00 00 00
Failed to find a valid event device, testing with event_sw0 device
 + ------------------------------------------------------- +
 + TestCase [ 0] : tx_adapter_create_free succeeded
 + TestCase [ 1] : tx_adapter_queue_add_del succeeded
 + TestCase [ 2] : tx_adapter_start_stop succeeded
 + TestCase [ 3] : tx_adapter_service succeeded
 + TestCase [ 4] : tx_adapter_dynamic_device succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : tx event eth adapter test suite
 + ------------------------------------------------------- +
 + Tests Total :        5
 + Tests Skipped :      0
 + Tests Executed :     5
 + Tests Unsupported:   0
 + Tests Passed :       5
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f7e0604e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/event_eth_tx_adapter_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f7e05db2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f7e05d51000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f7a04800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f7e05b9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f7604600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f7e05b3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f7204400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f7e0489a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f6e04200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f7e04839000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f6a04000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f7a0479f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f6603e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f7a0473e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f6203c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f7a046dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f5e03a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
Invalid port_id=2
EVENTDEV: txa_service_adapter_free() line 744: 1 Tx queues not deleted
------------------------------------------------------------------------------

 90/157 DPDK:fast-tests / bitratestats_autotest             OK                 0.39s
21:20:55 MALLOC_PERTURB_=210 DPDK_TEST=bitratestats_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=bitratestats_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>bitratestats_autotest
 + ------------------------------------------------------- +
 + Test Suite : BitRate Stats Unit Test Suite
port in ring setup : 0
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_stats_bitrate_create succeeded
 + TestCase [ 1] : test_stats_bitrate_reg succeeded
 + TestCase [ 2] : test_stats_bitrate_reg_invalidpointer succeeded
 + TestCase [ 3] : test_stats_bitrate_calc_invalid_bitrate_data succeeded
 + TestCase [ 4] : test_stats_bitrate_calc_invalid_portid_1 succeeded
 + TestCase [ 5] : test_stats_bitrate_calc_invalid_portid_2 succeeded
 + TestCase [ 6] : test_stats_bitrate_calc_non_existing_portid succeeded
 + TestCase [ 7] : test_stats_bitrate_calc succeeded
 + TestCase [ 8] : test_stats_bitrate_free succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : BitRate Stats Unit Test Suite
 + ------------------------------------------------------- +
 + Tests Total :        9
 + Tests Skipped :      0
 + Tests Executed :     9
 + Tests Unsupported:   0
 + Tests Passed :       9
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f0b5b2a4000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/bitratestats_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f0b5b24a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f0b5af7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f0759a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f0b5af1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f0359800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f0b5ad9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7eff59600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f0b5ad3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7efb59400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f0b59a9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7ef759200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f0b59a39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7ef359000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f075999f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7eef58e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f075993e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7eeb58c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
Invalid port_id=33
Invalid port_id=65535
Invalid port_id=31
------------------------------------------------------------------------------

 91/157 DPDK:fast-tests / latencystats_autotest             FAIL               0.33s   exit status 1
21:20:55 MALLOC_PERTURB_=139 DPDK_TEST=latencystats_autotest /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=latencystats_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>latencystats_autotest
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f2940ce0000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/latencystats_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f2940c86000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f2940c25000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f253f400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f294097f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f213f200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f294091e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f1d3f000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f294079f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f193ee00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f294073e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f153ec00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f293f49a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f113ea00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f293f439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f0d3e800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f253f39f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f093e600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
=================================================================
==2463==ERROR: AddressSanitizer: global-buffer-overflow on address 0x5638094f1c00 at pc 0x7f2944361c65 bp 0x7ffc31b00120 sp 0x7ffc31aff8c8
READ of size 1 at 0x5638094f1c00 thread T0
    #0 0x7f2944361c64  (/lib/x86_64-linux-gnu/libasan.so.5+0xd6c64)
    #1 0x563806e01d1f in test_latencystats_get_names (/dpdk/build/app/test/dpdk-test+0x1781d1f)
    #2 0x5638069405a3 in unit_test_suite_runner (/dpdk/build/app/test/dpdk-test+0x12c05a3)
    #3 0x563806934c7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #4 0x5638072f75a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #5 0x5638072f47b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #6 0x5638072fda78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #7 0x5638072f48a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #8 0x563805b8d837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #9 0x7f2943b530b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)
    #10 0x563806934b6d in _start (/dpdk/build/app/test/dpdk-test+0x12b4b6d)

0x5638094f1c00 is located 0 bytes to the right of global variable 'lat_stats_strings' defined in '../app/test/test_latencystats.c:23:31' (0x5638094f1b00) of size 256
0x5638094f1c00 is located 32 bytes to the left of global variable 'test_struct_latencystats_autotest' defined in '../app/test/test_latencystats.c:209:1' (0x5638094f1c20) of size 32
SUMMARY: AddressSanitizer: global-buffer-overflow (/lib/x86_64-linux-gnu/libasan.so.5+0xd6c64) 
Shadow bytes around the buggy address:
  0x0ac781296330: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac781296340: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac781296350: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac781296360: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ac781296370: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
=>0x0ac781296380:[f9]f9 f9 f9 00 00 00 00 f9 f9 f9 f9 00 00 00 00
  0x0ac781296390: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ac7812963a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ac7812963b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 f9 f9 f9
  0x0ac7812963c0: f9 f9 f9 f9 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ac7812963d0: 00 00 00 00 00 00 00 00 f9 f9 f9 f9 f9 f9 f9 f9
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07 
  Heap left redzone:       fa
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
  Shadow gap:              cc
==2463==ABORTING
------------------------------------------------------------------------------

 92/157 DPDK:fast-tests / pdump_autotest                    OK                 5.70s
21:20:56 DPDK_TEST=pdump_autotest MALLOC_PERTURB_=219 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=pdump_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>pdump_autotest
IN SECONDARY PROCESS

***** flags = RTE_PDUMP_FLAG_TX *****
pdump_enable success
pdump_disable success
pdump_enable_by_deviceid success
pdump_disable_by_deviceid success

***** flags = RTE_PDUMP_FLAG_RX *****
pdump_enable success
pdump_disable success
pdump_enable_by_deviceid success
pdump_disable_by_deviceid success

***** flags = RTE_PDUMP_FLAG_RXTX *****
pdump_enable success
pdump_disable success
pdump_enable_by_deviceid success
pdump_disable_by_deviceid success
IN PRIMARY PROCESS
pdump_init success
pdump_uninit success
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fac01f02000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/pdump_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fac01c86000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fac01c25000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fa800600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fac01a9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fa400400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fac01a3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fa000200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fac0079a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f9c00000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fac00739000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f97ffe00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fac006d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f93ffc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fac00677000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f8fffa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fac00616000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f8bff800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/pdump_autotest/mp_socket_2505_511d4dc96b8b0
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL:   Invalid NUMA socket, default to 0
------------------------------------------------------------------------------

 93/157 DPDK:fast-tests / compressdev_autotest              SKIP               0.40s   exit status 77
21:21:01 DPDK_TEST=compressdev_autotest MALLOC_PERTURB_=35 /dpdk/build/app/test/dpdk-test '-l 0-15' --file-prefix=compressdev_autotest
----------------------------------- output -----------------------------------
stdout:
RTE>>compressdev_autotest
 + ------------------------------------------------------- +
 + Test Suite : compressdev unit test suite
 + ------------------------------------------------------- +
 + Test Suite Summary : compressdev unit test suite
 + ------------------------------------------------------- +
 + Tests Total :       27
 + Tests Skipped :     27
 + Tests Executed :     0
 + Tests Unsupported:   0
 + Tests Passed :       0
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fc6a11e0000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/compressdev_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fc6a1186000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fc6a1125000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fc29f800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fc6a0e7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fbe9f600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fc6a0e1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fba9f400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fc6a0c9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fb69f200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fc6a0c3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fb29f000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fc69f99a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fae9ee00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fc69f939000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7faa9ec00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fc69f8d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fa69ea00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: Need at least one compress device
------------------------------------------------------------------------------

 94/157 DPDK:perf-tests / ring_perf_autotest                OK                20.04s
21:21:02 DPDK_TEST=ring_perf_autotest MALLOC_PERTURB_=3 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>ring_perf_autotest

### Testing single element enq/deq ###
legacy APIs: SP/SC: single: 49.04
legacy APIs: MP/MC: single: 86.66

### Testing burst enq/deq ###
legacy APIs: SP/SC: burst (size: 8): 105.20
legacy APIs: SP/SC: burst (size: 32): 251.81
legacy APIs: MP/MC: burst (size: 8): 139.52
legacy APIs: MP/MC: burst (size: 32): 299.41

### Testing bulk enq/deq ###
legacy APIs: SP/SC: bulk (size: 8): 103.10
legacy APIs: SP/SC: bulk (size: 32): 270.17
legacy APIs: MP/MC: bulk (size: 8): 139.26
legacy APIs: MP/MC: bulk (size: 32): 284.50

### Testing empty bulk deq ###
legacy APIs: SP/SC: bulk (size: 8): 14.00
legacy APIs: MP/MC: bulk (size: 8): 14.83

### Testing using two hyperthreads ###
legacy APIs: SP/SC: bulk (size: 8): 42.60
legacy APIs: MP/MC: bulk (size: 8): 97.25
legacy APIs: SP/SC: bulk (size: 32): 25.46
legacy APIs: MP/MC: bulk (size: 32): 31.98

### Testing using two NUMA nodes ###
legacy APIs: SP/SC: bulk (size: 8): 206.16
legacy APIs: MP/MC: bulk (size: 8): 328.50
legacy APIs: SP/SC: bulk (size: 32): 60.63
legacy APIs: MP/MC: bulk (size: 32): 97.46

### Testing using all worker nodes ###

Bulk enq/dequeue count on size 8
Core [0] count = 4592
Core [1] count = 5469
Core [2] count = 4786
Core [3] count = 4847
Core [4] count = 4808
Core [5] count = 4879
Core [6] count = 4884
Core [7] count = 4843
Core [8] count = 5167
Core [9] count = 5188
Core [10] count = 5152
Core [11] count = 5156
Core [12] count = 5168
Core [13] count = 5174
Core [14] count = 5150
Core [15] count = 5159
Total count (size: 8): 80422

Bulk enq/dequeue count on size 32
Core [0] count = 5342
Core [1] count = 5654
Core [2] count = 5596
Core [3] count = 5653
Core [4] count = 5687
Core [5] count = 5681
Core [6] count = 5676
Core [7] count = 5663
Core [8] count = 6110
Core [9] count = 6096
Core [10] count = 6108
Core [11] count = 6099
Core [12] count = 6041
Core [13] count = 6099
Core [14] count = 6109
Core [15] count = 6087
Total count (size: 32): 93701

### Testing single element enq/deq ###
elem APIs: element size 16B: SP/SC: single: 63.55
elem APIs: element size 16B: MP/MC: single: 103.11

### Testing burst enq/deq ###
elem APIs: element size 16B: SP/SC: burst (size: 8): 256.39
elem APIs: element size 16B: SP/SC: burst (size: 32): 867.26
elem APIs: element size 16B: MP/MC: burst (size: 8): 292.50
elem APIs: element size 16B: MP/MC: burst (size: 32): 884.38

### Testing bulk enq/deq ###
elem APIs: element size 16B: SP/SC: bulk (size: 8): 255.52
elem APIs: element size 16B: SP/SC: bulk (size: 32): 867.44
elem APIs: element size 16B: MP/MC: bulk (size: 8): 292.43
elem APIs: element size 16B: MP/MC: bulk (size: 32): 891.40

### Testing empty bulk deq ###
elem APIs: element size 16B: SP/SC: bulk (size: 8): 14.00
elem APIs: element size 16B: MP/MC: bulk (size: 8): 14.82

### Testing using two hyperthreads ###
elem APIs: element size 16B: SP/SC: bulk (size: 8): 89.38
elem APIs: element size 16B: MP/MC: bulk (size: 8): 111.11
elem APIs: element size 16B: SP/SC: bulk (size: 32): 39.17
elem APIs: element size 16B: MP/MC: bulk (size: 32): 38.67

### Testing using two NUMA nodes ###
elem APIs: element size 16B: SP/SC: bulk (size: 8): 260.14
elem APIs: element size 16B: MP/MC: bulk (size: 8): 376.26
elem APIs: element size 16B: SP/SC: bulk (size: 32): 116.50
elem APIs: element size 16B: MP/MC: bulk (size: 32): 117.04

### Testing using all worker nodes ###

Bulk enq/dequeue count on size 8
Core [0] count = 5506
Core [1] count = 5680
Core [2] count = 5709
Core [3] count = 5595
Core [4] count = 5713
Core [5] count = 5665
Core [6] count = 5708
Core [7] count = 5693
Core [8] count = 6059
Core [9] count = 6078
Core [10] count = 6078
Core [11] count = 6098
Core [12] count = 6068
Core [13] count = 6061
Core [14] count = 6077
Core [15] count = 6061
Total count (size: 8): 93849

Bulk enq/dequeue count on size 32
Core [0] count = 6130
Core [1] count = 6445
Core [2] count = 6375
Core [3] count = 6420
Core [4] count = 6431
Core [5] count = 6423
Core [6] count = 6401
Core [7] count = 6376
Core [8] count = 6886
Core [9] count = 6881
Core [10] count = 6870
Core [11] count = 6894
Core [12] count = 6909
Core [13] count = 6880
Core [14] count = 6903
Core [15] count = 6787
Total count (size: 32): 106011
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f172573d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f17254b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f1725451000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f1323e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f172529f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f0f23c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f172523e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f0b23a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f1723f9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f0723800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f1723f39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f0323600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f1723ed8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7eff23400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f1723e77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7efb23200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f1723e16000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ef723000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 95/157 DPDK:perf-tests / mempool_perf_autotest             OK              1112.45s
21:21:22 MALLOC_PERTURB_=163 DPDK_TEST=mempool_perf_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>mempool_perf_autotest
start performance test (without cache)
mempool_autotest cache=0 cores=1 n_get_bulk=1 n_put_bulk=1 n_keep=32 rate_persec=25231360
mempool_autotest cache=0 cores=1 n_get_bulk=1 n_put_bulk=1 n_keep=128 rate_persec=25388646
mempool_autotest cache=0 cores=1 n_get_bulk=1 n_put_bulk=4 n_keep=32 rate_persec=39059456
mempool_autotest cache=0 cores=1 n_get_bulk=1 n_put_bulk=4 n_keep=128 rate_persec=39177420
mempool_autotest cache=0 cores=1 n_get_bulk=1 n_put_bulk=32 n_keep=32 rate_persec=45835878
mempool_autotest cache=0 cores=1 n_get_bulk=1 n_put_bulk=32 n_keep=128 rate_persec=46150451
mempool_autotest cache=0 cores=1 n_get_bulk=4 n_put_bulk=1 n_keep=32 rate_persec=39308492
mempool_autotest cache=0 cores=1 n_get_bulk=4 n_put_bulk=1 n_keep=128 rate_persec=39505100
mempool_autotest cache=0 cores=1 n_get_bulk=4 n_put_bulk=4 n_keep=32 rate_persec=87359488
mempool_autotest cache=0 cores=1 n_get_bulk=4 n_put_bulk=4 n_keep=128 rate_persec=87595417
mempool_autotest cache=0 cores=1 n_get_bulk=4 n_put_bulk=32 n_keep=32 rate_persec=131019571
mempool_autotest cache=0 cores=1 n_get_bulk=4 n_put_bulk=32 n_keep=128 rate_persec=131425894
mempool_autotest cache=0 cores=1 n_get_bulk=32 n_put_bulk=1 n_keep=32 rate_persec=47238348
mempool_autotest cache=0 cores=1 n_get_bulk=32 n_put_bulk=1 n_keep=128 rate_persec=47408742
mempool_autotest cache=0 cores=1 n_get_bulk=32 n_put_bulk=4 n_keep=32 rate_persec=139906252
mempool_autotest cache=0 cores=1 n_get_bulk=32 n_put_bulk=4 n_keep=128 rate_persec=139014963
mempool_autotest cache=0 cores=1 n_get_bulk=32 n_put_bulk=32 n_keep=32 rate_persec=291464806
mempool_autotest cache=0 cores=1 n_get_bulk=32 n_put_bulk=32 n_keep=128 rate_persec=297782476
mempool_autotest cache=0 cores=2 n_get_bulk=1 n_put_bulk=1 n_keep=32 rate_persec=8165785
mempool_autotest cache=0 cores=2 n_get_bulk=1 n_put_bulk=1 n_keep=128 rate_persec=6986137
mempool_autotest cache=0 cores=2 n_get_bulk=1 n_put_bulk=4 n_keep=32 rate_persec=10079436
mempool_autotest cache=0 cores=2 n_get_bulk=1 n_put_bulk=4 n_keep=128 rate_persec=10013900
mempool_autotest cache=0 cores=2 n_get_bulk=1 n_put_bulk=32 n_keep=32 rate_persec=10603724
mempool_autotest cache=0 cores=2 n_get_bulk=1 n_put_bulk=32 n_keep=128 rate_persec=10800332
mempool_autotest cache=0 cores=2 n_get_bulk=4 n_put_bulk=1 n_keep=32 rate_persec=9515826
mempool_autotest cache=0 cores=2 n_get_bulk=4 n_put_bulk=1 n_keep=128 rate_persec=9384754
mempool_autotest cache=0 cores=2 n_get_bulk=4 n_put_bulk=4 n_keep=32 rate_persec=32479640
mempool_autotest cache=0 cores=2 n_get_bulk=4 n_put_bulk=4 n_keep=128 rate_persec=30985420
mempool_autotest cache=0 cores=2 n_get_bulk=4 n_put_bulk=32 n_keep=32 rate_persec=37814271
mempool_autotest cache=0 cores=2 n_get_bulk=4 n_put_bulk=32 n_keep=128 rate_persec=41117286
mempool_autotest cache=0 cores=2 n_get_bulk=32 n_put_bulk=1 n_keep=32 rate_persec=9725542
mempool_autotest cache=0 cores=2 n_get_bulk=32 n_put_bulk=1 n_keep=128 rate_persec=9843506
mempool_autotest cache=0 cores=2 n_get_bulk=32 n_put_bulk=4 n_keep=32 rate_persec=36306943
mempool_autotest cache=0 cores=2 n_get_bulk=32 n_put_bulk=4 n_keep=128 rate_persec=40527462
mempool_autotest cache=0 cores=2 n_get_bulk=32 n_put_bulk=32 n_keep=32 rate_persec=180381286
mempool_autotest cache=0 cores=2 n_get_bulk=32 n_put_bulk=32 n_keep=128 rate_persec=203436850
mempool_autotest cache=0 cores=16 n_get_bulk=1 n_put_bulk=1 n_keep=32 rate_persec=1048576
mempool_autotest cache=0 cores=16 n_get_bulk=1 n_put_bulk=1 n_keep=128 rate_persec=838848
mempool_autotest cache=0 cores=16 n_get_bulk=1 n_put_bulk=4 n_keep=32 rate_persec=419424
mempool_autotest cache=0 cores=16 n_get_bulk=1 n_put_bulk=4 n_keep=128 rate_persec=629136
mempool_autotest cache=0 cores=16 n_get_bulk=1 n_put_bulk=32 n_keep=32 rate_persec=629136
mempool_autotest cache=0 cores=16 n_get_bulk=1 n_put_bulk=32 n_keep=128 rate_persec=629136
mempool_autotest cache=0 cores=16 n_get_bulk=4 n_put_bulk=1 n_keep=32 rate_persec=419424
mempool_autotest cache=0 cores=16 n_get_bulk=4 n_put_bulk=1 n_keep=128 rate_persec=419424
mempool_autotest cache=0 cores=16 n_get_bulk=4 n_put_bulk=4 n_keep=32 rate_persec=1782568
mempool_autotest cache=0 cores=16 n_get_bulk=4 n_put_bulk=4 n_keep=128 rate_persec=2202008
mempool_autotest cache=0 cores=16 n_get_bulk=4 n_put_bulk=32 n_keep=32 rate_persec=2516576
mempool_autotest cache=0 cores=16 n_get_bulk=4 n_put_bulk=32 n_keep=128 rate_persec=2516576
mempool_autotest cache=0 cores=16 n_get_bulk=32 n_put_bulk=1 n_keep=32 rate_persec=419424
mempool_autotest cache=0 cores=16 n_get_bulk=32 n_put_bulk=1 n_keep=128 rate_persec=629136
mempool_autotest cache=0 cores=16 n_get_bulk=32 n_put_bulk=4 n_keep=32 rate_persec=2306864
mempool_autotest cache=0 cores=16 n_get_bulk=32 n_put_bulk=4 n_keep=128 rate_persec=2306864
mempool_autotest cache=0 cores=16 n_get_bulk=32 n_put_bulk=32 n_keep=32 rate_persec=16423319
mempool_autotest cache=0 cores=16 n_get_bulk=32 n_put_bulk=32 n_keep=128 rate_persec=10774112
start performance test for ring_mp_mc (without cache)
mempool_autotest cache=0 cores=1 n_get_bulk=1 n_put_bulk=1 n_keep=32 rate_persec=25218252
mempool_autotest cache=0 cores=1 n_get_bulk=1 n_put_bulk=1 n_keep=128 rate_persec=25375539
mempool_autotest cache=0 cores=1 n_get_bulk=1 n_put_bulk=4 n_keep=32 rate_persec=39085670
mempool_autotest cache=0 cores=1 n_get_bulk=1 n_put_bulk=4 n_keep=128 rate_persec=39151206
mempool_autotest cache=0 cores=1 n_get_bulk=1 n_put_bulk=32 n_keep=32 rate_persec=45822771
mempool_autotest cache=0 cores=1 n_get_bulk=1 n_put_bulk=32 n_keep=128 rate_persec=46084915
mempool_autotest cache=0 cores=1 n_get_bulk=4 n_put_bulk=1 n_keep=32 rate_persec=39282278
mempool_autotest cache=0 cores=1 n_get_bulk=4 n_put_bulk=1 n_keep=128 rate_persec=39531315
mempool_autotest cache=0 cores=1 n_get_bulk=4 n_put_bulk=4 n_keep=32 rate_persec=87529881
mempool_autotest cache=0 cores=1 n_get_bulk=4 n_put_bulk=4 n_keep=128 rate_persec=87687168
mempool_autotest cache=0 cores=1 n_get_bulk=4 n_put_bulk=32 n_keep=32 rate_persec=131045785
mempool_autotest cache=0 cores=1 n_get_bulk=4 n_put_bulk=32 n_keep=128 rate_persec=131294822
mempool_autotest cache=0 cores=1 n_get_bulk=32 n_put_bulk=1 n_keep=32 rate_persec=47251456
mempool_autotest cache=0 cores=1 n_get_bulk=32 n_put_bulk=1 n_keep=128 rate_persec=47421849
mempool_autotest cache=0 cores=1 n_get_bulk=32 n_put_bulk=4 n_keep=32 rate_persec=139932467
mempool_autotest cache=0 cores=1 n_get_bulk=32 n_put_bulk=4 n_keep=128 rate_persec=139211571
mempool_autotest cache=0 cores=1 n_get_bulk=32 n_put_bulk=32 n_keep=32 rate_persec=291399270
mempool_autotest cache=0 cores=1 n_get_bulk=32 n_put_bulk=32 n_keep=128 rate_persec=297808691
mempool_autotest cache=0 cores=2 n_get_bulk=1 n_put_bulk=1 n_keep=32 rate_persec=8244428
mempool_autotest cache=0 cores=2 n_get_bulk=1 n_put_bulk=1 n_keep=128 rate_persec=6881279
mempool_autotest cache=0 cores=2 n_get_bulk=1 n_put_bulk=4 n_keep=32 rate_persec=10367795
mempool_autotest cache=0 cores=2 n_get_bulk=1 n_put_bulk=4 n_keep=128 rate_persec=9922149
mempool_autotest cache=0 cores=2 n_get_bulk=1 n_put_bulk=32 n_keep=32 rate_persec=10171187
mempool_autotest cache=0 cores=2 n_get_bulk=1 n_put_bulk=32 n_keep=128 rate_persec=10276044
mempool_autotest cache=0 cores=2 n_get_bulk=4 n_put_bulk=1 n_keep=32 rate_persec=9620684
mempool_autotest cache=0 cores=2 n_get_bulk=4 n_put_bulk=1 n_keep=128 rate_persec=9882828
mempool_autotest cache=0 cores=2 n_get_bulk=4 n_put_bulk=4 n_keep=32 rate_persec=30683955
mempool_autotest cache=0 cores=2 n_get_bulk=4 n_put_bulk=4 n_keep=128 rate_persec=27197439
mempool_autotest cache=0 cores=2 n_get_bulk=4 n_put_bulk=32 n_keep=32 rate_persec=34406400
mempool_autotest cache=0 cores=2 n_get_bulk=4 n_put_bulk=32 n_keep=128 rate_persec=35821976
mempool_autotest cache=0 cores=2 n_get_bulk=32 n_put_bulk=1 n_keep=32 rate_persec=9502719
mempool_autotest cache=0 cores=2 n_get_bulk=32 n_put_bulk=1 n_keep=128 rate_persec=9555148
mempool_autotest cache=0 cores=2 n_get_bulk=32 n_put_bulk=4 n_keep=32 rate_persec=34930687
mempool_autotest cache=0 cores=2 n_get_bulk=32 n_put_bulk=4 n_keep=128 rate_persec=36909874
mempool_autotest cache=0 cores=2 n_get_bulk=32 n_put_bulk=32 n_keep=32 rate_persec=154638745
mempool_autotest cache=0 cores=2 n_get_bulk=32 n_put_bulk=32 n_keep=128 rate_persec=170314956
mempool_autotest cache=0 cores=16 n_get_bulk=1 n_put_bulk=1 n_keep=32 rate_persec=838848
mempool_autotest cache=0 cores=16 n_get_bulk=1 n_put_bulk=1 n_keep=128 rate_persec=733992
mempool_autotest cache=0 cores=16 n_get_bulk=1 n_put_bulk=4 n_keep=32 rate_persec=838848
mempool_autotest cache=0 cores=16 n_get_bulk=1 n_put_bulk=4 n_keep=128 rate_persec=629136
mempool_autotest cache=0 cores=16 n_get_bulk=1 n_put_bulk=32 n_keep=32 rate_persec=629136
mempool_autotest cache=0 cores=16 n_get_bulk=1 n_put_bulk=32 n_keep=128 rate_persec=629136
mempool_autotest cache=0 cores=16 n_get_bulk=4 n_put_bulk=1 n_keep=32 rate_persec=838848
mempool_autotest cache=0 cores=16 n_get_bulk=4 n_put_bulk=1 n_keep=128 rate_persec=838848
mempool_autotest cache=0 cores=16 n_get_bulk=4 n_put_bulk=4 n_keep=32 rate_persec=2097152
mempool_autotest cache=0 cores=16 n_get_bulk=4 n_put_bulk=4 n_keep=128 rate_persec=2202008
mempool_autotest cache=0 cores=16 n_get_bulk=4 n_put_bulk=32 n_keep=32 rate_persec=3145728
mempool_autotest cache=0 cores=16 n_get_bulk=4 n_put_bulk=32 n_keep=128 rate_persec=2936000
mempool_autotest cache=0 cores=16 n_get_bulk=32 n_put_bulk=1 n_keep=32 rate_persec=838848
mempool_autotest cache=0 cores=16 n_get_bulk=32 n_put_bulk=1 n_keep=128 rate_persec=1048576
mempool_autotest cache=0 cores=16 n_get_bulk=32 n_put_bulk=4 n_keep=32 rate_persec=3565152
mempool_autotest cache=0 cores=16 n_get_bulk=32 n_put_bulk=4 n_keep=128 rate_persec=3565152
mempool_autotest cache=0 cores=16 n_get_bulk=32 n_put_bulk=32 n_keep=32 rate_persec=19608368
mempool_autotest cache=0 cores=16 n_get_bulk=32 n_put_bulk=32 n_keep=128 rate_persec=19818080
start performance test (with cache)
mempool_autotest cache=512 cores=1 n_get_bulk=1 n_put_bulk=1 n_keep=32 rate_persec=168768307
mempool_autotest cache=512 cores=1 n_get_bulk=1 n_put_bulk=1 n_keep=128 rate_persec=174391296
mempool_autotest cache=512 cores=1 n_get_bulk=1 n_put_bulk=4 n_keep=32 rate_persec=221944217
mempool_autotest cache=512 cores=1 n_get_bulk=1 n_put_bulk=4 n_keep=128 rate_persec=229598822
mempool_autotest cache=512 cores=1 n_get_bulk=1 n_put_bulk=32 n_keep=32 rate_persec=254319001
mempool_autotest cache=512 cores=1 n_get_bulk=1 n_put_bulk=32 n_keep=128 rate_persec=272105472
mempool_autotest cache=512 cores=1 n_get_bulk=4 n_put_bulk=1 n_keep=32 rate_persec=219021312
mempool_autotest cache=512 cores=1 n_get_bulk=4 n_put_bulk=1 n_keep=128 rate_persec=228392960
mempool_autotest cache=512 cores=1 n_get_bulk=4 n_put_bulk=4 n_keep=32 rate_persec=317705420
mempool_autotest cache=512 cores=1 n_get_bulk=4 n_put_bulk=4 n_keep=128 rate_persec=334102528
mempool_autotest cache=512 cores=1 n_get_bulk=4 n_put_bulk=32 n_keep=32 rate_persec=388458086
mempool_autotest cache=512 cores=1 n_get_bulk=4 n_put_bulk=32 n_keep=128 rate_persec=432472064
mempool_autotest cache=512 cores=1 n_get_bulk=32 n_put_bulk=1 n_keep=32 rate_persec=237214105
mempool_autotest cache=512 cores=1 n_get_bulk=32 n_put_bulk=1 n_keep=128 rate_persec=247699865
mempool_autotest cache=512 cores=1 n_get_bulk=32 n_put_bulk=4 n_keep=32 rate_persec=363436441
mempool_autotest cache=512 cores=1 n_get_bulk=32 n_put_bulk=4 n_keep=128 rate_persec=376569856
mempool_autotest cache=512 cores=1 n_get_bulk=32 n_put_bulk=32 n_keep=32 rate_persec=459092787
mempool_autotest cache=512 cores=1 n_get_bulk=32 n_put_bulk=32 n_keep=128 rate_persec=507274854
mempool_autotest cache=512 cores=2 n_get_bulk=1 n_put_bulk=1 n_keep=32 rate_persec=336435609
mempool_autotest cache=512 cores=2 n_get_bulk=1 n_put_bulk=1 n_keep=128 rate_persec=345073254
mempool_autotest cache=512 cores=2 n_get_bulk=1 n_put_bulk=4 n_keep=32 rate_persec=445736549
mempool_autotest cache=512 cores=2 n_get_bulk=1 n_put_bulk=4 n_keep=128 rate_persec=459092786
mempool_autotest cache=512 cores=2 n_get_bulk=1 n_put_bulk=32 n_keep=32 rate_persec=517000396
mempool_autotest cache=512 cores=2 n_get_bulk=1 n_put_bulk=32 n_keep=128 rate_persec=546190130
mempool_autotest cache=512 cores=2 n_get_bulk=4 n_put_bulk=1 n_keep=32 rate_persec=437662515
mempool_autotest cache=512 cores=2 n_get_bulk=4 n_put_bulk=1 n_keep=128 rate_persec=450638643
mempool_autotest cache=512 cores=2 n_get_bulk=4 n_put_bulk=4 n_keep=32 rate_persec=638962892
mempool_autotest cache=512 cores=2 n_get_bulk=4 n_put_bulk=4 n_keep=128 rate_persec=665544294
mempool_autotest cache=512 cores=2 n_get_bulk=4 n_put_bulk=32 n_keep=32 rate_persec=796839116
mempool_autotest cache=512 cores=2 n_get_bulk=4 n_put_bulk=32 n_keep=128 rate_persec=865599487
mempool_autotest cache=512 cores=2 n_get_bulk=32 n_put_bulk=1 n_keep=32 rate_persec=474166066
mempool_autotest cache=512 cores=2 n_get_bulk=32 n_put_bulk=1 n_keep=128 rate_persec=488950988
mempool_autotest cache=512 cores=2 n_get_bulk=32 n_put_bulk=4 n_keep=32 rate_persec=731617689
mempool_autotest cache=512 cores=2 n_get_bulk=32 n_put_bulk=4 n_keep=128 rate_persec=752169779
mempool_autotest cache=512 cores=2 n_get_bulk=32 n_put_bulk=32 n_keep=32 rate_persec=946038374
mempool_autotest cache=512 cores=2 n_get_bulk=32 n_put_bulk=32 n_keep=128 rate_persec=1023659212
mempool_autotest cache=512 cores=16 n_get_bulk=1 n_put_bulk=1 n_keep=32 rate_persec=2665086969
mempool_autotest cache=512 cores=16 n_get_bulk=1 n_put_bulk=1 n_keep=128 rate_persec=2714841903
mempool_autotest cache=512 cores=16 n_get_bulk=1 n_put_bulk=4 n_keep=32 rate_persec=2779827398
mempool_autotest cache=512 cores=16 n_get_bulk=1 n_put_bulk=4 n_keep=128 rate_persec=2654863354
mempool_autotest cache=512 cores=16 n_get_bulk=1 n_put_bulk=32 n_keep=32 rate_persec=3048459463
mempool_autotest cache=512 cores=16 n_get_bulk=1 n_put_bulk=32 n_keep=128 rate_persec=3251621062
mempool_autotest cache=512 cores=16 n_get_bulk=4 n_put_bulk=1 n_keep=32 rate_persec=2633210259
mempool_autotest cache=512 cores=16 n_get_bulk=4 n_put_bulk=1 n_keep=128 rate_persec=2683594337
mempool_autotest cache=512 cores=16 n_get_bulk=4 n_put_bulk=4 n_keep=32 rate_persec=3829163618
mempool_autotest cache=512 cores=16 n_get_bulk=4 n_put_bulk=4 n_keep=128 rate_persec=3851000211
mempool_autotest cache=512 cores=16 n_get_bulk=4 n_put_bulk=32 n_keep=32 rate_persec=4860647828
mempool_autotest cache=512 cores=16 n_get_bulk=4 n_put_bulk=32 n_keep=128 rate_persec=5040019860
mempool_autotest cache=512 cores=16 n_get_bulk=32 n_put_bulk=1 n_keep=32 rate_persec=2693490273
mempool_autotest cache=512 cores=16 n_get_bulk=32 n_put_bulk=1 n_keep=128 rate_persec=2810576890
mempool_autotest cache=512 cores=16 n_get_bulk=32 n_put_bulk=4 n_keep=32 rate_persec=4398029202
mempool_autotest cache=512 cores=16 n_get_bulk=32 n_put_bulk=4 n_keep=128 rate_persec=4206441261
mempool_autotest cache=512 cores=16 n_get_bulk=32 n_put_bulk=32 n_keep=32 rate_persec=5747245049
mempool_autotest cache=512 cores=16 n_get_bulk=32 n_put_bulk=32 n_keep=128 rate_persec=5882222994
start performance test (with user-owned cache)
mempool_autotest cache=512 cores=1 n_get_bulk=1 n_put_bulk=1 n_keep=32 rate_persec=168873164
mempool_autotest cache=512 cores=1 n_get_bulk=1 n_put_bulk=1 n_keep=128 rate_persec=174351974
mempool_autotest cache=512 cores=1 n_get_bulk=1 n_put_bulk=4 n_keep=32 rate_persec=231079936
mempool_autotest cache=512 cores=1 n_get_bulk=1 n_put_bulk=4 n_keep=128 rate_persec=229743001
mempool_autotest cache=512 cores=1 n_get_bulk=1 n_put_bulk=32 n_keep=32 rate_persec=272171008
mempool_autotest cache=512 cores=1 n_get_bulk=1 n_put_bulk=32 n_keep=128 rate_persec=275211878
mempool_autotest cache=512 cores=1 n_get_bulk=4 n_put_bulk=1 n_keep=32 rate_persec=219335884
mempool_autotest cache=512 cores=1 n_get_bulk=4 n_put_bulk=1 n_keep=128 rate_persec=228406067
mempool_autotest cache=512 cores=1 n_get_bulk=4 n_put_bulk=4 n_keep=32 rate_persec=334272921
mempool_autotest cache=512 cores=1 n_get_bulk=4 n_put_bulk=4 n_keep=128 rate_persec=334102528
mempool_autotest cache=512 cores=1 n_get_bulk=4 n_put_bulk=32 n_keep=32 rate_persec=431515238
mempool_autotest cache=512 cores=1 n_get_bulk=4 n_put_bulk=32 n_keep=128 rate_persec=438776627
mempool_autotest cache=512 cores=1 n_get_bulk=32 n_put_bulk=1 n_keep=32 rate_persec=237554892
mempool_autotest cache=512 cores=1 n_get_bulk=32 n_put_bulk=1 n_keep=128 rate_persec=247791616
mempool_autotest cache=512 cores=1 n_get_bulk=32 n_put_bulk=4 n_keep=32 rate_persec=383949209
mempool_autotest cache=512 cores=1 n_get_bulk=32 n_put_bulk=4 n_keep=128 rate_persec=376622284
mempool_autotest cache=512 cores=1 n_get_bulk=32 n_put_bulk=32 n_keep=32 rate_persec=516253286
mempool_autotest cache=512 cores=1 n_get_bulk=32 n_put_bulk=32 n_keep=128 rate_persec=517314969
mempool_autotest cache=512 cores=2 n_get_bulk=1 n_put_bulk=1 n_keep=32 rate_persec=335360818
mempool_autotest cache=512 cores=2 n_get_bulk=1 n_put_bulk=1 n_keep=128 rate_persec=348428697
mempool_autotest cache=512 cores=2 n_get_bulk=1 n_put_bulk=4 n_keep=32 rate_persec=459695717
mempool_autotest cache=512 cores=2 n_get_bulk=1 n_put_bulk=4 n_keep=128 rate_persec=459315609
mempool_autotest cache=512 cores=2 n_get_bulk=1 n_put_bulk=32 n_keep=32 rate_persec=539833138
mempool_autotest cache=512 cores=2 n_get_bulk=1 n_put_bulk=32 n_keep=128 rate_persec=549231001
mempool_autotest cache=512 cores=2 n_get_bulk=4 n_put_bulk=1 n_keep=32 rate_persec=438173696
mempool_autotest cache=512 cores=2 n_get_bulk=4 n_put_bulk=1 n_keep=128 rate_persec=456366489
mempool_autotest cache=512 cores=2 n_get_bulk=4 n_put_bulk=4 n_keep=32 rate_persec=668205055
mempool_autotest cache=512 cores=2 n_get_bulk=4 n_put_bulk=4 n_keep=128 rate_persec=667248229
mempool_autotest cache=512 cores=2 n_get_bulk=4 n_put_bulk=32 n_keep=32 rate_persec=852033536
mempool_autotest cache=512 cores=2 n_get_bulk=4 n_put_bulk=32 n_keep=128 rate_persec=876701286
mempool_autotest cache=512 cores=2 n_get_bulk=32 n_put_bulk=1 n_keep=32 rate_persec=474611711
mempool_autotest cache=512 cores=2 n_get_bulk=32 n_put_bulk=1 n_keep=128 rate_persec=495098265
mempool_autotest cache=512 cores=2 n_get_bulk=32 n_put_bulk=4 n_keep=32 rate_persec=764792012
mempool_autotest cache=512 cores=2 n_get_bulk=32 n_put_bulk=4 n_keep=128 rate_persec=752366386
mempool_autotest cache=512 cores=2 n_get_bulk=32 n_put_bulk=32 n_keep=32 rate_persec=1031104102
mempool_autotest cache=512 cores=2 n_get_bulk=32 n_put_bulk=32 n_keep=128 rate_persec=1033909042
mempool_autotest cache=512 cores=16 n_get_bulk=1 n_put_bulk=1 n_keep=32 rate_persec=2572104492
mempool_autotest cache=512 cores=16 n_get_bulk=1 n_put_bulk=1 n_keep=128 rate_persec=2155426604
mempool_autotest cache=512 cores=16 n_get_bulk=1 n_put_bulk=4 n_keep=32 rate_persec=2366858848
mempool_autotest cache=512 cores=16 n_get_bulk=1 n_put_bulk=4 n_keep=128 rate_persec=2345454790
mempool_autotest cache=512 cores=16 n_get_bulk=1 n_put_bulk=32 n_keep=32 rate_persec=2786564500
mempool_autotest cache=512 cores=16 n_get_bulk=1 n_put_bulk=32 n_keep=128 rate_persec=2953497799
mempool_autotest cache=512 cores=16 n_get_bulk=4 n_put_bulk=1 n_keep=32 rate_persec=2291990522
mempool_autotest cache=512 cores=16 n_get_bulk=4 n_put_bulk=1 n_keep=128 rate_persec=2332649055
mempool_autotest cache=512 cores=16 n_get_bulk=4 n_put_bulk=4 n_keep=32 rate_persec=3238920186
mempool_autotest cache=512 cores=16 n_get_bulk=4 n_put_bulk=4 n_keep=128 rate_persec=3321233402
mempool_autotest cache=512 cores=16 n_get_bulk=4 n_put_bulk=32 n_keep=32 rate_persec=4273274875
mempool_autotest cache=512 cores=16 n_get_bulk=4 n_put_bulk=32 n_keep=128 rate_persec=4575920120
mempool_autotest cache=512 cores=16 n_get_bulk=32 n_put_bulk=1 n_keep=32 rate_persec=2410322324
mempool_autotest cache=512 cores=16 n_get_bulk=32 n_put_bulk=1 n_keep=128 rate_persec=2615908755
mempool_autotest cache=512 cores=16 n_get_bulk=32 n_put_bulk=4 n_keep=32 rate_persec=3573324178
mempool_autotest cache=512 cores=16 n_get_bulk=32 n_put_bulk=4 n_keep=128 rate_persec=3833882206
mempool_autotest cache=512 cores=16 n_get_bulk=32 n_put_bulk=32 n_keep=32 rate_persec=5422487957
mempool_autotest cache=512 cores=16 n_get_bulk=32 n_put_bulk=32 n_keep=128 rate_persec=5226312493
mempool <perf_test_nocache>@0x7fb78b668cc0
  flags=10
  socket_id=-1
  pool=0x7fb78b648a00
  iova=0x12d468cc0
  nb_mem_chunks=11
  size=10239
  populated_size=10239
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.206465
  internal cache infos:
    cache_size=0
  common_pool_count=10239
  no statistics available
mempool <perf_test_cache>@0x7fb78ce7df40
  flags=10
  socket_id=-1
  pool=0x7fb78ce5dc80
  iova=0x106e7df40
  nb_mem_chunks=4
  size=10239
  populated_size=10239
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.206465
  internal cache infos:
    cache_size=512
    cache_count[0]=513
    cache_count[1]=513
    cache_count[2]=513
    cache_count[3]=513
    cache_count[4]=513
    cache_count[5]=513
    cache_count[6]=513
    cache_count[7]=513
    cache_count[8]=513
    cache_count[9]=513
    cache_count[10]=513
    cache_count[11]=513
    cache_count[12]=513
    cache_count[13]=513
    cache_count[14]=513
    cache_count[15]=513
    cache_count[16]=0
    cache_count[17]=0
    cache_count[18]=0
    cache_count[19]=0
    cache_count[20]=0
    cache_count[21]=0
    cache_count[22]=0
    cache_count[23]=0
    cache_count[24]=0
    cache_count[25]=0
    cache_count[26]=0
    cache_count[27]=0
    cache_count[28]=0
    cache_count[29]=0
    cache_count[30]=0
    cache_count[31]=0
    cache_count[32]=0
    cache_count[33]=0
    cache_count[34]=0
    cache_count[35]=0
    cache_count[36]=0
    cache_count[37]=0
    cache_count[38]=0
    cache_count[39]=0
    cache_count[40]=0
    cache_count[41]=0
    cache_count[42]=0
    cache_count[43]=0
    cache_count[44]=0
    cache_count[45]=0
    cache_count[46]=0
    cache_count[47]=0
    cache_count[48]=0
    cache_count[49]=0
    cache_count[50]=0
    cache_count[51]=0
    cache_count[52]=0
    cache_count[53]=0
    cache_count[54]=0
    cache_count[55]=0
    cache_count[56]=0
    cache_count[57]=0
    cache_count[58]=0
    cache_count[59]=0
    cache_count[60]=0
    cache_count[61]=0
    cache_count[62]=0
    cache_count[63]=0
    cache_count[64]=0
    cache_count[65]=0
    cache_count[66]=0
    cache_count[67]=0
    cache_count[68]=0
    cache_count[69]=0
    cache_count[70]=0
    cache_count[71]=0
    cache_count[72]=0
    cache_count[73]=0
    cache_count[74]=0
    cache_count[75]=0
    cache_count[76]=0
    cache_count[77]=0
    cache_count[78]=0
    cache_count[79]=0
    cache_count[80]=0
    cache_count[81]=0
    cache_count[82]=0
    cache_count[83]=0
    cache_count[84]=0
    cache_count[85]=0
    cache_count[86]=0
    cache_count[87]=0
    cache_count[88]=0
    cache_count[89]=0
    cache_count[90]=0
    cache_count[91]=0
    cache_count[92]=0
    cache_count[93]=0
    cache_count[94]=0
    cache_count[95]=0
    cache_count[96]=0
    cache_count[97]=0
    cache_count[98]=0
    cache_count[99]=0
    cache_count[100]=0
    cache_count[101]=0
    cache_count[102]=0
    cache_count[103]=0
    cache_count[104]=0
    cache_count[105]=0
    cache_count[106]=0
    cache_count[107]=0
    cache_count[108]=0
    cache_count[109]=0
    cache_count[110]=0
    cache_count[111]=0
    cache_count[112]=0
    cache_count[113]=0
    cache_count[114]=0
    cache_count[115]=0
    cache_count[116]=0
    cache_count[117]=0
    cache_count[118]=0
    cache_count[119]=0
    cache_count[120]=0
    cache_count[121]=0
    cache_count[122]=0
    cache_count[123]=0
    cache_count[124]=0
    cache_count[125]=0
    cache_count[126]=0
    cache_count[127]=0
    total_cache_count=8208
  common_pool_count=2031
  no statistics available
mempool <default_pool>@0x7fb78ce5d780
  flags=10
  socket_id=-1
  pool=0x7fb78ce3d4c0
  iova=0x106e5d780
  nb_mem_chunks=9
  size=10239
  populated_size=10239
  header_size=64
  elt_size=2048
  trailer_size=0
  total_obj_size=2112
  private_data_size=0
  ops_index=7
  ops_name: <ring_mp_mc>
  avg bytes/object=2114.206465
  internal cache infos:
    cache_size=0
  common_pool_count=10239
  no statistics available
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fbb8cf27000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fbb8ccaa000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fbb8cc49000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fb78b600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fbb8ca9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb38b400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fbb8ca3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7faf8b200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fbb8b79a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fab8b000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fbb8b739000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fa78ae00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fbb8b6d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa38ac00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fbb8b677000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f9f8aa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fbb8b616000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9b8a800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 96/157 DPDK:perf-tests / memcpy_perf_autotest              OK               408.28s
21:39:54 DPDK_TEST=memcpy_perf_autotest MALLOC_PERTURB_=253 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>memcpy_perf_autotest

** rte_memcpy() - memcpy perf. tests (C = compile-time constant) **
======= ================= ================= ================= =================
   Size   Cache to cache     Cache to mem      Mem to cache        Mem to mem
(bytes)          (ticks)          (ticks)           (ticks)           (ticks)
------- ----------------- ----------------- ----------------- -----------------
================================= 64B aligned =================================
      1 11 - 26(-57.09%)  39 - 82(-51.88%)  77 -165(-53.20%)  86 -180(-52.36%) 
      2 12 - 26(-54.01%)  39 - 81(-52.12%)  84 -166(-49.23%)  91 -178(-48.87%) 
      3 15 - 26(-41.11%)  39 - 82(-51.85%) 117 -167(-30.18%) 119 -176(-32.72%) 
      4 12 - 26(-53.85%)  38 - 82(-53.08%)  78 -164(-52.20%)  85 -176(-51.71%) 
      5 15 - 26(-42.70%)  39 - 82(-52.47%) 115 -167(-30.88%) 120 -178(-32.68%) 
      6 16 - 26(-40.05%)  39 - 82(-52.09%) 116 -167(-30.52%) 122 -179(-31.92%) 
      7 20 - 31(-35.73%)  40 - 82(-51.42%) 122 -168(-27.48%) 127 -179(-28.99%) 
      8 11 - 26(-57.21%)  40 - 83(-52.01%)  68 -169(-59.83%)  84 -180(-53.44%) 
      9 13 - 26(-49.02%)  40 - 84(-51.95%)  95 -168(-43.56%)  99 -182(-45.49%) 
     12 14 - 26(-44.77%)  40 - 84(-51.92%)  94 -168(-44.17%)  99 -180(-45.26%) 
     15 21 - 26(-17.06%)  41 - 83(-51.18%) 124 -168(-25.67%) 130 -180(-27.90%) 
     16 24 - 25( -6.29%)  43 - 84(-48.30%) 168 -167(  0.64%) 173 -179( -3.27%) 
     17 24 - 25( -6.23%)  43 - 84(-48.46%) 168 -166(  1.46%) 173 -175( -1.51%) 
     31 24 - 25( -5.45%)  43 - 83(-48.09%) 164 -164(  0.02%) 173 -179( -3.06%) 
     32 24 - 25( -5.85%)  43 - 85(-49.15%) 165 -167( -0.91%) 173 -178( -2.48%) 
     33 25 - 33(-24.68%)  44 - 97(-54.31%) 165 -176( -5.87%) 175 -196(-10.28%) 
     63 25 - 33(-24.71%)  44 -100(-55.37%) 169 -179( -5.52%) 179 -196( -8.82%) 
     64 25 - 35(-28.08%)  44 -116(-61.62%) 169 -179( -5.16%) 178 -196( -9.26%) 
     65 43 - 78(-44.86%)  84 -219(-61.84%) 323 -391(-17.40%) 335 -432(-22.46%) 
    127 43 - 96(-54.98%)  86 -203(-57.61%) 332 -405(-17.92%) 342 -425(-19.60%) 
    128 61 - 81(-23.96%)  96 -200(-51.94%) 356 -387( -8.07%) 371 -412(-10.03%) 
    129 61 -1298(-95.26%) 121 -748(-83.85%) 386 -1264(-69.47%) 407 -789(-48.40%) 
    191 62 -1338(-95.37%) 122 -946(-87.09%) 481 -1364(-64.72%) 520 -1068(-51.30%) 
    192 81 -1006(-91.93%) 127 -852(-85.10%) 466 -1041(-55.21%) 540 -930(-41.96%) 
    193 81 -1307(-93.82%) 157 -870(-81.93%) 494 -1318(-62.51%) 572 -956(-40.15%) 
    255 81 -1340(-93.98%) 158 -1038(-84.76%) 539 -1422(-62.08%) 574 -1139(-49.63%) 
    256 99 -1031(-90.43%) 162 -887(-81.71%) 649 -1088(-40.35%) 672 -964(-30.28%) 
    257 99 -1326(-92.55%) 196 -884(-77.88%) 655 -1362(-51.89%) 684 -981(-30.29%) 
    319 99 -1378(-92.83%) 197 -983(-79.95%) 677 -1204(-43.73%) 696 -1063(-34.50%) 
    320117 -1046(-88.83%) 197 -886(-77.75%) 719 -1075(-33.07%) 736 -985(-25.27%) 
    321117 -1334(-91.24%) 226 -899(-74.80%) 724 -1179(-38.59%) 751 -1019(-26.32%) 
    383117 -1374(-91.50%) 228 -984(-76.87%) 770 -1110(-30.63%) 798 -1055(-24.33%) 
    384135 -1013(-86.67%) 227 -894(-74.55%) 811 -1042(-22.21%) 859 -971(-11.61%) 
    385135 -1321(-89.77%) 267 -903(-70.41%) 834 -1076(-22.46%) 884 -987(-10.44%) 
    447135 -1449(-90.68%) 266 -993(-73.18%) 880 -1162(-24.29%) 920 -1073(-14.29%) 
    448153 -1114(-86.22%) 266 -904(-70.62%) 985 -1095(-10.12%) 1016 -986(  3.04%) 
    449153 -1391(-88.97%) 305 -909(-66.41%) 989 -1137(-13.03%) 1032 -1009(  2.31%) 
    511153 -1093(-85.96%) 305 -1058(-71.22%) 1006 -1173(-14.22%) 1031 -1151(-10.44%) 
    512172 -998(-82.78%) 306 -942(-67.55%) 1065 -1090( -2.33%) 1091 -1044(  4.54%) 
    513172 -1276(-86.53%) 339 -945(-64.13%) 1062 -1347(-21.13%) 1119 -1068(  4.80%) 
    767242 -1480(-83.65%) 457 -1155(-60.40%) 1353 -1676(-19.27%) 1428 -1401(  1.96%) 
    768245 -1052(-76.70%) 460 -966(-52.38%) 1394 -1297(  7.49%) 1467 -1189( 23.43%) 
    769245 -1384(-82.27%) 489 -1004(-51.32%) 1419 -1614(-12.13%) 1441 -1222( 17.91%) 
   1023300 -1678(-82.12%) 555 -1414(-60.78%) 1485 -1784(-16.76%) 1571 -1621( -3.04%) 
   1024319 -1367(-76.68%) 555 -1246(-55.45%) 1441 -1514( -4.86%) 1588 -1480(  7.27%) 
   1025319 -1632(-80.47%) 579 -1285(-54.95%) 1443 -1761(-18.07%) 1565 -1525(  2.62%) 
   1518447 -1731(-74.18%) 750 -1498(-49.95%) 1342 -2219(-39.53%) 1581 -2306(-31.41%) 
   1522447 -1729(-74.16%) 751 -1499(-49.88%) 1379 -2239(-38.40%) 1609 -2289(-29.69%) 
   1536465 -1411(-67.02%) 752 -1326(-43.26%) 1396 -2046(-31.75%) 1615 -2022(-20.14%) 
   1600483 -1539(-68.59%) 776 -1308(-40.68%) 1413 -2078(-32.02%) 1642 -2069(-20.65%) 
   2048612 -1696(-63.91%) 941 -1628(-42.17%) 1598 -2387(-33.05%) 1859 -2478(-24.99%) 
   2560774 -2029(-61.87%) 1115 -1901(-41.33%) 1826 -2773(-34.15%) 2166 -2682(-19.23%) 
   3072905 -2151(-57.91%) 1282 -2014(-36.33%) 2032 -3137(-35.20%) 2463 -3027(-18.62%) 
   35841052 -2468(-57.39%) 1461 -2301(-36.52%) 2283 -3441(-33.65%) 2770 -3420(-18.99%) 
   40961199 -2753(-56.46%) 1640 -2572(-36.21%) 2529 -3750(-32.57%) 3075 -3761(-18.23%) 
   46081345 -2776(-51.54%) 1818 -2692(-32.48%) 2713 -4106(-33.92%) 3358 -4112(-18.33%) 
   51201509 -3096(-51.27%) 1998 -2956(-32.42%) 3014 -4411(-31.67%) 3659 -4442(-17.64%) 
   56321655 -3353(-50.64%) 2186 -3220(-32.13%) 3222 -4758(-32.28%) 3983 -4804(-17.10%) 
   61441801 -3481(-48.27%) 2369 -3370(-29.68%) 3475 -5175(-32.86%) 4228 -5078(-16.73%) 
   66561948 -3745(-47.99%) 2547 -3621(-29.67%) 3683 -5498(-33.01%) 4518 -5390(-16.18%) 
   71682094 -3984(-47.43%) 2724 -3870(-29.61%) 3920 -5800(-32.41%) 4782 -5713(-16.30%) 
   76802240 -4168(-46.25%) 2896 -4033(-28.19%) 4126 -6140(-32.80%) 5076 -6032(-15.85%) 
   81922386 -4336(-44.96%) 3067 -4275(-28.26%) 4331 -6437(-32.72%) 5343 -6352(-15.88%) 
------- ----------------- ----------------- ----------------- -----------------
C     6 13 - 26(-50.94%)  39 - 80(-50.76%)  91 -162(-43.53%)  97 -175(-44.80%) 
C    64 22 - 35(-37.06%)  42 -111(-61.79%) 162 -176( -7.88%) 166 -197(-15.53%) 
C   128 43 - 81(-46.96%)  84 -196(-57.21%) 313 -375(-16.57%) 325 -404(-19.46%) 
C   192 62 -986(-93.69%) 119 -846(-85.94%) 467 -1018(-54.13%) 480 -925(-48.12%) 
C   256 81 -1013(-92.01%) 155 -882(-82.41%) 614 -1071(-42.69%) 625 -960(-34.88%) 
C   512157 -1069(-85.29%) 417 -942(-55.69%) 1198 -1127(  6.28%) 1252 -1039( 20.48%) 
C   768268 -1048(-74.43%) 464 -956(-51.42%) 1654 -1297( 27.50%) 1738 -1153( 50.75%) 
C  1024376 -1361(-72.36%) 569 -1245(-54.32%) 1798 -1536( 17.08%) 1993 -1496( 33.22%) 
C  1536483 -1402(-65.51%) 752 -1313(-42.74%) 1388 -2050(-32.33%) 1632 -2036(-19.87%) 
================================== Unaligned ==================================
      1 12 - 26(-53.83%)  39 - 81(-51.85%)  78 -167(-53.22%)  87 -181(-51.69%) 
      2 13 - 26(-50.70%)  38 - 83(-53.60%)  82 -169(-51.32%)  86 -179(-52.14%) 
      3 16 - 26(-37.97%)  39 - 81(-51.75%) 116 -167(-30.61%) 121 -180(-32.93%) 
      4 13 - 26(-50.65%)  38 - 81(-52.72%)  77 -162(-52.46%)  85 -177(-51.72%) 
      5 15 - 26(-41.06%)  39 - 80(-51.04%) 115 -166(-30.34%) 122 -179(-32.23%) 
      6 16 - 26(-36.50%)  39 - 80(-51.36%) 115 -164(-29.68%) 119 -176(-32.06%) 
      7 19 - 26(-25.52%)  39 - 81(-52.02%) 118 -164(-27.84%) 126 -180(-30.14%) 
      8 11 - 26(-57.09%)  41 - 82(-49.26%)  68 -168(-59.74%)  84 -181(-53.25%) 
      9 14 - 26(-47.42%)  40 - 84(-52.37%)  93 -166(-43.97%)  99 -179(-44.53%) 
     12 14 - 26(-44.43%)  40 - 83(-52.20%)  93 -167(-44.41%)  99 -178(-44.57%) 
     15 22 - 26(-15.93%)  40 - 82(-51.56%) 124 -166(-25.75%) 129 -183(-29.47%) 
     16 24 - 25( -3.54%)  43 - 83(-48.28%) 170 -171( -0.97%) 175 -180( -2.79%) 
     17 24 - 25( -3.42%)  43 - 82(-47.28%) 167 -167(  0.33%) 176 -179( -1.77%) 
     31 24 - 25( -3.11%)  43 - 83(-48.05%) 165 -167( -1.41%) 174 -179( -2.65%) 
     32 24 - 25( -3.18%)  43 - 83(-47.71%) 170 -169(  0.57%) 173 -178( -3.11%) 
     33 33 - 33( -0.34%)  52 - 95(-45.70%) 176 -174(  0.81%) 182 -192( -5.09%) 
     63 24 - 33(-27.02%)  44 - 98(-54.93%) 235 -246( -4.78%) 239 -253( -5.47%) 
     64 24 - 35(-30.71%)  82 -143(-42.79%) 232 -212(  9.44%) 242 -238(  1.68%) 
     65 36 - 95(-62.25%) 139 -220(-37.01%) 292 -408(-28.39%) 299 -440(-32.14%) 
    127 43 - 92(-52.96%)  85 -205(-58.84%) 373 -445(-16.14%) 387 -470(-17.56%) 
    128 44 - 92(-52.09%) 119 -256(-53.68%) 371 -438(-15.23%) 390 -471(-17.34%) 
    129 53 -1250(-95.75%) 208 -691(-69.90%) 463 -1289(-64.09%) 461 -756(-39.06%) 
    191 62 -1001(-93.85%) 121 -752(-83.90%) 541 -1042(-48.11%) 556 -891(-37.64%) 
    192 64 -1304(-95.10%) 157 -775(-79.72%) 557 -1318(-57.70%) 573 -941(-39.14%) 
    193 73 -1278(-94.28%) 243 -776(-68.70%) 607 -1338(-54.62%) 619 -939(-34.08%) 
    255 81 -1018(-92.07%) 159 -891(-82.17%) 690 -1081(-36.15%) 703 -979(-28.20%) 
    256 81 -1306(-93.82%) 196 -894(-78.12%) 689 -1369(-49.62%) 712 -1006(-29.25%) 
    257 94 -1316(-92.87%) 306 -893(-65.67%) 698 -1356(-48.53%) 735 -1008(-27.05%) 
    319103 -1032(-89.99%) 301 -911(-67.02%) 858 -1057(-18.83%) 891 -1022(-12.77%) 
    320112 -1316(-91.51%) 359 -918(-60.92%) 919 -1216(-24.43%) 946 -1039( -8.97%) 
    321112 -1328(-91.60%) 353 -917(-61.50%) 919 -1220(-24.61%) 963 -1045( -7.92%) 
    383122 -1015(-87.94%) 345 -924(-62.63%) 968 -1052( -7.96%) 985 -999( -1.46%) 
    384130 -1308(-90.05%) 436 -936(-53.43%) 1019 -1110( -8.22%) 1049 -1030(  1.82%) 
    385130 -1305(-90.03%) 404 -932(-56.65%) 1002 -1116(-10.19%) 1051 -1028(  2.24%) 
    447140 -1081(-87.04%) 413 -933(-55.70%) 856 -1095(-21.81%) 888 -1022(-13.15%) 
    448148 -1367(-89.17%) 479 -937(-48.91%) 934 -1165(-19.85%) 962 -1032( -6.84%) 
    449148 -1365(-89.15%) 457 -937(-51.25%) 927 -1168(-20.62%) 964 -1038( -7.05%) 
    511159 -1029(-84.56%) 474 -984(-51.77%) 946 -1102(-14.14%) 991 -1092( -9.22%) 
    512167 -1322(-87.37%) 527 -996(-47.08%) 1012 -1372(-26.27%) 1035 -1101( -6.02%) 
    513167 -1319(-87.35%) 530 -995(-46.68%) 1011 -1384(-26.94%) 1053 -1100( -4.24%) 
    767232 -1055(-78.01%) 630 -988(-36.24%) 1255 -1408(-10.83%) 1288 -1234(  4.31%) 
    768239 -1449(-83.47%) 686 -1052(-34.78%) 1236 -1689(-26.81%) 1343 -1294(  3.80%) 
    769240 -1370(-82.47%) 672 -1024(-34.42%) 1217 -1608(-24.27%) 1330 -1286(  3.46%) 
   1023305 -1372(-77.81%) 697 -1272(-45.19%) 1331 -1538(-13.45%) 1487 -1521( -2.21%) 
   1024313 -1636(-80.86%) 695 -1307(-46.83%) 1344 -1783(-24.62%) 1489 -1557( -4.36%) 
   1025313 -1631(-80.82%) 685 -1305(-47.53%) 1353 -1785(-24.21%) 1496 -1559( -3.98%) 
   1518451 -1731(-73.98%) 774 -1526(-49.27%) 1338 -2265(-40.92%) 1585 -2330(-31.99%) 
   1522450 -1714(-73.73%) 783 -1525(-48.65%) 1345 -2265(-40.60%) 1573 -2304(-31.71%) 
   1536458 -1657(-72.34%) 807 -1343(-39.91%) 1364 -2272(-40.00%) 1565 -2096(-25.34%) 
   1600476 -1808(-73.65%) 820 -1328(-38.28%) 1351 -2338(-42.22%) 1592 -2154(-26.08%) 
   2048604 -1921(-68.54%) 971 -1663(-41.57%) 1529 -2581(-40.77%) 1847 -2519(-26.67%) 
   2560750 -2256(-66.77%) 1145 -1940(-41.00%) 1769 -2974(-40.52%) 2117 -2817(-24.84%) 
   3072896 -2431(-63.17%) 1303 -2003(-34.95%) 1983 -3365(-41.08%) 2413 -3193(-24.42%) 
   35841042 -2717(-61.66%) 1505 -2372(-36.56%) 2220 -3647(-39.13%) 2761 -3709(-25.56%) 
   40961187 -2960(-59.89%) 1687 -2648(-36.28%) 2479 -3962(-37.44%) 3056 -4186(-26.99%) 
   46081350 -3101(-56.47%) 1865 -2772(-32.71%) 2715 -4303(-36.89%) 3363 -4525(-25.67%) 
   51201494 -3450(-56.70%) 2054 -3056(-32.77%) 2958 -4658(-36.50%) 3635 -4892(-25.69%) 
   56321625 -3562(-54.39%) 2231 -3315(-32.71%) 3148 -4979(-36.79%) 3938 -5228(-24.66%) 
   61441771 -3729(-52.51%) 2411 -3449(-30.10%) 3407 -5404(-36.95%) 4235 -5546(-23.65%) 
   66561917 -4052(-52.70%) 2598 -3725(-30.26%) 3601 -5742(-37.29%) 4506 -5891(-23.50%) 
   71682062 -4273(-51.74%) 2778 -3934(-29.40%) 3877 -6048(-35.89%) 4827 -6218(-22.36%) 
   76802208 -4541(-51.37%) 2954 -4123(-28.35%) 4124 -6368(-35.23%) 5091 -6497(-21.65%) 
   81922354 -4685(-49.75%) 3128 -4351(-28.10%) 4329 -6706(-35.44%) 5347 -6852(-21.97%) 
------- ----------------- ----------------- ----------------- -----------------
C     6 13 - 26(-51.04%)  39 - 81(-51.99%)  93 -166(-43.82%)  97 -179(-45.85%) 
C    64 22 - 35(-37.22%)  83 -141(-41.31%) 232 -207( 11.81%) 243 -233(  4.42%) 
C   128 42 - 94(-54.76%) 118 -253(-53.21%) 362 -441(-17.73%) 392 -477(-17.95%) 
C   192 61 -1273(-95.20%) 157 -782(-79.88%) 539 -1288(-58.15%) 549 -939(-41.51%) 
C   256 81 -1296(-93.78%) 195 -891(-78.12%) 668 -1357(-50.75%) 693 -1012(-31.54%) 
C   512173 -1346(-87.17%) 510 -995(-48.81%) 1278 -1384( -7.65%) 1351 -1107( 22.02%) 
C   768310 -1400(-77.86%) 599 -1020(-41.26%) 1715 -1607(  6.74%) 1766 -1290( 36.93%) 
C  1024409 -1609(-74.60%) 642 -1294(-50.38%) 1815 -1752(  3.56%) 1939 -1543( 25.70%) 
C  1536608 -1641(-62.93%) 812 -1332(-39.06%) 1534 -2274(-32.51%) 1798 -2144(-16.18%) 
======= ================= ================= ================= =================

Test Execution Time (seconds):
Aligned variable copy size   =  182.522
Aligned constant copy size   =   16.705
Unaligned variable copy size =  188.153
Unaligned constant copy size =   18.580
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f042fb3f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f042f8b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f042f851000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f002e200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f042f69f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7efc2e000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f042f63e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7ef82de00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f042e39a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7ef42dc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f042e339000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7ef02da00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f042e2d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7eec2d800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f042e277000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7ee82d600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f042e216000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ee42d400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 97/157 DPDK:perf-tests / hash_perf_autotest                OK               330.40s
21:46:43 DPDK_TEST=hash_perf_autotest MALLOC_PERTURB_=97 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>hash_perf_autotest

Without locks in the code

ALL ELEMENTS IN PRIMARY LOCATION
Measuring performance, please wait........................................
Results (in CPU cycles/operation)
-----------------------------------

 Operations without data

Without pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 609               510               209               495               
8                 482               411               210               521               
16                482               473               206               523               
32                529               611               340               686               
48                517               582               263               615               
64                498               652               527               688               
9                 517               493               215               570               
13                486               528               226               574               
37                505               572               384               646               
40                528               603               378               689               

With pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 482               434               154               481               
8                 456               416               155               555               
16                498               368               140               508               
32                519               503               262               592               
48                537               500               174               528               
64                547               518               416               616               
9                 515               478               161               596               
13                516               468               160               606               
37                690               606               300               685               
40                687               622               297               709               

 Operations with 8-byte data

Without pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 525               444               220               520               
8                 491               354               218               492               
16                493               516               219               570               
32                535               596               356               687               
48                519               600               272               631               
64                505               662               539               726               
9                 497               497               225               585               
13                483               496               234               585               
37                516               572               386               632               
40                510               577               382               631               

With pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 428               402               161               494               
8                 571               344               161               541               
16                493               373               146               499               
32                511               486               280               616               
48                513               555               181               529               
64                534               559               424               627               
9                 641               452               167               593               
13                655               444               170               604               
37                621               602               305               678               
40                635               626               305               683               

ELEMENTS IN PRIMARY OR SECONDARY LOCATION
Measuring performance, please wait........................................
Results (in CPU cycles/operation)
-----------------------------------

 Operations without data

Without pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 649               453               211               474               
8                 522               444               215               505               
16                538               483               211               585               
32                558               618               343               701               
48                525               547               265               611               
64                529               627               524               708               
9                 561               467               218               601               
13                529               479               227               560               
37                560               613               378               670               
40                551               582               374               643               

With pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 522               440               161               494               
8                 492               408               161               580               
16                548               372               144               495               
32                562               546               270               608               
48                557               500               175               571               
64                595               536               429               658               
9                 542               485               168               605               
13                539               484               167               642               
37                722               613               298               704               
40                739               591               299               696               

 Operations with 8-byte data

Without pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 569               475               224               512               
8                 523               393               225               542               
16                508               501               226               626               
32                569               528               355               677               
48                556               533               276               626               
64                561               628               536               679               
9                 543               443               228               551               
13                514               472               238               573               
37                559               599               394               652               
40                564               588               391               650               

With pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 479               387               165               494               
8                 633               326               163               526               
16                579               393               151               499               
32                533               482               274               601               
48                553               553               184               571               
64                570               560               439               658               
9                 664               447               168               592               
13                667               406               170               616               
37                677               564               310               701               
40                677               588               305               733               

With locks in the code

ALL ELEMENTS IN PRIMARY LOCATION
Measuring performance, please wait........................................
Results (in CPU cycles/operation)
-----------------------------------

 Operations without data

Without pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 1066              721               237               775               
8                 944               729               240               826               
16                1039              751               246               840               
32                956               832               381               939               
48                1057              849               298               850               
64                1014              908               562               994               
9                 999               713               244               834               
13                1007              737               253               831               
37                1018              961               423               993               
40                1012              967               423               1009              

With pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 968               626               184               746               
8                 972               703               188               813               
16                1048              664               173               775               
32                904               757               306               865               
48                1153              804               209               792               
64                1048              863               479               928               
9                 1007              717               187               814               
13                1012              748               190               829               
37                1202              967               337               1010              
40                1138              1004              346               1056              

 Operations with 8-byte data

Without pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 955               737               250               779               
8                 955               659               248               780               
16                1002              729               244               795               
32                954               818               392               940               
48                1058              835               304               848               
64                1017              903               592               1016              
9                 982               735               255               823               
13                970               762               260               841               
37                1004              968               440               1033              
40                1017              1002              439               1001              

With pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 922               709               195               788               
8                 1031              651               189               782               
16                956               655               177               776               
32                923               735               320               864               
48                1147              836               220               805               
64                1025              871               493               957               
9                 1095              695               197               812               
13                1125              704               197               806               
37                1127              987               351               1084              
40                1077              1020              354               1079              

ELEMENTS IN PRIMARY OR SECONDARY LOCATION
Measuring performance, please wait........................................
Results (in CPU cycles/operation)
-----------------------------------

 Operations without data

Without pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 1154              697               240               783               
8                 981               655               244               810               
16                1034              681               248               796               
32                996               825               383               942               
48                1073              785               306               874               
64                1046              929               578               1010              
9                 1049              768               249               879               
13                1053              731               254               847               
37                1107              982               428               1048              
40                1089              939               426               1017              

With pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 1012              718               190               786               
8                 969               677               189               825               
16                1039              654               174               787               
32                1010              770               313               890               
48                1214              783               210               800               
64                1137              853               472               950               
9                 1089              694               190               819               
13                1050              693               191               806               
37                1233              1001              350               1096              
40                1184              1029              347               1098              

 Operations with 8-byte data

Without pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 983               713               255               839               
8                 965               598               253               778               
16                1098              704               248               841               
32                1008              747               394               936               
48                1042              828               310               867               
64                1076              938               590               1003              
9                 1070              743               257               880               
13                1096              756               262               866               
37                1102              964               440               1015              
40                1078              957               443               1039              

With pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 1025              668               196               788               
8                 1105              641               194               794               
16                1053              674               180               781               
32                952               707               323               875               
48                1183              821               219               777               
64                1099              830               493               956               
9                 1167              696               200               840               
13                1145              716               201               842               
37                1147              1009              357               1107              
40                1154              990               351               1036              

 EXTENDABLE BUCKETS PERFORMANCE
Measuring performance, please wait........................................
Results (in CPU cycles/operation)
-----------------------------------

 Operations without data

Without pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 1101              583               223               583               
8                 1026              530               224               572               
16                1036              496               219               590               
32                1101              651               354               723               
48                1039              582               276               665               
64                1104              675               543               756               
9                 1071              541               229               627               
13                1049              522               239               610               
37                1097              603               398               722               
40                1087              644               396               718               

With pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 1071              475               170               582               
8                 1023              483               171               650               
16                1033              427               159               593               
32                1094              579               284               660               
48                1090              569               190               637               
64                1184              600               443               713               
9                 1105              520               175               672               
13                1071              527               177               695               
37                1300              627               312               753               
40                1282              649               317               769               

 Operations with 8-byte data

Without pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 1131              621               236               602               
8                 1053              557               238               607               
16                1073              525               234               608               
32                1083              587               365               697               
48                1062              561               292               657               
64                1112              629               545               702               
9                 1066              520               239               606               
13                1026              515               248               622               
37                1102              606               401               689               
40                1115              622               400               715               

With pre-computed hash values

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 1057              454               178               568               
8                 1008              449               178               670               
16                1041              418               163               593               
32                1032              506               293               667               
48                1054              526               193               598               
64                1086              551               451               719               
9                 1046              491               179               656               
13                1034              471               179               641               
37                1222              633               322               765               
40                1255              664               321               759               


 *** FBK Hash function performance test results ***
Number of ticks per lookup = 46.8967
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f52db200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f52db096000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f52db035000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f4ed9800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f52dad7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f4ad9600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f52dad1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f46d9400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f52dab9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f42d9200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f52dab3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f3ed9000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f52d989a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f3ad8e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f52d9839000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f36d8c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f4ed979f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f32d8a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 98/157 DPDK:perf-tests / timer_perf_autotest               OK                11.96s
21:52:13 MALLOC_PERTURB_=121 DPDK_TEST=timer_perf_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>timer_perf_autotest
Appending 100 timers
Time for 100 timers: 44566 (0ms), Time per timer: 445 (0us)
Time for 100 callbacks: 24256 (0ms), Time per callback: 242 (0us)
Resetting 100 timers
Time for 100 timers: 42188 (0ms), Time per timer: 421 (0us)

Appending 1000 timers
Time for 1000 timers: 354150 (0ms), Time per timer: 354 (0us)
Time for 1000 callbacks: 95874 (0ms), Time per callback: 95 (0us)
Resetting 1000 timers
Time for 1000 timers: 414564 (0ms), Time per timer: 414 (0us)

Appending 10000 timers
Time for 10000 timers: 3452984 (1ms), Time per timer: 345 (0us)
Time for 10000 callbacks: 743068 (0ms), Time per callback: 74 (0us)
Resetting 10000 timers
Time for 10000 timers: 5380504 (2ms), Time per timer: 538 (0us)

Appending 100000 timers
Time for 100000 timers: 37974262 (12ms), Time per timer: 379 (0us)
Time for 100000 callbacks: 9566676 (3ms), Time per callback: 95 (0us)
Resetting 100000 timers
Time for 100000 timers: 121128022 (38ms), Time per timer: 1211 (0us)

Appending 1000000 timers
Time for 1000000 timers: 407567980 (128ms), Time per timer: 407 (0us)
Time for 1000000 callbacks: 96506724 (30ms), Time per callback: 96 (0us)
Resetting 1000000 timers
Time for 1000000 timers: 2801029518 (878ms), Time per timer: 2801 (1us)

All timers processed ok

Time per rte_timer_manage with zero timers: 20 cycles
Time per rte_timer_manage with zero callbacks: 42 cycles
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7ff34716b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7ff347111000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7ff346e7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fef45800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7ff346e1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7feb45600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7ff346c9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fe745400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7ff346c3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fe345200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7ff34599a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fdf45000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7ff345939000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fdb44e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7ff3458d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fd744c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7ff345877000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fd344a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

 99/157 DPDK:perf-tests / reciprocal_division               OK               339.75s
21:52:25 DPDK_TEST=reciprocal_division MALLOC_PERTURB_=166 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>reciprocal_division
Validating unsigned 32bit division.
Validating unsigned 64bit division.
Validating unsigned 64bit division with 32bit divisor.
Validating division by power of 2.
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fa80b314000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fa80b094000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fa80b033000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fa409a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fa80ae9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fa009800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fa80ae3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f9c09600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fa809b9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f9809400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fa809b39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f9409200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fa809ad8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f9009000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fa809a77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f8c08e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fa809a16000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f8808c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

100/157 DPDK:perf-tests / reciprocal_division_perf          OK               416.89s
21:58:05 MALLOC_PERTURB_=18 DPDK_TEST=reciprocal_division_perf /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>reciprocal_division_perf
Validating unsigned 32bit division.
32bit Division results:
Total number of cycles normal division     : 108212796358
Total number of cycles reciprocal division : 124188527692
Cycles per division(normal) : 25.20
Cycles per division(reciprocal) : 28.91

Validating unsigned 64bit division.
64bit Division results:
Total number of cycles normal division     : 144786320780
Total number of cycles reciprocal division : 121281258720
Cycles per division(normal) : 33.71
Cycles per division(reciprocal) : 28.24

Validating unsigned 64bit division with 32bit divisor.
64bit Division results:
Total number of cycles normal division     : 147476401544
Total number of cycles reciprocal division : 120839301378
Cycles per division(normal) : 34.34
Cycles per division(reciprocal) : 28.14

Validating division by power of 2.
64bit Division results:
Total number of cycles normal division     : 2256
Total number of cycles reciprocal division : 1432
Cycles per division(normal) : 35.25
Cycles per division(reciprocal) : 22.38
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fdbb635a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fdbb6300000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fdbb607f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fd7b4a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fdbb601e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fd3b4800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fdbb5e9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fcfb4600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fdbb5e3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fcbb4400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fdbb4b9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fc7b4200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fdbb4b39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fc3b4000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fdbb4ad8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fbfb3e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fdbb4a77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fbbb3c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

101/157 DPDK:perf-tests / lpm_perf_autotest                 OK               497.34s
22:05:02 DPDK_TEST=lpm_perf_autotest MALLOC_PERTURB_=51 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>lpm_perf_autotest
No. routes = 1076806
Route distribution per prefix width: 
DEPTH    QUANTITY (PERCENT)
--------------------------- 
01              0 (0.00)
02              0 (0.00)
03              1 (0.00)
04              0 (0.00)
05              3 (0.00)
06              2 (0.00)
07              4 (0.00)
08            201 (0.02)
09             37 (0.00)
10             55 (0.01)
11             97 (0.01)
12            381 (0.04)
13            775 (0.07)
14           2104 (0.20)
15           3712 (0.34)
16          69319 (6.44)
17          12983 (1.21)
18          23667 (2.20)
19          69068 (6.41)
20          62354 (5.79)
21          48531 (4.51)
22          72355 (6.72)
23          85427 (7.93)
24         583900 (54.23)
25           2654 (0.25)
26           5650 (0.52)
27           6467 (0.60)
28           7127 (0.66)
29          12936 (1.20)
30           5999 (0.56)
31             13 (0.00)
32            984 (0.09)

Unique added entries = 1037025
Used table 24 entries = 14680064 (87.5%)
64 byte Cache entries used = 458753 (29360192 bytes)
Average LPM Add: 423737 cycles
Average LPM Lookup: 60.5 cycles (fails = 12.5%)
BULK LPM Lookup: 74.1 cycles (fails = 12.5%)
LPM LookupX4: 54.8 cycles (fails = 12.5%)
Average LPM Delete: 296039 cycles

Perf test: 1 writer(s), 14 reader(s), RCU integration disabled
Total LPM Adds: 418280
Total LPM Deletes: 418280
Average LPM Add/Del: 707932 cycles

Perf test: 2 writer(s), 13 reader(s), RCU integration disabled
Total LPM Adds: 418280
Total LPM Deletes: 418280
Average LPM Add/Del: 648251 cycles

Perf test: 1 writer(s), 14 reader(s), RCU integration enabled
Total LPM Adds: 418280
Total LPM Deletes: 418280
Average LPM Add/Del: 557637 cycles

Perf test: 2 writer(s), 13 reader(s), RCU integration enabled
Total LPM Adds: 418280
Total LPM Deletes: 418280
Average LPM Add/Del: 581525 cycles
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fd369762000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fd369708000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fd36947f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fcf67e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fd36941e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fcb67c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fd36929f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fc767a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fd36923e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fc367800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fd367f9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fbf67600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fd367f39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fbb67400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fd367ed8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fb767200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fd367e77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fb367000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

102/157 DPDK:perf-tests / rib_slow_autotest                 OK                90.78s
22:13:19 MALLOC_PERTURB_=206 DPDK_TEST=rib_slow_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>rib_slow_autotest
 + ------------------------------------------------------- +
 + Test Suite : rib slow autotest
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_multiple_create succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : rib slow autotest
 + ------------------------------------------------------- +
 + Tests Total :        1
 + Tests Skipped :      0
 + Tests Executed :     1
 + Tests Unsupported:   0
 + Tests Passed :       1
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f6e5e511000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f6e5e294000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f6e5e233000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f6a5cc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f6e5e09f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f665ca00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f6e5e03e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f625c800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f6e5cd9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f5e5c600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f6e5cd39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f5a5c400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f6e5ccd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f565c200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6e5cc77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f525c000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6e5cc16000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4e5be00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

103/157 DPDK:perf-tests / fib_slow_autotest                 OK                 2.72s
22:14:50 MALLOC_PERTURB_=157 DPDK_TEST=fib_slow_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>fib_slow_autotest
 + ------------------------------------------------------- +
 + Test Suite : fib slow autotest
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_multiple_create succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : fib slow autotest
 + ------------------------------------------------------- +
 + Tests Total :        1
 + Tests Skipped :      0
 + Tests Executed :     1
 + Tests Unsupported:   0
 + Tests Passed :       1
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f99fc7bc000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f99fc762000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f99fc701000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f95fae00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f99fc47f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f91fac00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f99fc41e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f8dfaa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f99fc29f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f89fa800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f99fc23e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f85fa600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f99faf9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f81fa400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f99faf39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f7dfa200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f99faed8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f79fa000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

104/157 DPDK:perf-tests / fib_perf_autotest                 OK                 2.64s
22:14:52 MALLOC_PERTURB_=245 DPDK_TEST=fib_perf_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>fib_perf_autotest
No. routes = 1076806
Route distribution per prefix width:
DEPTH    QUANTITY (PERCENT)
---------------------------
01              0 (0.00)
02              0 (0.00)
03              1 (0.00)
04              0 (0.00)
05              3 (0.00)
06              2 (0.00)
07              4 (0.00)
08            201 (0.02)
09             37 (0.00)
10             55 (0.01)
11             97 (0.01)
12            381 (0.04)
13            775 (0.07)
14           2104 (0.20)
15           3712 (0.34)
16          69319 (6.44)
17          12983 (1.21)
18          23667 (2.20)
19          69068 (6.41)
20          62354 (5.79)
21          48531 (4.51)
22          72355 (6.72)
23          85427 (7.93)
24         583900 (54.23)
25           2654 (0.25)
26           5650 (0.52)
27           6467 (0.60)
28           7127 (0.66)
29          12936 (1.20)
30           5999 (0.56)
31             13 (0.00)
32            984 (0.09)

Unique added entries = 1076806
Average FIB Add: 1164.93 cycles
BULK FIB Lookup: 41.6 cycles (fails = 12.5%)
Average FIB Delete: 2305.49 cycles
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f29d1b52000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f29d18b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f29d1851000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f25d0200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f29d169f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f21d0000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f29d163e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f1dcfe00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f29d039a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f19cfc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f29d0339000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f15cfa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f29d02d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f11cf800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f29d0277000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f0dcf600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f29d0216000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f09cf400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

105/157 DPDK:perf-tests / red_all                           OK                73.46s
22:14:55 MALLOC_PERTURB_=156 DPDK_TEST=red_all /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>red_all

--------------------------------------------------------------------------------
functional test 1 : use one rte_red configuration,
		    increase average queue size to various levels,
		    compare drop rate to drop probability

                avg queue size enqueued       dropped        drop prob %    drop rate %    diff %         tolerance %    
                6              10000          0              0.0000         0.0000         0.0000         50.0000        
                12             10000          0              0.0000         0.0000         0.0000         50.0000        
                18             10000          0              0.0000         0.0000         0.0000         50.0000        
                24             10000          0              0.0000         0.0000         0.0000         50.0000        
                30             10000          0              0.0000         0.0000         0.0000         50.0000        
                36             9956           44             0.4167         0.4400         0.0000         50.0000        
                42             9896           104            1.0417         1.0400         0.0000         50.0000        
                48             9853           147            1.6667         1.4700         0.0000         50.0000        
                54             9762           238            2.2917         2.3800         0.0000         50.0000        
                60             9708           292            2.9167         2.9200         0.0000         50.0000        
                66             9638           362            3.5417         3.6200         0.0000         50.0000        
                72             9606           394            4.1667         3.9400         0.0000         50.0000        
                78             9486           514            4.7917         5.1400         0.0000         50.0000        
                84             9438           562            5.4167         5.6200         0.0000         50.0000        
                90             9380           620            6.0417         6.2000         0.0000         50.0000        
                96             9376           624            6.6667         6.2400         0.0000         50.0000        
                102            9268           732            7.2917         7.3200         0.0000         50.0000        
                108            9199           801            7.9167         8.0100         0.0000         50.0000        
                114            9123           877            8.5417         8.7700         0.0000         50.0000        
                120            9109           891            9.1667         8.9100         0.0000         50.0000        
                126            8986           1014           9.7917         10.1400        0.0000         50.0000        
                132            0              10000          100.0000       100.0000       0.0000         50.0000        
                138            0              10000          100.0000       100.0000       0.0000         50.0000        
                144            0              10000          100.0000       100.0000       0.0000         50.0000        
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
functional test 2 : use several RED configurations,
		    increase average queue size to just below maximum threshold,
		    compare drop rate to drop probability

RED config     avg queue size min threshold  max threshold  drop prob %    drop rate %    diff %         tolerance %    
0              127            32             128            9.8958         9.5800         0.0000         50.0000        
1              127            32             128            4.9479         4.9100         0.0000         50.0000        
2              127            32             128            3.2986         2.6100         0.0000         50.0000        
3              127            32             128            2.4740         1.6700         0.0000         50.0000        
4              127            32             128            1.9792         1.3100         0.0000         50.0000        
5              127            32             128            1.6493         0.9700         0.0000         50.0000        
6              127            32             128            1.4137         0.8600         0.0000         50.0000        
7              127            32             128            1.2370         0.7100         0.0000         50.0000        
8              127            32             128            1.0995         0.6400         0.0000         50.0000        
9              127            32             128            0.9896         0.5400         0.0000         50.0000        
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
functional test 3 : use one RED configuration,
		    increase average queue size to target level,
		    dequeue all packets until queue is empty,
		    confirm that average queue size is computed correctly while queue is empty

q avg before   q avg after    expected       difference %   tolerance %    result	 
1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
functional test 4 : use one RED configuration,
		    increase average queue size to target level,
		    dequeue all packets until queue is empty,
		    confirm that average queue size is computed correctly while
		    queue is empty for more than 50 sec,
		    (this test takes 52 sec to run)

q avg before   q avg after    expected       difference %   tolerance %    result	 
1022.0000      0.0000         0.0000         0.0000         0.0000         pass           
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
functional test 5 : use several queues (each with its own run-time data),
		    use several RED configurations (such that each configuration is shared by multiple queues),
		    increase average queue size to just below maximum threshold,
		    compare drop rate to drop probability,
		    (this is a larger scale version of functional test 2)

queue          config         avg queue size min threshold  max threshold  drop prob %    drop rate %    diff %         tolerance %    
0              0              127            32             128            9.8958         9.6600         0.0000         50.0000        
1              0              127            32             128            9.8958         9.8800         0.0000         50.0000        
2              1              127            32             128            4.9479         4.9100         0.0000         50.0000        
3              1              127            32             128            4.9479         5.0600         0.0000         50.0000        
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
functional test 6 : use several queues (each with its own run-time data),
		    use several RED configurations (such that each configuration is sharte_red by multiple queues),
		    increase average queue size to target level,
		    dequeue all packets until queue is empty,
		    confirm that average queue size is computed correctly while queue is empty
		    (this is a larger scale version of functional test 3)

queue          config         q avg before   q avg after    expected       difference %   tolerance %    result	 
0              0              1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
1              0              1022.0000      1022.0000      1016.0627      0.5843         5.0000         pass           
2              1              1022.0000      1022.0000      1010.1483      1.1733         5.0000         pass           
3              1              1022.0000      1022.0000      1010.1483      1.1733         5.0000         pass           
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
overflow test 1 : use one RED configuration,
		  increase average queue size to target level,
		  check maximum number of bits requirte_red to represent avg_s

avg queue size  wq_log2  fraction bits  max queue avg  num bits  enqueued  dropped   drop prob %  drop rate %  
1023            12       10             0xffc00000     32        0         941366    100.00       100.00       
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
performance test 1 : use one RED configuration,
		     set actual and average queue sizes to level below min threshold,
		     measure enqueue performance


total: 50000000, enqueued: 50000000 (100.00%), dropped: 0 (0.00%)
RDTSC stats for enqueue: n=50000000, min=18, max=1930768, avg=23.4
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
performance test 2 : use one RED configuration,
		     set actual and average queue sizes to level in between min and max thresholds,
		     measure enqueue performance


total: 50000000, enqueued: 47620380 (95.24%), dropped: 2379620 (4.76%)
RDTSC stats for enqueue: n=50000000, min=30, max=497500, avg=36.0
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
performance test 3 : use one RED configuration,
		     set actual and average queue sizes to level above max threshold,
		     measure enqueue performance


total: 50000000, enqueued: 0 (0.00%), dropped: 50000000 (100.00%)
RDTSC stats for enqueue: n=50000000, min=20, max=175206, avg=23.3
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
performance test 4 : use one RED configuration,
		     set actual and average queue sizes to level below min threshold,
		     dequeue all packets until queue is empty,
		     measure enqueue performance when queue is empty

iteration      q avg before   q avg after    expected       difference %   tolerance %    result	 
0              16.0000        16.0000        15.9953        0.0000         5.0000         pass           
9999           16.0000        16.0000        15.9953        0.0000         5.0000         pass           

total: 10000, enqueued: 10000 (100.00%), dropped: 0 (0.00%)
RDTSC stats for enqueue: n=10000, min=42, max=2428, avg=103.8
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
performance test 5 : use one RED configuration,
		     set actual and average queue sizes to level in between min and max thresholds,
		     dequeue all packets until queue is empty,
		     measure enqueue performance when queue is empty

iteration      q avg before   q avg after    expected       difference     tolerance      result	 
0              80.0000        80.0000        79.9767        0.0000         5.0000         pass           
9999           80.0000        80.0000        79.9767        0.0000         5.0000         pass           

total: 10000, enqueued: 10000 (100.00%), dropped: 0 (0.00%)
RDTSC stats for enqueue: n=10000, min=42, max=8732, avg=99.0
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
performance test 6 : use one RED configuration,
		     set actual and average queue sizes to level above max threshold,
		     dequeue all packets until queue is empty,
		     measure enqueue performance when queue is empty

iteration      q avg before   q avg after    expected       difference %   tolerance %    result	 
0              144.0000       144.0000       143.9581       0.0000         5.0000         pass           
9999           144.0000       144.0000       143.9581       0.0000         5.0000         pass           

total: 10000, enqueued: 10000 (100.00%), dropped: 0 (0.00%)
RDTSC stats for enqueue: n=10000, min=42, max=6198, avg=103.1
-------------------------------------<pass>-------------------------------------
[total: 13, pass: 13]
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fc5b2b37000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fc5b28b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fc5b2851000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fc1b1200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fc5b269f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fbdb1000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fc5b263e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fb9b0e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fc5b139a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fb5b0c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fc5b1339000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fb1b0a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fc5b12d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fadb0800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fc5b1277000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fa9b0600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fc5b1216000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fa5b0400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

106/157 DPDK:perf-tests / barrier_autotest                  OK                31.72s
22:16:09 DPDK_TEST=barrier_autotest MALLOC_PERTURB_=41 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>barrier_autotest
plock_test(iter=16777216, utype=0) started on 16 lcores
lpt[0]={lc=0, pt={0x616000001b80, 0x616000001ba0},};
lpt[1]={lc=1, pt={0x616000001ba0, 0x616000001bc0},};
lpt[2]={lc=2, pt={0x616000001bc0, 0x616000001be0},};
lpt[3]={lc=3, pt={0x616000001be0, 0x616000001c00},};
lpt[4]={lc=4, pt={0x616000001c00, 0x616000001c20},};
lpt[5]={lc=5, pt={0x616000001c20, 0x616000001c40},};
lpt[6]={lc=6, pt={0x616000001c40, 0x616000001c60},};
lpt[7]={lc=7, pt={0x616000001c60, 0x616000001c80},};
lpt[8]={lc=8, pt={0x616000001c80, 0x616000001ca0},};
lpt[9]={lc=9, pt={0x616000001ca0, 0x616000001cc0},};
lpt[10]={lc=10, pt={0x616000001cc0, 0x616000001ce0},};
lpt[11]={lc=11, pt={0x616000001ce0, 0x616000001d00},};
lpt[12]={lc=12, pt={0x616000001d00, 0x616000001d20},};
lpt[13]={lc=13, pt={0x616000001d20, 0x616000001d40},};
lpt[14]={lc=14, pt={0x616000001d40, 0x616000001d60},};
lpt[15]={lc=15, pt={0x616000001d60, 0x616000001b80},};
plock_test1_lcore(6): 16777216 iterations finished, in 24006927824 cycles, 1430.924405 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(0): 16777216 iterations finished, in 24504137538 cycles, 1460.560413 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(4): 16777216 iterations finished, in 27295611610 cycles, 1626.945234 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(5): 16777216 iterations finished, in 30655721898 cycles, 1827.223414 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(2): 16777216 iterations finished, in 33091556632 cycles, 1972.410478 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(3): 16777216 iterations finished, in 37532301454 cycles, 2237.099496 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(1): 16777216 iterations finished, in 37568597588 cycles, 2239.262914 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(12): 16777216 iterations finished, in 42356956032 cycles, 2524.671318 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(10): 16777216 iterations finished, in 42534438962 cycles, 2535.250125 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(8): 16777216 iterations finished, in 49009577612 cycles, 2921.198464 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(15): 16777216 iterations finished, in 52219600222 cycles, 3112.530722 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(7): 16777216 iterations finished, in 52556809154 cycles, 3132.629940 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(9): 16777216 iterations finished, in 52762137486 cycles, 3144.868462 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(14): 16777216 iterations finished, in 53924601312 cycles, 3214.156706 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(11): 16777216 iterations finished, in 54063870384 cycles, 3222.457789 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(13): 16777216 iterations finished, in 54247778760 cycles, 3233.419583 cycles/iteration, local sum={58720256, 58720256}
plock_test: sum[0]=117440512, pt[0].val=117440512, pt[0].iter=33554432;
plock_test: sum[1]=117440512, pt[1].val=117440512, pt[1].iter=33554432;
plock_test: sum[2]=117440512, pt[2].val=117440512, pt[2].iter=33554432;
plock_test: sum[3]=117440512, pt[3].val=117440512, pt[3].iter=33554432;
plock_test: sum[4]=117440512, pt[4].val=117440512, pt[4].iter=33554432;
plock_test: sum[5]=117440512, pt[5].val=117440512, pt[5].iter=33554432;
plock_test: sum[6]=117440512, pt[6].val=117440512, pt[6].iter=33554432;
plock_test: sum[7]=117440512, pt[7].val=117440512, pt[7].iter=33554432;
plock_test: sum[8]=117440512, pt[8].val=117440512, pt[8].iter=33554432;
plock_test: sum[9]=117440512, pt[9].val=117440512, pt[9].iter=33554432;
plock_test: sum[10]=117440512, pt[10].val=117440512, pt[10].iter=33554432;
plock_test: sum[11]=117440512, pt[11].val=117440512, pt[11].iter=33554432;
plock_test: sum[12]=117440512, pt[12].val=117440512, pt[12].iter=33554432;
plock_test: sum[13]=117440512, pt[13].val=117440512, pt[13].iter=33554432;
plock_test: sum[14]=117440512, pt[14].val=117440512, pt[14].iter=33554432;
plock_test: sum[15]=117440512, pt[15].val=117440512, pt[15].iter=33554432;
plock_test(utype=0) returns 0
plock_test(iter=16777216, utype=1) started on 16 lcores
lpt[0]={lc=0, pt={0x616000001e80, 0x616000001ea0},};
lpt[1]={lc=1, pt={0x616000001ea0, 0x616000001ec0},};
lpt[2]={lc=2, pt={0x616000001ec0, 0x616000001ee0},};
lpt[3]={lc=3, pt={0x616000001ee0, 0x616000001f00},};
lpt[4]={lc=4, pt={0x616000001f00, 0x616000001f20},};
lpt[5]={lc=5, pt={0x616000001f20, 0x616000001f40},};
lpt[6]={lc=6, pt={0x616000001f40, 0x616000001f60},};
lpt[7]={lc=7, pt={0x616000001f60, 0x616000001f80},};
lpt[8]={lc=8, pt={0x616000001f80, 0x616000001fa0},};
lpt[9]={lc=9, pt={0x616000001fa0, 0x616000001fc0},};
lpt[10]={lc=10, pt={0x616000001fc0, 0x616000001fe0},};
lpt[11]={lc=11, pt={0x616000001fe0, 0x616000002000},};
lpt[12]={lc=12, pt={0x616000002000, 0x616000002020},};
lpt[13]={lc=13, pt={0x616000002020, 0x616000002040},};
lpt[14]={lc=14, pt={0x616000002040, 0x616000002060},};
lpt[15]={lc=15, pt={0x616000002060, 0x616000001e80},};
plock_test1_lcore(4): 16777216 iterations finished, in 22397223908 cycles, 1334.978575 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(6): 16777216 iterations finished, in 24403141640 cycles, 1454.540589 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(12): 16777216 iterations finished, in 25124442434 cycles, 1497.533466 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(5): 16777216 iterations finished, in 25966702636 cycles, 1547.736087 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(14): 16777216 iterations finished, in 27561798892 cycles, 1642.811232 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(13): 16777216 iterations finished, in 28796582062 cycles, 1716.410045 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(15): 16777216 iterations finished, in 32204765604 cycles, 1919.553614 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(2): 16777216 iterations finished, in 37902388004 cycles, 2259.158373 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(3): 16777216 iterations finished, in 38300261794 cycles, 2282.873499 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(0): 16777216 iterations finished, in 39536871154 cycles, 2356.581161 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(1): 16777216 iterations finished, in 39876752344 cycles, 2376.839658 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(8): 16777216 iterations finished, in 40509067496 cycles, 2414.528578 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(7): 16777216 iterations finished, in 40792369722 cycles, 2431.414707 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(11): 16777216 iterations finished, in 44480856398 cycles, 2651.265645 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(10): 16777216 iterations finished, in 45597881806 cycles, 2717.845548 cycles/iteration, local sum={58720256, 58720256}
plock_test1_lcore(9): 16777216 iterations finished, in 45722350182 cycles, 2725.264441 cycles/iteration, local sum={58720256, 58720256}
plock_test: sum[0]=117440512, pt[0].val=117440512, pt[0].iter=33554432;
plock_test: sum[1]=117440512, pt[1].val=117440512, pt[1].iter=33554432;
plock_test: sum[2]=117440512, pt[2].val=117440512, pt[2].iter=33554432;
plock_test: sum[3]=117440512, pt[3].val=117440512, pt[3].iter=33554432;
plock_test: sum[4]=117440512, pt[4].val=117440512, pt[4].iter=33554432;
plock_test: sum[5]=117440512, pt[5].val=117440512, pt[5].iter=33554432;
plock_test: sum[6]=117440512, pt[6].val=117440512, pt[6].iter=33554432;
plock_test: sum[7]=117440512, pt[7].val=117440512, pt[7].iter=33554432;
plock_test: sum[8]=117440512, pt[8].val=117440512, pt[8].iter=33554432;
plock_test: sum[9]=117440512, pt[9].val=117440512, pt[9].iter=33554432;
plock_test: sum[10]=117440512, pt[10].val=117440512, pt[10].iter=33554432;
plock_test: sum[11]=117440512, pt[11].val=117440512, pt[11].iter=33554432;
plock_test: sum[12]=117440512, pt[12].val=117440512, pt[12].iter=33554432;
plock_test: sum[13]=117440512, pt[13].val=117440512, pt[13].iter=33554432;
plock_test: sum[14]=117440512, pt[14].val=117440512, pt[14].iter=33554432;
plock_test: sum[15]=117440512, pt[15].val=117440512, pt[15].iter=33554432;
plock_test(utype=1) returns 0
test_barrier for utype=0 passed
test_barrier for utype=1 passed
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f2a56c27000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f2a569aa000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f2a56949000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f2655400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f2a5679f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f2255200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f2a5673e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f1e55000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f2a5549a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f1a54e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f2a55439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f1654c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f265539f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f1254a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f265533e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f0e54800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f26552dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f0a54600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

107/157 DPDK:perf-tests / hash_multiwriter_autotest         OK                 9.47s
22:16:40 DPDK_TEST=hash_multiwriter_autotest MALLOC_PERTURB_=75 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>hash_multiwriter_autotest
Hardware transactional memory (lock elision) is supported
Test multi-writer with Hardware transactional memory
Core #1 inserting 294912: 294912 - 589823
Core #2 inserting 294912: 589824 - 884735
Core #3 inserting 294912: 884736 - 1179647
Core #4 inserting 294912: 1179648 - 1474559
Core #5 inserting 294912: 1474560 - 1769471
Core #6 inserting 294912: 1769472 - 2064383
Core #7 inserting 294912: 2064384 - 2359295
Core #8 inserting 294912: 2359296 - 2654207
Core #9 inserting 294912: 2654208 - 2949119
Core #10 inserting 294912: 2949120 - 3244031
Core #11 inserting 294912: 3244032 - 3538943
Core #12 inserting 294912: 3538944 - 3833855
Core #13 inserting 294912: 3833856 - 4128767
Core #14 inserting 294912: 4128768 - 4423679
Core #15 inserting 294912: 4423680 - 4718591
Core #0 inserting 294912: 0 - 294911
No key corrupted during multiwriter insertion.
 cycles per insertion: 1560
Test multi-writer without Hardware transactional memory
Core #1 inserting 294912: 294912 - 589823
Core #2 inserting 294912: 589824 - 884735
Core #3 inserting 294912: 884736 - 1179647
Core #4 inserting 294912: 1179648 - 1474559
Core #5 inserting 294912: 1474560 - 1769471
Core #6 inserting 294912: 1769472 - 2064383
Core #7 inserting 294912: 2064384 - 2359295
Core #8 inserting 294912: 2359296 - 2654207
Core #9 inserting 294912: 2654208 - 2949119
Core #10 inserting 294912: 2949120 - 3244031
Core #11 inserting 294912: 3244032 - 3538943
Core #12 inserting 294912: 3538944 - 3833855
Core #13 inserting 294912: 3833856 - 4128767
Core #14 inserting 294912: 4128768 - 4423679
Core #15 inserting 294912: 4423680 - 4718591
Core #0 inserting 294912: 0 - 294911
No key corrupted during multiwriter insertion.
 cycles per insertion: 78709
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fc26dd95000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fc26dd3b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fc26da7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fbe6c400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fc26da1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fba6c200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fc26d89f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fb66c000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fc26d83e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fb26be00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fc26c59a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fae6bc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fc26c539000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7faa6ba00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fc26c4d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fa66b800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fc26c477000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fa26b600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

108/157 DPDK:perf-tests / timer_racecond_autotest           OK                 4.48s
22:16:50 DPDK_TEST=timer_racecond_autotest MALLOC_PERTURB_=183 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>timer_racecond_autotest
Start timer manage race condition test (4 seconds)
Starting main loop on core 1
Starting main loop on core 2
Starting main loop on core 3
Starting main loop on core 4
Starting main loop on core 5
Starting main loop on core 6
Starting main loop on core 7
Starting main loop on core 8
Starting main loop on core 9
Starting main loop on core 10
Starting main loop on core 11
Starting main loop on core 12
Starting main loop on core 13
Starting main loop on core 14
Starting main loop on core 15
Stopping timer manage race condition test
- core 1, 48 reset collisions (OK)
- core 4, 48 reset collisions (OK)
- core 12, 36 reset collisions (OK)
- core 10, 36 reset collisions (OK)
- core 14, 36 reset collisions (OK)
- core 5, 36 reset collisions (OK)
- core 6, 36 reset collisions (OK)
- core 13, 36 reset collisions (OK)
- core 15, 36 reset collisions (OK)
- core 9, 36 reset collisions (OK)
- core 11, 36 reset collisions (OK)
- core 8, 36 reset collisions (OK)
- core 7, 36 reset collisions (OK)
- core 2, 48 reset collisions (OK)
- core 3, 48 reset collisions (OK)
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f5d1dc1f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f5d1d9a4000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f5d1d943000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f591c400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f5d1d79f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f551c200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f5d1d73e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f511c000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f5d1c49a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f4d1be00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f5d1c439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f491bc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f591c39f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f451ba00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f591c33e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f411b800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f591c2dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f3d1b600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

109/157 DPDK:perf-tests / efd_autotest                      FAIL               0.62s   exit status 1
22:16:54 MALLOC_PERTURB_=131 DPDK_TEST=efd_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>efd_autotest
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f41f56b7000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f41f565d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f41f537f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f3df3e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f41f531e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f39f3c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f41f519f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f35f3a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f41f513e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f31f3800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f41f3e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f2df3600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f41f3e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f29f3400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f3df3d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f25f3200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f3df3d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f21f3000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
=================================================================
==2865==ERROR: AddressSanitizer: global-buffer-overflow on address 0x5600fa85ff40 at pc 0x5600f860b032 bp 0x7ffe500c7f30 sp 0x7ffe500c7f20
READ of size 4 at 0x5600fa85ff40 thread T0
    #0 0x5600f860b031 in rte_efd_update (/dpdk/build/app/test/dpdk-test+0x1b9f031)
    #1 0x5600f6f83d4c in test_efd.cold (/dpdk/build/app/test/dpdk-test+0x517d4c)
    #2 0x5600f7d20c7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #3 0x5600f86e35a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #4 0x5600f86e07b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #5 0x5600f86e9a78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #6 0x5600f86e08a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #7 0x5600f6f79837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #8 0x7f41f852a0b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)
    #9 0x5600f7d20b6d in _start (/dpdk/build/app/test/dpdk-test+0x12b4b6d)

0x5600fa85ff41 is located 0 bytes to the right of global variable 'keys' defined in '../app/test/test_efd.c:54:24' (0x5600fa85ff00) of size 65
SUMMARY: AddressSanitizer: global-buffer-overflow (/dpdk/build/app/test/dpdk-test+0x1b9f031) in rte_efd_update
Shadow bytes around the buggy address:
  0x0ac09f503f90: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac09f503fa0: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac09f503fb0: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac09f503fc0: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac09f503fd0: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
=>0x0ac09f503fe0: 00 00 00 00 00 00 00 00[01]f9 f9 f9 f9 f9 f9 f9
  0x0ac09f503ff0: 00 00 00 00 f9 f9 f9 f9 00 00 00 00 00 00 00 00
  0x0ac09f504000: 00 00 00 00 00 00 00 00 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac09f504010: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac09f504020: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
  0x0ac09f504030: f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9 f9
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07 
  Heap left redzone:       fa
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
  Shadow gap:              cc
==2865==ABORTING
------------------------------------------------------------------------------

110/157 DPDK:perf-tests / hash_functions_autotest           OK                10.27s
22:16:55 MALLOC_PERTURB_=244 DPDK_TEST=hash_functions_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>hash_functions_autotest
 *** Hash function performance test results ***
 Number of iterations for each test = 1000000
Hash Func.  , Key Length (bytes), Initial value, Ticks/Op.
jhash       , 1                 , 0            , 35.57
rte_hash_crc, 1                 , 0            , 31.86
jhash       , 2                 , 0            , 35.70
rte_hash_crc, 2                 , 0            , 33.30
jhash       , 4                 , 0            , 34.81
rte_hash_crc, 4                 , 0            , 33.36
jhash       , 8                 , 0            , 36.03
rte_hash_crc, 8                 , 0            , 33.79
jhash       , 16                , 0            , 41.34
rte_hash_crc, 16                , 0            , 34.70
jhash       , 32                , 0            , 50.73
rte_hash_crc, 32                , 0            , 35.64
jhash       , 48                , 0            , 60.64
rte_hash_crc, 48                , 0            , 37.93
jhash       , 64                , 0            , 78.22
rte_hash_crc, 64                , 0            , 41.66
jhash       , 9                 , 0            , 38.08
rte_hash_crc, 9                 , 0            , 35.44
jhash       , 13                , 0            , 42.41
rte_hash_crc, 13                , 0            , 37.63
jhash       , 37                , 0            , 58.24
rte_hash_crc, 37                , 0            , 39.58
jhash       , 40                , 0            , 57.80
rte_hash_crc, 40                , 0            , 37.25
jhash       , 1                 , 3735928559   , 34.34
rte_hash_crc, 1                 , 3735928559   , 33.42
jhash       , 2                 , 3735928559   , 34.67
rte_hash_crc, 2                 , 3735928559   , 31.55
jhash       , 4                 , 3735928559   , 33.73
rte_hash_crc, 4                 , 3735928559   , 32.91
jhash       , 8                 , 3735928559   , 36.39
rte_hash_crc, 8                 , 3735928559   , 34.17
jhash       , 16                , 3735928559   , 42.58
rte_hash_crc, 16                , 3735928559   , 35.62
jhash       , 32                , 3735928559   , 51.47
rte_hash_crc, 32                , 3735928559   , 36.81
jhash       , 48                , 3735928559   , 61.24
rte_hash_crc, 48                , 3735928559   , 40.27
jhash       , 64                , 3735928559   , 78.30
rte_hash_crc, 64                , 3735928559   , 43.75
jhash       , 9                 , 3735928559   , 37.05
rte_hash_crc, 9                 , 3735928559   , 35.19
jhash       , 13                , 3735928559   , 41.69
rte_hash_crc, 13                , 3735928559   , 36.72
jhash       , 37                , 3735928559   , 57.58
rte_hash_crc, 37                , 3735928559   , 39.00
jhash       , 40                , 3735928559   , 57.58
rte_hash_crc, 40                , 3735928559   , 37.16
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fa16a575000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fa16a51b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fa16a27f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f9d68c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fa16a21e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f9968a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fa16a09f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f9568800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fa16a03e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f9168600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fa168d9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f8d68400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fa168d39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f8968200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fa168cd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f8568000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fa168c77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f8167e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

111/157 DPDK:perf-tests / member_perf_autotest              OK                38.72s
22:17:05 DPDK_TEST=member_perf_autotest MALLOC_PERTURB_=204 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>member_perf_autotest
Measuring performance, please wait
..........
Results (in CPU cycles/operation)
-----------------------------------

Keysize           type              Add               Lookup            Lookup_bulk       lookup_multi      lookup_multi_bulk Delete            miss_lookup       
4                 0                 212               149               95                180               112               184               126               
4                 1                 247               157               95                178               108               183               126               
4                 2                 160               145               136               150               142               0                 62                
8                 0                 214               150               95                180               113               185               140               
8                 1                 244               162               98                175               109               181               123               
8                 2                 218               142               137               148               140               0                 61                
16                0                 268               203               108               266               126               229               198               
16                1                 345               205               109               268               123               233               190               
16                2                 230               206               147               220               152               0                 64                
32                0                 195               142               95                155               113               170               123               
32                1                 222               150               100               157               112               174               123               
32                2                 148               129               142               130               147               0                 65                
48                0                 204               145               98                159               117               175               128               
48                1                 223               149               99                160               113               177               122               
48                2                 151               131               145               134               152               0                 69                
64                0                 215               146               99                162               118               180               131               
64                1                 227               152               99                161               114               179               133               
64                2                 153               135               150               137               158               0                 73                
9                 0                 214               152               95                179               112               181               146               
9                 1                 243               158               95                176               108               186               140               
9                 2                 162               145               141               147               146               0                 63                
13                0                 217               153               109               179               127               185               138               
13                1                 244               161               107               181               125               191               127               
13                2                 171               149               150               155               156               0                 65                
37                0                 205               147               100               158               114               176               132               
37                1                 224               148               100               158               112               174               125               
37                2                 147               131               149               135               156               0                 70                
40                0                 205               155               100               154               113               167               121               
40                1                 215               148               99                152               112               169               120               
40                2                 141               127               141               130               147               0                 67                

False results rate (and false positive rate)
-----------------------------------

Keysize           type              fr_single         fr_bulk           fr_multi          fr_multi_bulk     false_positive_rate
4                 0                 0.000048          0.000048          0.000048          0.000048          0.000280          
4                 1                 0.002225          0.002225          0.002225          0.002225          0.000346          
4                 2                 0.006396          0.006396          0.006396          0.006396          0.013367          
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f3ea3906000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f3ea3686000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f3ea3625000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f3aa2000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f3ea349f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f36a1e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f3ea343e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f32a1c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f3ea219a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f2ea1a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f3ea2139000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f2aa1800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f3ea20d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f26a1600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f3ea2077000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f22a1400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f3ea2016000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f1ea1200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 24576 keys, needs 524288 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 24576 keys, needs 524288 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 24576 keys, needs 524288 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 24576 keys, needs 524288 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 24576 keys, needs 524288 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 24576 keys, needs 524288 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 24576 keys, needs 524288 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 24576 keys, needs 524288 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 24576 keys, needs 524288 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 524288 entries, 32768 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 24576 keys, needs 524288 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 12288 keys, needs 262144 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 12288 keys, needs 262144 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 12288 keys, needs 262144 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 12288 keys, needs 262144 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 12288 keys, needs 262144 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 12288 keys, needs 262144 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 12288 keys, needs 262144 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 12288 keys, needs 262144 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 12288 keys, needs 262144 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_ht(): Hash table based filter created, the table has 262144 entries, 16384 buckets
rte_member_create(): Creating a setsummary table with mode 0
rte_member_create_vbf(): vector bloom filter created, each bloom filter expects 12288 keys, needs 262144 bits, 4 hashes, with false positive rate set as 0.00190, The new calculated vBF false positive rate is 0.01358
rte_member_create(): Creating a setsummary table with mode 1
------------------------------------------------------------------------------

112/157 DPDK:perf-tests / efd_perf_autotest                 OK                17.88s
22:17:44 DPDK_TEST=efd_perf_autotest MALLOC_PERTURB_=100 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>efd_perf_autotest
Measuring performance, please wait
..........
Results (in CPU cycles/operation)
-----------------------------------

Keysize           Add               Lookup            Lookup_bulk       Delete            
4                 5107              135               130               527               
8                 5245              137               131               560               
16                5225              150               143               622               
32                5427              163               166               755               
48                5858              183               186               994               
64                6050              212               207               998               
9                 5193              142               139               594               
13                5425              156               149               632               
37                5767              189               187               954               
40                5903              177               177               965               
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f31ce55b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f31ce501000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f31ce27f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f2dccc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f31ce21e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f29cca00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f31ce09f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f25cc800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f31ce03e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f21cc600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f31ccd9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f1dcc400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f31ccd39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f19cc200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f31cccd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f15cc000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f31ccc77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f11cbe00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

113/157 DPDK:perf-tests / lpm6_perf_autotest                FAIL               0.39s   exit status 1
22:18:02 MALLOC_PERTURB_=76 DPDK_TEST=lpm6_perf_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>lpm6_perf_autotest
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f0259904000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f0259686000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f0259625000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7efe58000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f025949f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7efa57e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f025943e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7ef657c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f025819a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7ef257a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f0258139000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7eee57800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f02580d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7eea57600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f0258077000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7ee657400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f0258016000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ee257200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
=================================================================
==2952==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7fff8852c860 at pc 0x55a0ff90b09f bp 0x7fff8852c750 sp 0x7fff8852c740
READ of size 4 at 0x7fff8852c860 thread T0
    #0 0x55a0ff90b09e in rule_hash (/dpdk/build/app/test/dpdk-test+0x1b2109e)
    #1 0x55a0ffa52e5f in rte_hash_lookup_data (/dpdk/build/app/test/dpdk-test+0x1c68e5f)
    #2 0x55a0ff90cf2b in rte_lpm6_add (/dpdk/build/app/test/dpdk-test+0x1b22f2b)
    #3 0x55a0ff2ab310 in test_lpm6_perf (/dpdk/build/app/test/dpdk-test+0x14c1310)
    #4 0x55a0ff09ec7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #5 0x55a0ffa615a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #6 0x55a0ffa5e7b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #7 0x55a0ffa67a78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #8 0x55a0ffa5e8a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #9 0x55a0fe2f7837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #10 0x7f025c7770b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)
    #11 0x55a0ff09eb6d in _start (/dpdk/build/app/test/dpdk-test+0x12b4b6d)

Address 0x7fff8852c860 is located in stack of thread T0 at offset 80 in frame
    #0 0x55a0ff90be3f in rte_lpm6_add (/dpdk/build/app/test/dpdk-test+0x1b21e3f)

  This frame has 3 object(s):
    [32, 40) 'hash_val' (line 450)
    [64, 81) 'rule_key' (line 490) <== Memory access at offset 80 partially overflows this variable
    [128, 144) 'masked_ip' (line 865)
HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork
      (longjmp and C++ exceptions *are* supported)
SUMMARY: AddressSanitizer: stack-buffer-overflow (/dpdk/build/app/test/dpdk-test+0x1b2109e) in rule_hash
Shadow bytes around the buggy address:
  0x10007109d8b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10007109d8c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10007109d8d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10007109d8e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10007109d8f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
=>0x10007109d900: 00 00 f1 f1 f1 f1 00 f2 f2 f2 00 00[01]f2 f2 f2
  0x10007109d910: f2 f2 00 00 f3 f3 00 00 00 00 00 00 00 00 00 00
  0x10007109d920: 00 00 00 00 00 00 00 00 00 00 f1 f1 f1 f1 f1 f1
  0x10007109d930: 04 f2 00 04 f2 f2 00 00 00 00 00 00 00 00 00 00
  0x10007109d940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10007109d950: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07 
  Heap left redzone:       fa
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
  Shadow gap:              cc
==2952==ABORTING
------------------------------------------------------------------------------

114/157 DPDK:perf-tests / rib6_slow_autotest                OK                91.10s
22:18:02 MALLOC_PERTURB_=173 DPDK_TEST=rib6_slow_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>rib6_slow_autotest
 + ------------------------------------------------------- +
 + Test Suite : rib6 slow autotest
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_multiple_create succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : rib6 slow autotest
 + ------------------------------------------------------- +
 + Tests Total :        1
 + Tests Skipped :      0
 + Tests Executed :     1
 + Tests Unsupported:   0
 + Tests Passed :       1
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fb72778e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fb727734000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fb72747f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fb325e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fb72741e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7faf25c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fb72729f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fab25a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fb72723e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fa725800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fb725f9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fa325600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fb725f39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f9f25400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fb725ed8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f9b25200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fb725e77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9725000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

115/157 DPDK:perf-tests / fib6_slow_autotest                OK                 2.35s
22:19:33 MALLOC_PERTURB_=239 DPDK_TEST=fib6_slow_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>fib6_slow_autotest
 + ------------------------------------------------------- +
 + Test Suite : fib6 slow autotest
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_multiple_create succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : fib6 slow autotest
 + ------------------------------------------------------- +
 + Tests Total :        1
 + Tests Skipped :      0
 + Tests Executed :     1
 + Tests Unsupported:   0
 + Tests Passed :       1
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f490ac6f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f490ac15000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f490a97f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f4509400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f490a91e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f4109200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f490a79f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f3d09000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f490a73e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f3908e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f490949a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f3508c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f4909439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f3108a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f450939f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f2d08800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f450933e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f2908600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

116/157 DPDK:perf-tests / fib6_perf_autotest                OK                 3.26s
22:19:36 DPDK_TEST=fib6_perf_autotest MALLOC_PERTURB_=108 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>fib6_perf_autotest
No. routes = 1000
Route distribution per prefix width:
DEPTH    QUANTITY (PERCENT)
---------------------------
01              5 (0.50)
02              8 (0.80)
03              9 (0.90)
04             10 (1.00)
05              8 (0.80)
06              4 (0.40)
07              5 (0.50)
08             10 (1.00)
09             13 (1.30)
10             11 (1.10)
11             10 (1.00)
12              4 (0.40)
13             10 (1.00)
14              8 (0.80)
15              4 (0.40)
16             11 (1.10)
17              7 (0.70)
18              9 (0.90)
19             10 (1.00)
20              5 (0.50)
21              6 (0.60)
22             11 (1.10)
23              5 (0.50)
24             11 (1.10)
25              5 (0.50)
26              8 (0.80)
27              8 (0.80)
28             13 (1.30)
29              9 (0.90)
30              8 (0.80)
31              6 (0.60)
32             11 (1.10)
33             10 (1.00)
34              9 (0.90)
35              3 (0.30)
36              8 (0.80)
37              5 (0.50)
38              8 (0.80)
39              6 (0.60)
40              9 (0.90)
41              8 (0.80)
42             10 (1.00)
43              4 (0.40)
44              6 (0.60)
45              9 (0.90)
46             11 (1.10)
47             14 (1.40)
48              5 (0.50)
49              9 (0.90)
50             13 (1.30)
51             13 (1.30)
52              8 (0.80)
53              6 (0.60)
54             11 (1.10)
55             12 (1.20)
56              6 (0.60)
57              8 (0.80)
58              9 (0.90)
59              6 (0.60)
60              5 (0.50)
61              4 (0.40)
62             12 (1.20)
63              8 (0.80)
64              7 (0.70)
65              3 (0.30)
66              7 (0.70)
67             17 (1.70)
68             11 (1.10)
69              3 (0.30)
70              9 (0.90)
71              7 (0.70)
72              9 (0.90)
73              5 (0.50)
74              5 (0.50)
75              4 (0.40)
76              4 (0.40)
77              4 (0.40)
78             10 (1.00)
79              9 (0.90)
80              6 (0.60)
81              5 (0.50)
82              5 (0.50)
83              4 (0.40)
84             10 (1.00)
85              6 (0.60)
86              8 (0.80)
87              9 (0.90)
88              7 (0.70)
89              9 (0.90)
90              9 (0.90)
91              9 (0.90)
92              9 (0.90)
93             12 (1.20)
94              6 (0.60)
95              8 (0.80)
96             18 (1.80)
97              5 (0.50)
98              8 (0.80)
99              5 (0.50)
100              5 (0.50)
101              5 (0.50)
102              4 (0.40)
103              7 (0.70)
104              7 (0.70)
105              4 (0.40)
106              6 (0.60)
107              7 (0.70)
108             11 (1.10)
109             11 (1.10)
110              6 (0.60)
111              9 (0.90)
112              9 (0.90)
113             10 (1.00)
114             10 (1.00)
115              4 (0.40)
116              8 (0.80)
117              9 (0.90)
118             10 (1.00)
119              7 (0.70)
120              8 (0.80)
121             10 (1.00)
122              7 (0.70)
123              5 (0.50)
124              6 (0.60)
125              4 (0.40)
126              5 (0.50)
127             10 (1.00)
128              7 (0.70)

Unique added entries = 1000
Average FIB Add: 162892 cycles
BULK FIB Lookup: 52.8 cycles (fails = 0.0%)
Average FIB Delete: 88895.3 cycles
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f1c9c134000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f1c9beb2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f1c9be51000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f189a800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f1c9bc9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f149a600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f1c9bc3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f109a400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f1c9a99a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f0c9a200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f1c9a939000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f089a000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f1c9a8d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f0499e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f1c9a877000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f0099c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f1c9a816000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7efc99a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

117/157 DPDK:perf-tests / rcu_qsbr_perf_autotest            OK              1533.52s
22:19:39 DPDK_TEST=rcu_qsbr_perf_autotest MALLOC_PERTURB_=83 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>rcu_qsbr_perf_autotest
Number of cores provided = 15
Perf test with all reader threads registered
--------------------------------------------

Perf Test: 14 Readers/1 Writer('wait' in qsbr_check == true)
Total quiescent state updates = 296346918776
Cycles per 1000 quiescent state updates: 10978
Total RCU checks = 20000000
Cycles per 1000 checks: 11618748

Perf Test: 15 Readers
Total quiescent state updates = 1500000000
Cycles per 1000 quiescent state updates: 4213

Perf test: 15 Writers ('wait' in qsbr_check == false)
Total RCU checks = 300000000
Cycles per 1000 checks: 2606

Perf test: 1 writer, 15 readers, 1 QSBR variable, 1 QSBR Query, Blocking QSBR Check
Following numbers include calls to rte_hash functions
Cycles per 1 quiescent state update(online/update/offline): 115047044
Cycles per 1 check(start, check): 130250695

Perf test: 1 writer, 15 readers, 1 QSBR variable, 1 QSBR Query, Non-Blocking QSBR check
Following numbers include calls to rte_hash functions
Cycles per 1 quiescent state update(online/update/offline): 118886281
Cycles per 1 check(start, check): 137499787

Perf test with some of reader threads registered
------------------------------------------------

Perf Test: 14 Readers/1 Writer('wait' in qsbr_check == true)
Total quiescent state updates = 244621826407
Cycles per 1000 quiescent state updates: 11501
Total RCU checks = 20000000
Cycles per 1000 checks: 10048101

Perf Test: 15 Readers
Total quiescent state updates = 1500000000
Cycles per 1000 quiescent state updates: 5975

Perf test: 15 Writers ('wait' in qsbr_check == false)
Total RCU checks = 300000000
Cycles per 1000 checks: 2561

Perf test: 1 writer, 15 readers, 1 QSBR variable, 1 QSBR Query, Blocking QSBR Check
Following numbers include calls to rte_hash functions
Cycles per 1 quiescent state update(online/update/offline): 110636726
Cycles per 1 check(start, check): 125600957

Perf test: 1 writer, 15 readers, 1 QSBR variable, 1 QSBR Query, Non-Blocking QSBR check
Following numbers include calls to rte_hash functions
Cycles per 1 quiescent state update(online/update/offline): 116817447
Cycles per 1 check(start, check): 134628754


Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f807b247000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f807afb2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f807af51000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f7c79a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f807ad9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f7879800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f807ad3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f7479600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f8079a9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f7079400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f8079a39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f6c79200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f7c7999f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f6879000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f7c7993e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f6478e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f7c798dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f6078c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

118/157 DPDK:perf-tests / red_perf                          OK                20.83s
22:45:12 MALLOC_PERTURB_=132 DPDK_TEST=red_perf /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>red_perf

--------------------------------------------------------------------------------
performance test 1 : use one RED configuration,
		     set actual and average queue sizes to level below min threshold,
		     measure enqueue performance


total: 50000000, enqueued: 50000000 (100.00%), dropped: 0 (0.00%)
RDTSC stats for enqueue: n=50000000, min=18, max=328862, avg=22.4
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
performance test 2 : use one RED configuration,
		     set actual and average queue sizes to level in between min and max thresholds,
		     measure enqueue performance


total: 50000000, enqueued: 47621037 (95.24%), dropped: 2378963 (4.76%)
RDTSC stats for enqueue: n=50000000, min=30, max=2852734, avg=35.7
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
performance test 3 : use one RED configuration,
		     set actual and average queue sizes to level above max threshold,
		     measure enqueue performance


total: 50000000, enqueued: 0 (0.00%), dropped: 50000000 (100.00%)
RDTSC stats for enqueue: n=50000000, min=20, max=149004, avg=23.1
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
performance test 4 : use one RED configuration,
		     set actual and average queue sizes to level below min threshold,
		     dequeue all packets until queue is empty,
		     measure enqueue performance when queue is empty

iteration      q avg before   q avg after    expected       difference %   tolerance %    result	 
0              16.0000        16.0000        15.9953        0.0000         5.0000         pass           
9999           16.0000        16.0000        15.9953        0.0000         5.0000         pass           

total: 10000, enqueued: 10000 (100.00%), dropped: 0 (0.00%)
RDTSC stats for enqueue: n=10000, min=42, max=3868, avg=110.4
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
performance test 5 : use one RED configuration,
		     set actual and average queue sizes to level in between min and max thresholds,
		     dequeue all packets until queue is empty,
		     measure enqueue performance when queue is empty

iteration      q avg before   q avg after    expected       difference     tolerance      result	 
0              80.0000        80.0000        79.9767        0.0000         5.0000         pass           
9999           80.0000        80.0000        79.9767        0.0000         5.0000         pass           

total: 10000, enqueued: 10000 (100.00%), dropped: 0 (0.00%)
RDTSC stats for enqueue: n=10000, min=42, max=4480, avg=108.6
-------------------------------------<pass>-------------------------------------

--------------------------------------------------------------------------------
performance test 6 : use one RED configuration,
		     set actual and average queue sizes to level above max threshold,
		     dequeue all packets until queue is empty,
		     measure enqueue performance when queue is empty

iteration      q avg before   q avg after    expected       difference %   tolerance %    result	 
0              144.0000       144.0000       143.9581       0.0000         5.0000         pass           
9999           144.0000       144.0000       143.9581       0.0000         5.0000         pass           

total: 10000, enqueued: 10000 (100.00%), dropped: 0 (0.00%)
RDTSC stats for enqueue: n=10000, min=42, max=6738, avg=111.3
-------------------------------------<pass>-------------------------------------
[total: 6, pass: 6]
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f4a32d93000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f4a32d39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f4a32a7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f4631400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f4a32a1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f4231200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f4a3289f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f3e31000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f4a3283e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f3a30e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f4a3159a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f3630c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f4a31539000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f3230a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f4a314d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f2e30800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f4a31477000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f2a30600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

119/157 DPDK:perf-tests / distributor_perf_autotest         OK                51.65s
22:45:33 DPDK_TEST=distributor_perf_autotest MALLOC_PERTURB_=60 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>distributor_perf_autotest
==== Cache line switch test ===
Time for 33554432 iterations = 20544556908 ticks
Ticks per iteration = 612

=== Performance test of distributor (single mode) ===
Time per burst:  38484
Time per packet: 601

Worker 0 handled 10387869 packets
Worker 1 handled 10352830 packets
Worker 2 handled 10357411 packets
Worker 3 handled 10372292 packets
Worker 4 handled 8639814 packets
Worker 5 handled 8602121 packets
Worker 6 handled 8547239 packets
Worker 7 handled 8517409 packets
Worker 8 handled 8470901 packets
Worker 9 handled 8370210 packets
Worker 10 handled 8363165 packets
Worker 11 handled 8367821 packets
Worker 12 handled 8362676 packets
Worker 13 handled 8362414 packets
Worker 14 handled 8143556 packets
Total packets: 134217728 (8000000)
=== Perf test done ===

=== Performance test of distributor (burst mode) ===
Time per burst:  29655
Time per packet: 463

Worker 0 handled 16777216 packets
Worker 1 handled 16777216 packets
Worker 2 handled 16777216 packets
Worker 3 handled 16777216 packets
Worker 4 handled 16777216 packets
Worker 5 handled 16777216 packets
Worker 6 handled 16777216 packets
Worker 7 handled 16777216 packets
Worker 8 handled 0 packets
Worker 9 handled 0 packets
Worker 10 handled 0 packets
Worker 11 handled 0 packets
Worker 12 handled 0 packets
Worker 13 handled 0 packets
Worker 14 handled 0 packets
Total packets: 134217728 (8000000)
=== Perf test done ===

Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7eff36e1d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7eff36b9c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7eff36b3b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7efb35600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7eff3699f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7ef735400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7eff3693e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7ef335200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7eff3569a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7eef35000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7eff35639000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7eeb34e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7efb3559f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7ee734c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7efb3553e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7ee334a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7efb354dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7edf34800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

120/157 DPDK:perf-tests / pmd_perf_autotest                 FAIL               0.39s   (exit status 255 or signal 127 SIGinvalid)
22:46:25 DPDK_TEST=pmd_perf_autotest MALLOC_PERTURB_=4 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>pmd_perf_autotest
Start PMD RXTX cycles cost test.
At least 1 port(s) used for perf. test
Test Failed
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f3293638000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f32933b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f3293351000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f2e91e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f329319f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f2a91c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f329313e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f2691a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f3291e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f2291800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f3291e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f1e91600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f2e91d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f1a91400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f2e91d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f1691200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f2e91cdd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f1291000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

121/157 DPDK:perf-tests / stack_perf_autotest               OK                44.03s
22:46:25 MALLOC_PERTURB_=184 DPDK_TEST=stack_perf_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>stack_perf_autotest
### Testing single element push/pop ###
Average cycles per single object push/pop: 83.17

### Testing empty pop ###
Stack empty pop: 41.15

### Testing using a single lcore ###
Average cycles per object push/pop (bulk size: 8): 16.40
Average cycles per object push/pop (bulk size: 32): 8.31

### Testing using two hyperthreads ###
Average cycles per object push/pop (bulk size: 8): 163.74
Average cycles per object push/pop (bulk size: 32): 35.98

### Testing using two NUMA nodes ###
Average cycles per object push/pop (bulk size: 8): 572.63
Average cycles per object push/pop (bulk size: 32): 138.39

### Testing on all 16 lcores ###
Average cycles per object push/pop (bulk size: 8): 8201.87
Average cycles per object push/pop (bulk size: 32): 1438.61
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fb10562d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fb1053b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fb105351000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fad03e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fb10519f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fa903c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fb10513e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fa503a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fb103e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fa103800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fb103e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f9d03600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fad03d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f9903400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fad03d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f9503200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fad03cdd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9103000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

122/157 DPDK:perf-tests / stack_lf_perf_autotest            OK                39.66s
22:47:09 DPDK_TEST=stack_lf_perf_autotest MALLOC_PERTURB_=93 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>stack_lf_perf_autotest
### Testing single element push/pop ###
Average cycles per single object push/pop: 291.33

### Testing empty pop ###
Stack empty pop: 7.21

### Testing using a single lcore ###
Average cycles per object push/pop (bulk size: 8): 47.87
Average cycles per object push/pop (bulk size: 32): 21.53

### Testing using two hyperthreads ###
Average cycles per object push/pop (bulk size: 8): 271.82
Average cycles per object push/pop (bulk size: 32): 77.63

### Testing using two NUMA nodes ###
Average cycles per object push/pop (bulk size: 8): 189.14
Average cycles per object push/pop (bulk size: 32): 126.88

### Testing on all 16 lcores ###
Average cycles per object push/pop (bulk size: 8): 4544.05
Average cycles per object push/pop (bulk size: 32): 1690.09
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fa429777000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fa42971d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fa42947f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fa027e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fa42941e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f9c27c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fa42929f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f9827a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fa42923e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f9427800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fa427f9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f9027600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fa427f39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f8c27400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fa427ed8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f8827200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fa427e77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f8427000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

123/157 DPDK:perf-tests / rand_perf_autotest                OK                 3.78s
22:47:49 DPDK_TEST=rand_perf_autotest MALLOC_PERTURB_=183 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>rand_perf_autotest
Pseudo-random number generation latencies:
Full 64-bit [rte_rand()]: 22 TSC cycles/op
Bounded average best-case [rte_rand_max()]: 27 TSC cycles/op
Bounded average worst-case [rte_rand_max()]: 58 TSC cycles/op
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f2d2a24c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f2d29fb2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f2d29f51000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f2928a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f2d29d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f2528800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f2d29d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f2128600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f2d28a9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f1d28400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f2d28a39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f1928200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f292899f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f1528000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f292893e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f1127e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f29288dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f0d27c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

124/157 DPDK:perf-tests / hash_readwrite_perf_autotest      OK                37.55s
22:47:53 DPDK_TEST=hash_readwrite_perf_autotest MALLOC_PERTURB_=171 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>hash_readwrite_perf_autotest
Hardware transactional memory (lock elision) is supported
Test read-write with Hardware transactional memory
++++++Start perf test: reader++++++++
Reader only: cycles per lookup: 543
No key corrupted during read-write test.
Read-write cycles per lookup: 532
Reader only: cycles per lookup: 524
No key corrupted during read-write test.
Read-write cycles per lookup: 568
++++++Start perf test: writer++++++++
Writer only: cycles per writes: 1017
No key corrupted during read-write test.
Read-write cycles per writes: 995
Writer only: cycles per writes: 1243
No key corrupted during read-write test.
Read-write cycles per writes: 1277
Test read-write without Hardware transactional memory
++++++Start perf test: reader++++++++
Reader only: cycles per lookup: 709
No key corrupted during read-write test.
Read-write cycles per lookup: 1602
Reader only: cycles per lookup: 1409
No key corrupted during read-write test.
Read-write cycles per lookup: 6400
++++++Start perf test: writer++++++++
Writer only: cycles per writes: 1982
No key corrupted during read-write test.
Read-write cycles per writes: 4503
Writer only: cycles per writes: 4903
No key corrupted during read-write test.
Read-write cycles per writes: 13080
================
Results summary:
================
single read: 575
single write: 1044
+++ core_cnt: 2 +++
HTM:
  read only: 543
  write only: 1017
  read-write read: 532
  read-write write: 995
non HTM:
  read only: 709
  write only: 1982
  read-write read: 1602
  read-write write: 4503
+++ core_cnt: 4 +++
HTM:
  read only: 524
  write only: 1243
  read-write read: 568
  read-write write: 1277
non HTM:
  read only: 1409
  write only: 4903
  read-write read: 6400
  read-write write: 13080
+++ core_cnt: 8 +++
HTM:
  read only: 0
  write only: 0
  read-write read: 0
  read-write write: 0
non HTM:
  read only: 0
  write only: 0
  read-write read: 0
  read-write write: 0
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f8cf4b2a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f8cf48aa000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f8cf4849000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f88f3200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f8cf469f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f84f3000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f8cf463e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f80f2e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f8cf339a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f7cf2c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f8cf3339000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f78f2a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f8cf32d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f74f2800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f8cf3277000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f70f2600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f8cf3216000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f6cf2400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

125/157 DPDK:perf-tests / hash_readwrite_lf_perf_autotest   OK               228.24s
22:48:30 MALLOC_PERTURB_=164 DPDK_TEST=hash_readwrite_lf_perf_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>hash_readwrite_lf_perf_autotest
Generating keys...

Count of keys NOT causing shifting of existing keys to alternate location: 3609729

Count of keys causing shifting of existing keys to alternate locations: 583690

Count of absent keys that will never be added to the hash table: 4190219

Count of keys likely to be on the shift path: 1707256

Count of keys not likely to be on the shift path: 1902473

Count of keys in extended buckets: 16998

Count of keys shifting keys in ext buckets: 132568

Test lookup with read-write concurrency lock free support enabled

Test: Hash add - no key-shifts, read - hit

Number of readers: 1
Cycles per lookup: 322

Number of readers: 2
Cycles per lookup: 312

Number of readers: 4
Cycles per lookup: 304

** With bulk-lookup **

Number of readers: 1
Cycles per lookup: 131

Number of readers: 2
Cycles per lookup: 129

Number of readers: 4
Cycles per lookup: 130

Test: Hash add - no key-shifts, Hash lookup - miss

Number of readers: 1
Cycles per lookup: 309

Number of readers: 2
Cycles per lookup: 303

Number of readers: 4
Cycles per lookup: 291

** With bulk-lookup **

Number of readers: 1
Cycles per lookup: 84

Number of readers: 2
Cycles per lookup: 84

Number of readers: 4
Cycles per lookup: 83

Test: Hash add - key shift, Hash lookup - hit (non-shift-path)

Number of readers: 1
Cycles per lookup: 383

Number of readers: 2
Cycles per lookup: 372

Number of readers: 4
Cycles per lookup: 362

** With bulk-lookup **

Number of readers: 1
Cycles per lookup: 144

Number of readers: 2
Cycles per lookup: 143

Number of readers: 4
Cycles per lookup: 142

Test: Hash add - key shift, Hash lookup - hit (shift-path)

Number of readers: 1
Cycles per lookup: 428

Number of readers: 2
Cycles per lookup: 426

Number of readers: 4
Cycles per lookup: 418

** With bulk-lookup **

Number of readers: 1
Cycles per lookup: 157

Number of readers: 2
Cycles per lookup: 156

Number of readers: 4
Cycles per lookup: 156

Test: Hash add - key shift, Hash lookup - miss

Number of readers: 1
Cycles per lookup: 315

Number of readers: 2
Cycles per lookup: 315

Number of readers: 4
Cycles per lookup: 310

** With bulk-lookup **

Number of readers: 1
Cycles per lookup: 93

Number of readers: 2
Cycles per lookup: 92

Number of readers: 4
Cycles per lookup: 91

Test: Multi-add-lookup

Number of writers: 2
Number of readers: 1
Cycles per lookup: 425

Number of writers: 2
Number of readers: 2
Cycles per lookup: 425

Number of writers: 2
Number of readers: 4
Cycles per lookup: 422

** With bulk-lookup **

Number of writers: 2
Number of readers: 1
Cycles per lookup: 156

Number of writers: 2
Number of readers: 2
Cycles per lookup: 158

Number of writers: 2
Number of readers: 4
Cycles per lookup: 156

Number of writers: 4
Number of readers: 1
Cycles per lookup: 156

Number of writers: 4
Number of readers: 2
Cycles per lookup: 156

Number of writers: 4
Number of readers: 4
Cycles per lookup: 158

** With bulk-lookup **

Number of writers: 4
Number of readers: 1
Cycles per lookup: 156

Number of writers: 4
Number of readers: 2
Cycles per lookup: 156

Number of writers: 4
Number of readers: 4
Cycles per lookup: 158

Test: Hash add - key-shifts, read - hit (ext_bkt)

Number of readers: 1
Cycles per lookup: 264

Number of readers: 2
Cycles per lookup: 233

Number of readers: 4
Cycles per lookup: 228

** With bulk-lookup **

Number of readers: 1
Cycles per lookup: 238

Number of readers: 2
Cycles per lookup: 223

Number of readers: 4
Cycles per lookup: 220

Test: Writer perf with integrated RCU

Number of writers: 1
Cycles per write operation: 9275

Number of writers: 2
Cycles per write operation: 9750

Number of writers: 4
Cycles per write operation: 12745

Test lookup with read-write concurrency lock free support disabled
With HTM Enabled

Test: Hash add - no key-shifts, read - hit

Number of readers: 1
Cycles per lookup: 531

Number of readers: 2
Cycles per lookup: 505

Number of readers: 4
Cycles per lookup: 486

** With bulk-lookup **

Number of readers: 1
Cycles per lookup: 174

Number of readers: 2
Cycles per lookup: 182

Number of readers: 4
Cycles per lookup: 191

Test: Hash add - no key-shifts, Hash lookup - miss

Number of readers: 1
Cycles per lookup: 522

Number of readers: 2
Cycles per lookup: 512

Number of readers: 4
Cycles per lookup: 493

** With bulk-lookup **

Number of readers: 1
Cycles per lookup: 116

Number of readers: 2
Cycles per lookup: 117

Number of readers: 4
Cycles per lookup: 119

Test: Hash add - key shift, Hash lookup - hit (non-shift-path)

Number of readers: 1
Cycles per lookup: 549

Number of readers: 2
Cycles per lookup: 537

Number of readers: 4
Cycles per lookup: 523

** With bulk-lookup **

Number of readers: 1
Cycles per lookup: 179

Number of readers: 2
Cycles per lookup: 186

Number of readers: 4
Cycles per lookup: 202

Test: Hash add - key shift, Hash lookup - hit (shift-path)

Number of readers: 1
Cycles per lookup: 616

Number of readers: 2
Cycles per lookup: 599

Number of readers: 4
Cycles per lookup: 585

** With bulk-lookup **

Number of readers: 1
Cycles per lookup: 195

Number of readers: 2
Cycles per lookup: 206

Number of readers: 4
Cycles per lookup: 231

Test: Hash add - key shift, Hash lookup - miss

Number of readers: 1
Cycles per lookup: 511

Number of readers: 2
Cycles per lookup: 492

Number of readers: 4
Cycles per lookup: 481

** With bulk-lookup **

Number of readers: 1
Cycles per lookup: 118

Number of readers: 2
Cycles per lookup: 119

Number of readers: 4
Cycles per lookup: 121

Test: Multi-add-lookup

Number of writers: 2
Number of readers: 1
Cycles per lookup: 611

Number of writers: 2
Number of readers: 2
Cycles per lookup: 595

Number of writers: 2
Number of readers: 4
Cycles per lookup: 591

** With bulk-lookup **

Number of writers: 2
Number of readers: 1
Cycles per lookup: 195

Number of writers: 2
Number of readers: 2
Cycles per lookup: 209

Number of writers: 2
Number of readers: 4
Cycles per lookup: 230

Number of writers: 4
Number of readers: 1
Cycles per lookup: 196

Number of writers: 4
Number of readers: 2
Cycles per lookup: 209

Number of writers: 4
Number of readers: 4
Cycles per lookup: 245

** With bulk-lookup **

Number of writers: 4
Number of readers: 1
Cycles per lookup: 196

Number of writers: 4
Number of readers: 2
Cycles per lookup: 210

Number of writers: 4
Number of readers: 4
Cycles per lookup: 246

Test: Hash add - key-shifts, read - hit (ext_bkt)

Number of readers: 1
Cycles per lookup: 424

Number of readers: 2
Cycles per lookup: 405

Number of readers: 4
Cycles per lookup: 400

** With bulk-lookup **

Number of readers: 1
Cycles per lookup: 240

Number of readers: 2
Cycles per lookup: 265

Number of readers: 4
Cycles per lookup: 320

						********** Results summary **********

_______		_______		_________	___		_________						_________________
Writers		Readers		Lock-free	HTM		Test-case						Cycles per lookup
_______		_______		_________	___		_________						_________________
1		1		Enabled		N/A		Hash add - no key-shifts, lookup - hit				322
								Hash add - no key-shifts, lookup - miss				309
								Hash add - key-shifts, lookup - hit(non-shift-path)		383
								Hash add - key-shifts, lookup - hit (shift-path)		428
								Hash add - key-shifts, Hash lookup miss				315
								Hash add - key-shifts, Hash lookup hit (ext_bkt)		264

				Disabled	Enabled		Hash add - no key-shifts, lookup - hit				531
								Hash add - no key-shifts, lookup - miss				522
								Hash add - key-shifts, lookup - hit (non-shift-path)		549
								Hash add - key-shifts, lookup - hit (shift-path)		616
								Hash add - key-shifts, Hash lookup miss				511
								Hash add - key-shifts, Hash lookup hit (ext_bkt)		424
_______		_______		_________	___		_________						_________________
1		2		Enabled		N/A		Hash add - no key-shifts, lookup - hit				312
								Hash add - no key-shifts, lookup - miss				303
								Hash add - key-shifts, lookup - hit(non-shift-path)		372
								Hash add - key-shifts, lookup - hit (shift-path)		426
								Hash add - key-shifts, Hash lookup miss				315
								Hash add - key-shifts, Hash lookup hit (ext_bkt)		233

				Disabled	Enabled		Hash add - no key-shifts, lookup - hit				505
								Hash add - no key-shifts, lookup - miss				512
								Hash add - key-shifts, lookup - hit (non-shift-path)		537
								Hash add - key-shifts, lookup - hit (shift-path)		599
								Hash add - key-shifts, Hash lookup miss				492
								Hash add - key-shifts, Hash lookup hit (ext_bkt)		405
_______		_______		_________	___		_________						_________________
1		4		Enabled		N/A		Hash add - no key-shifts, lookup - hit				304
								Hash add - no key-shifts, lookup - miss				291
								Hash add - key-shifts, lookup - hit(non-shift-path)		362
								Hash add - key-shifts, lookup - hit (shift-path)		418
								Hash add - key-shifts, Hash lookup miss				310
								Hash add - key-shifts, Hash lookup hit (ext_bkt)		228

				Disabled	Enabled		Hash add - no key-shifts, lookup - hit				486
								Hash add - no key-shifts, lookup - miss				493
								Hash add - key-shifts, lookup - hit (non-shift-path)		523
								Hash add - key-shifts, lookup - hit (shift-path)		585
								Hash add - key-shifts, Hash lookup miss				481
								Hash add - key-shifts, Hash lookup hit (ext_bkt)		400
_______		_______		_________	___		_________						_________________
2		1		Enabled		N/A		Multi-add-lookup						425

				Disabled	Enabled		Multi-add-lookup						611
_______		_______		_________	___		_________						_________________
2		2		Enabled		N/A		Multi-add-lookup						425

				Disabled	Enabled		Multi-add-lookup						595
_______		_______		_________	___		_________						_________________
2		4		Enabled		N/A		Multi-add-lookup						422

				Disabled	Enabled		Multi-add-lookup						591
_______		_______		_________	___		_________						_________________
4		1		Enabled		N/A		Multi-add-lookup						264

				Disabled	Enabled		Multi-add-lookup						424
_______		_______		_________	___		_________						_________________
4		2		Enabled		N/A		Multi-add-lookup						233

				Disabled	Enabled		Multi-add-lookup						405
_______		_______		_________	___		_________						_________________
4		4		Enabled		N/A		Multi-add-lookup						228

				Disabled	Enabled		Multi-add-lookup						400
_______		_______		_________	___		_________						_________________

					#######********** Bulk Lookup **********#######

_______		_______		_________	___		_________						_________________
Writers		Readers		Lock-free	HTM		Test-case						Cycles per lookup
_______		_______		_________	___		_________						_________________
1		1		Enabled		N/A		Hash add - no key-shifts, lookup - hit				131
								Hash add - no key-shifts, lookup - miss				84
								Hash add - key-shifts, lookup - hit(non-shift-path)		144
								Hash add - key-shifts, lookup - hit (shift-path)		157
								Hash add - key-shifts, Hash lookup miss				93
								Hash add - key-shifts, Hash lookup hit (ext_bkt)		238

				Disabled	Enabled		Hash add - no key-shifts, lookup - hit				174
								Hash add - no key-shifts, lookup - miss				116
								Hash add - key-shifts, lookup - hit (non-shift-path)		179
								Hash add - key-shifts, lookup - hit (shift-path)		195
								Hash add - key-shifts, Hash lookup miss				118
								Hash add - key-shifts, Hash lookup hit (ext_bkt)		240
_______		_______		_________	___		_________						_________________
1		2		Enabled		N/A		Hash add - no key-shifts, lookup - hit				129
								Hash add - no key-shifts, lookup - miss				84
								Hash add - key-shifts, lookup - hit(non-shift-path)		143
								Hash add - key-shifts, lookup - hit (shift-path)		156
								Hash add - key-shifts, Hash lookup miss				92
								Hash add - key-shifts, Hash lookup hit (ext_bkt)		223

				Disabled	Enabled		Hash add - no key-shifts, lookup - hit				182
								Hash add - no key-shifts, lookup - miss				117
								Hash add - key-shifts, lookup - hit (non-shift-path)		186
								Hash add - key-shifts, lookup - hit (shift-path)		206
								Hash add - key-shifts, Hash lookup miss				119
								Hash add - key-shifts, Hash lookup hit (ext_bkt)		265
_______		_______		_________	___		_________						_________________
1		4		Enabled		N/A		Hash add - no key-shifts, lookup - hit				130
								Hash add - no key-shifts, lookup - miss				83
								Hash add - key-shifts, lookup - hit(non-shift-path)		142
								Hash add - key-shifts, lookup - hit (shift-path)		156
								Hash add - key-shifts, Hash lookup miss				91
								Hash add - key-shifts, Hash lookup hit (ext_bkt)		220

				Disabled	Enabled		Hash add - no key-shifts, lookup - hit				191
								Hash add - no key-shifts, lookup - miss				119
								Hash add - key-shifts, lookup - hit (non-shift-path)		202
								Hash add - key-shifts, lookup - hit (shift-path)		231
								Hash add - key-shifts, Hash lookup miss				121
								Hash add - key-shifts, Hash lookup hit (ext_bkt)		320
_______		_______		_________	___		_________						_________________
2		1		Enabled		N/A		Multi-add-lookup						156

				Disabled	Enabled		Multi-add-lookup						195
_______		_______		_________	___		_________						_________________
2		2		Enabled		N/A		Multi-add-lookup						158

				Disabled	Enabled		Multi-add-lookup						209
_______		_______		_________	___		_________						_________________
2		4		Enabled		N/A		Multi-add-lookup						156

				Disabled	Enabled		Multi-add-lookup						230
_______		_______		_________	___		_________						_________________
4		1		Enabled		N/A		Multi-add-lookup						238

				Disabled	Enabled		Multi-add-lookup						240
_______		_______		_________	___		_________						_________________
4		2		Enabled		N/A		Multi-add-lookup						223

				Disabled	Enabled		Multi-add-lookup						265
_______		_______		_________	___		_________						_________________
4		4		Enabled		N/A		Multi-add-lookup						220

				Disabled	Enabled		Multi-add-lookup						320
_______		_______		_________	___		_________						_________________
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f7251c5b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f7251c01000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f725197f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f6e50400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f725191e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f6a50200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f725179f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f6650000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f725173e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f624fe00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f725049a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f5e4fc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f7250439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f5a4fa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6e5039f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f564f800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6e5033e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f524f600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

126/157 DPDK:perf-tests / trace_perf_autotest               OK                 1.10s
22:52:19 DPDK_TEST=trace_perf_autotest MALLOC_PERTURB_=29 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>trace_perf_autotest
Timer running at 3190.00MHz
            void: cycles=1.713775 ns=0.537234
             u64: cycles=1.671304 ns=0.523920
             int: cycles=1.741577 ns=0.545949
           float: cycles=1.683770 ns=0.527828
          double: cycles=1.676862 ns=0.525662
          string: cycles=1.814929 ns=0.568943
         void_fp: cycles=0.002164 ns=0.000678
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f240bec8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f240be6e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f240be0d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f200a600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f240bb7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f1c0a400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f240bb1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f180a200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f240b99f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f140a000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f240b93e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f1009e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f240a69a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f0c09c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f240a639000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f0809a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f200a59f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f0409800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

127/157 DPDK:perf-tests / ipsec_perf_autotest               OK                40.40s
22:52:20 DPDK_TEST=ipsec_perf_autotest MALLOC_PERTURB_=8 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>ipsec_perf_autotest

Metrics of libipsec prepare/process api:
replay window size = 0
replay esn is disabled
AEAD algo is AES_GCM
avg cycles for a pkt prepare in outbound is = 257.98
avg cycles for a pkt process in outbound is = 8.94
avg cycles for a pkt prepare in inbound is = 222.47
avg cycles for a pkt process in inbound is = 212.91

Metrics of libipsec prepare/process api:
replay window size = 0
replay esn is disabled
CIPHER/AUTH algo is AES_CBC/SHA1
avg cycles for a pkt prepare in outbound is = 214.37
avg cycles for a pkt process in outbound is = 8.57
avg cycles for a pkt prepare in inbound is = 182.53
avg cycles for a pkt process in inbound is = 203.37

Metrics of libipsec prepare/process api:
replay window size = 128
replay esn is enabled
AEAD algo is AES_GCM
avg cycles for a pkt prepare in outbound is = 249.06
avg cycles for a pkt process in outbound is = 8.71
avg cycles for a pkt prepare in inbound is = 219.67
avg cycles for a pkt process in inbound is = 228.67

Metrics of libipsec prepare/process api:
replay window size = 128
replay esn is enabled
CIPHER/AUTH algo is AES_CBC/SHA1
avg cycles for a pkt prepare in outbound is = 219.77
avg cycles for a pkt process in outbound is = 82.58
avg cycles for a pkt prepare in inbound is = 258.94
avg cycles for a pkt process in inbound is = 233.83
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f9af9958000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f9af96b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f9af9651000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f96f8000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f9af949f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f92f7e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f9af943e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f8ef7c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f9af819a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f8af7a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f9af8139000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f86f7800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f9af80d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f82f7600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f9af8077000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f7ef7400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f9af8016000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f7af7200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

128/157 DPDK:perf-tests / ring_pmd_perf_autotest            OK                 5.02s
22:53:00 MALLOC_PERTURB_=159 DPDK_TEST=ring_pmd_perf_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>ring_pmd_perf_autotest

### Testing const single element enq/deq ###
Ring single enq/dequeue  : 48
Ethdev single enq/dequeue: 111

### Testing empty dequeue ###
Ring empty dequeue  : 11.5
Ethdev empty dequeue: 42.1

### Testing using a single lcore ###
ring bulk enq/deq (size: 1) : 52.7
ethdev bulk enq/deq (size:1): 114.4

ring bulk enq/deq (size: 8) : 12.4
ethdev bulk enq/deq (size:8): 20.1

ring bulk enq/deq (size: 32) : 8.3
ethdev bulk enq/deq (size:32): 10.0

Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f8b715c9000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f8b7156f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f8b7150e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f876fc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f8b7127f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f836fa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f8b7121e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f7f6f800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f8b7109f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f7b6f600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f8b7103e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f776f400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f8b6fd9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f736f200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f8b6fd39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f6f6f000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f8b6fcd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f6b6ee00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
Device with port_id=0 already stopped
------------------------------------------------------------------------------

129/157 DPDK:driver-tests / cryptodev_aesni_mb_autotest     SKIP               0.39s   exit status 77
22:53:05 DPDK_TEST=cryptodev_aesni_mb_autotest MALLOC_PERTURB_=56 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_aesni_mb_autotest
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f0be57e4000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f0be578a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f0be5729000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f07e3e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f0be547f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f03e3c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f0be541e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7effe3a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f0be529f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7efbe3800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f0be523e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7ef7e3600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f0be3f9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7ef3e3400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f0be3f39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7eefe3200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f0be3ed8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7eebe3000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: crypto_aesni_mb PMD must be loaded.
------------------------------------------------------------------------------

130/157 DPDK:driver-tests / cryptodev_aesni_gcm_autotest    SKIP               0.39s   exit status 77
22:53:05 MALLOC_PERTURB_=206 DPDK_TEST=cryptodev_aesni_gcm_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_aesni_gcm_autotest
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f067c1c2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f067c168000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f067c107000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f027a800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f067be7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7efe7a600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f067be1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7efa7a400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f067bc9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7ef67a200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f067bc3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7ef27a000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f067a99a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7eee79e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f067a939000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7eea79c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f067a8d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ee679a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: crypto_aesni_gcm PMD must be loaded.
------------------------------------------------------------------------------

131/157 DPDK:driver-tests / cryptodev_dpaa_sec_autotest     SKIP               0.43s   exit status 77
22:53:06 DPDK_TEST=cryptodev_dpaa_sec_autotest MALLOC_PERTURB_=35 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_dpaa_sec_autotest
 + ------------------------------------------------------- +
 + Test Suite : Cryptodev Unit Test Suite
 + ------------------------------------------------------- +
 + Test Suite Summary : Cryptodev Unit Test Suite
 + ------------------------------------------------------- +
 + AES Chain : 0/57 passed, 57/57 skipped, 0/57 failed, 0/57 unsupported
 + AES Cipher Only : 0/49 passed, 49/49 skipped, 0/49 failed, 0/49 unsupported
 + AES Docsis : 0/24 passed, 24/24 skipped, 0/24 failed, 0/24 unsupported
 + 3DES Chain : 0/20 passed, 20/20 skipped, 0/20 failed, 0/20 unsupported
 + 3DES Cipher Only : 0/10 passed, 10/10 skipped, 0/10 failed, 0/10 unsupported
 + DES Cipher Only : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + DES Docsis : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + Auth Only : 0/36 passed, 36/36 skipped, 0/36 failed, 0/36 unsupported
 + Multi Session Unit Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + NULL Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + AES CCM Authenticated Test Suite : 0/18 passed, 18/18 skipped, 0/18 failed, 0/18 unsupported
 + AES GCM Authenticated Test Suite : 0/58 passed, 58/58 skipped, 0/58 failed, 0/58 unsupported
 + AES GMAC Authentication Test Suite : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + SNOW 3G Test Suite : 0/47 passed, 47/47 skipped, 0/47 failed, 0/47 unsupported
 + Chacha20-Poly1305 Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + ZUC Test Suite : 0/24 passed, 24/24 skipped, 0/24 failed, 0/24 unsupported
 + HMAC_MD5 Authentication Test Suite : 0/4 passed, 4/4 skipped, 0/4 failed, 0/4 unsupported
 + Kasumi Test Suite : 0/36 passed, 36/36 skipped, 0/36 failed, 0/36 unsupported
 + ESN Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + Negative AES GCM Test Suite : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + Negative AES GMAC Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + Mixed CIPHER + HASH algorithms Test Suite : 0/32 passed, 32/32 skipped, 0/32 failed, 0/32 unsupported
 + Negative HMAC SHA1 Unit Test Suite : 0/4 passed, 4/4 skipped, 0/4 failed, 0/4 unsupported
 + Crypto General Unit Test Suite : 0/6 passed, 6/6 skipped, 0/6 failed, 0/6 unsupported
 + PDCP Proto Unit Test Suite : 0/1 passed, 1/1 skipped, 0/1 failed, 0/1 unsupported
 + Docsis Proto Unit Test Suite : 0/1 passed, 1/1 skipped, 0/1 failed, 0/1 unsupported
 + ------------------------------------------------------- +
 + Sub Testsuites Total :     26
 + Sub Testsuites Skipped :   26
 + Sub Testsuites Passed :     0
 + Sub Testsuites Failed :     0
 + ------------------------------------------------------- +
 + Tests Total :       475
 + Tests Skipped :     475
 + Tests Executed :     0
 + Tests Unsupported:   0
 + Tests Passed :       0
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fd37cd0d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fd37ca8e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fd37ca2d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fcf7b400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fd37c89f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fcb7b200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fd37c83e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fc77b000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fd37b59a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fc37ae00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fd37b539000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fbf7ac00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fd37b4d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fbb7aa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fd37b477000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fb77a800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fd37b416000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fb37a600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: No crypto devices found?
------------------------------------------------------------------------------

132/157 DPDK:driver-tests / cryptodev_dpaa2_sec_autotest    SKIP               0.43s   exit status 77
22:53:06 MALLOC_PERTURB_=1 DPDK_TEST=cryptodev_dpaa2_sec_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_dpaa2_sec_autotest
 + ------------------------------------------------------- +
 + Test Suite : Cryptodev Unit Test Suite
 + ------------------------------------------------------- +
 + Test Suite Summary : Cryptodev Unit Test Suite
 + ------------------------------------------------------- +
 + AES Chain : 0/57 passed, 57/57 skipped, 0/57 failed, 0/57 unsupported
 + AES Cipher Only : 0/49 passed, 49/49 skipped, 0/49 failed, 0/49 unsupported
 + AES Docsis : 0/24 passed, 24/24 skipped, 0/24 failed, 0/24 unsupported
 + 3DES Chain : 0/20 passed, 20/20 skipped, 0/20 failed, 0/20 unsupported
 + 3DES Cipher Only : 0/10 passed, 10/10 skipped, 0/10 failed, 0/10 unsupported
 + DES Cipher Only : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + DES Docsis : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + Auth Only : 0/36 passed, 36/36 skipped, 0/36 failed, 0/36 unsupported
 + Multi Session Unit Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + NULL Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + AES CCM Authenticated Test Suite : 0/18 passed, 18/18 skipped, 0/18 failed, 0/18 unsupported
 + AES GCM Authenticated Test Suite : 0/58 passed, 58/58 skipped, 0/58 failed, 0/58 unsupported
 + AES GMAC Authentication Test Suite : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + SNOW 3G Test Suite : 0/47 passed, 47/47 skipped, 0/47 failed, 0/47 unsupported
 + Chacha20-Poly1305 Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + ZUC Test Suite : 0/24 passed, 24/24 skipped, 0/24 failed, 0/24 unsupported
 + HMAC_MD5 Authentication Test Suite : 0/4 passed, 4/4 skipped, 0/4 failed, 0/4 unsupported
 + Kasumi Test Suite : 0/36 passed, 36/36 skipped, 0/36 failed, 0/36 unsupported
 + ESN Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + Negative AES GCM Test Suite : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + Negative AES GMAC Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + Mixed CIPHER + HASH algorithms Test Suite : 0/32 passed, 32/32 skipped, 0/32 failed, 0/32 unsupported
 + Negative HMAC SHA1 Unit Test Suite : 0/4 passed, 4/4 skipped, 0/4 failed, 0/4 unsupported
 + Crypto General Unit Test Suite : 0/6 passed, 6/6 skipped, 0/6 failed, 0/6 unsupported
 + PDCP Proto Unit Test Suite : 0/1 passed, 1/1 skipped, 0/1 failed, 0/1 unsupported
 + Docsis Proto Unit Test Suite : 0/1 passed, 1/1 skipped, 0/1 failed, 0/1 unsupported
 + ------------------------------------------------------- +
 + Sub Testsuites Total :     26
 + Sub Testsuites Skipped :   26
 + Sub Testsuites Passed :     0
 + Sub Testsuites Failed :     0
 + ------------------------------------------------------- +
 + Tests Total :       475
 + Tests Skipped :     475
 + Tests Executed :     0
 + Tests Unsupported:   0
 + Tests Passed :       0
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f7b515dc000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f7b51582000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f7b51521000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f774fc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f7b5127f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f734fa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f7b5121e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f6f4f800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f7b5109f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f6b4f600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f7b5103e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f674f400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f7b4fd9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f634f200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f7b4fd39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f5f4f000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f7b4fcd8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f5b4ee00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: No crypto devices found?
------------------------------------------------------------------------------

133/157 DPDK:driver-tests / cryptodev_null_autotest         SKIP               0.42s   exit status 77
22:53:07 DPDK_TEST=cryptodev_null_autotest MALLOC_PERTURB_=181 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_null_autotest
 + ------------------------------------------------------- +
 + Test Suite : Cryptodev Unit Test Suite
 + ------------------------------------------------------- +
 + Test Suite Summary : Cryptodev Unit Test Suite
 + ------------------------------------------------------- +
 + AES Chain : 0/57 passed, 57/57 skipped, 0/57 failed, 0/57 unsupported
 + AES Cipher Only : 0/49 passed, 49/49 skipped, 0/49 failed, 0/49 unsupported
 + AES Docsis : 0/24 passed, 24/24 skipped, 0/24 failed, 0/24 unsupported
 + 3DES Chain : 0/20 passed, 20/20 skipped, 0/20 failed, 0/20 unsupported
 + 3DES Cipher Only : 0/10 passed, 10/10 skipped, 0/10 failed, 0/10 unsupported
 + DES Cipher Only : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + DES Docsis : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + Auth Only : 0/36 passed, 36/36 skipped, 0/36 failed, 0/36 unsupported
 + Multi Session Unit Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + NULL Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + AES CCM Authenticated Test Suite : 0/18 passed, 18/18 skipped, 0/18 failed, 0/18 unsupported
 + AES GCM Authenticated Test Suite : 0/58 passed, 58/58 skipped, 0/58 failed, 0/58 unsupported
 + AES GMAC Authentication Test Suite : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + SNOW 3G Test Suite : 0/47 passed, 47/47 skipped, 0/47 failed, 0/47 unsupported
 + Chacha20-Poly1305 Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + ZUC Test Suite : 0/24 passed, 24/24 skipped, 0/24 failed, 0/24 unsupported
 + HMAC_MD5 Authentication Test Suite : 0/4 passed, 4/4 skipped, 0/4 failed, 0/4 unsupported
 + Kasumi Test Suite : 0/36 passed, 36/36 skipped, 0/36 failed, 0/36 unsupported
 + ESN Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + Negative AES GCM Test Suite : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + Negative AES GMAC Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + Mixed CIPHER + HASH algorithms Test Suite : 0/32 passed, 32/32 skipped, 0/32 failed, 0/32 unsupported
 + Negative HMAC SHA1 Unit Test Suite : 0/4 passed, 4/4 skipped, 0/4 failed, 0/4 unsupported
 + Crypto General Unit Test Suite : 0/6 passed, 6/6 skipped, 0/6 failed, 0/6 unsupported
 + PDCP Proto Unit Test Suite : 0/1 passed, 1/1 skipped, 0/1 failed, 0/1 unsupported
 + Docsis Proto Unit Test Suite : 0/1 passed, 1/1 skipped, 0/1 failed, 0/1 unsupported
 + ------------------------------------------------------- +
 + Sub Testsuites Total :     26
 + Sub Testsuites Skipped :   26
 + Sub Testsuites Passed :     0
 + Sub Testsuites Failed :     0
 + ------------------------------------------------------- +
 + Tests Total :       475
 + Tests Skipped :     475
 + Tests Executed :     0
 + Tests Unsupported:   0
 + Tests Passed :       0
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f547a16b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f547a111000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f5479e7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f5078800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f5479e1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f4c78600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f5479c9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f4878400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f5479c3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f4478200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f547899a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f4078000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f5478939000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f3c77e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f54788d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f3877c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f5478877000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f3477a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: No crypto devices found?
------------------------------------------------------------------------------

134/157 DPDK:driver-tests / cryptodev_octeontx2_autotest    SKIP               0.43s   exit status 77
22:53:07 MALLOC_PERTURB_=214 DPDK_TEST=cryptodev_octeontx2_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_octeontx2_autotest
 + ------------------------------------------------------- +
 + Test Suite : Cryptodev Unit Test Suite
 + ------------------------------------------------------- +
 + Test Suite Summary : Cryptodev Unit Test Suite
 + ------------------------------------------------------- +
 + AES Chain : 0/57 passed, 57/57 skipped, 0/57 failed, 0/57 unsupported
 + AES Cipher Only : 0/49 passed, 49/49 skipped, 0/49 failed, 0/49 unsupported
 + AES Docsis : 0/24 passed, 24/24 skipped, 0/24 failed, 0/24 unsupported
 + 3DES Chain : 0/20 passed, 20/20 skipped, 0/20 failed, 0/20 unsupported
 + 3DES Cipher Only : 0/10 passed, 10/10 skipped, 0/10 failed, 0/10 unsupported
 + DES Cipher Only : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + DES Docsis : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + Auth Only : 0/36 passed, 36/36 skipped, 0/36 failed, 0/36 unsupported
 + Multi Session Unit Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + NULL Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + AES CCM Authenticated Test Suite : 0/18 passed, 18/18 skipped, 0/18 failed, 0/18 unsupported
 + AES GCM Authenticated Test Suite : 0/58 passed, 58/58 skipped, 0/58 failed, 0/58 unsupported
 + AES GMAC Authentication Test Suite : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + SNOW 3G Test Suite : 0/47 passed, 47/47 skipped, 0/47 failed, 0/47 unsupported
 + Chacha20-Poly1305 Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + ZUC Test Suite : 0/24 passed, 24/24 skipped, 0/24 failed, 0/24 unsupported
 + HMAC_MD5 Authentication Test Suite : 0/4 passed, 4/4 skipped, 0/4 failed, 0/4 unsupported
 + Kasumi Test Suite : 0/36 passed, 36/36 skipped, 0/36 failed, 0/36 unsupported
 + ESN Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + Negative AES GCM Test Suite : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + Negative AES GMAC Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + Mixed CIPHER + HASH algorithms Test Suite : 0/32 passed, 32/32 skipped, 0/32 failed, 0/32 unsupported
 + Negative HMAC SHA1 Unit Test Suite : 0/4 passed, 4/4 skipped, 0/4 failed, 0/4 unsupported
 + Crypto General Unit Test Suite : 0/6 passed, 6/6 skipped, 0/6 failed, 0/6 unsupported
 + PDCP Proto Unit Test Suite : 0/1 passed, 1/1 skipped, 0/1 failed, 0/1 unsupported
 + Docsis Proto Unit Test Suite : 0/1 passed, 1/1 skipped, 0/1 failed, 0/1 unsupported
 + ------------------------------------------------------- +
 + Sub Testsuites Total :     26
 + Sub Testsuites Skipped :   26
 + Sub Testsuites Passed :     0
 + Sub Testsuites Failed :     0
 + ------------------------------------------------------- +
 + Tests Total :       475
 + Tests Skipped :     475
 + Tests Executed :     0
 + Tests Unsupported:   0
 + Tests Passed :       0
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f6c86dd2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f6c86d78000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f6c86d17000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f6885400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f6c86a7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f6485200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f6c86a1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f6085000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f6c8689f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f5c84e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f6c8683e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f5884c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f6c8559a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f5484a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6c85539000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f5084800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6c854d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4c84600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: No crypto devices found?
------------------------------------------------------------------------------

135/157 DPDK:driver-tests / cryptodev_openssl_autotest      SKIP               0.44s   exit status 77
22:53:08 DPDK_TEST=cryptodev_openssl_autotest MALLOC_PERTURB_=27 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_openssl_autotest
 + ------------------------------------------------------- +
 + Test Suite : Cryptodev Unit Test Suite
 + ------------------------------------------------------- +
 + Test Suite Summary : Cryptodev Unit Test Suite
 + ------------------------------------------------------- +
 + AES Chain : 0/57 passed, 57/57 skipped, 0/57 failed, 0/57 unsupported
 + AES Cipher Only : 0/49 passed, 49/49 skipped, 0/49 failed, 0/49 unsupported
 + AES Docsis : 0/24 passed, 24/24 skipped, 0/24 failed, 0/24 unsupported
 + 3DES Chain : 0/20 passed, 20/20 skipped, 0/20 failed, 0/20 unsupported
 + 3DES Cipher Only : 0/10 passed, 10/10 skipped, 0/10 failed, 0/10 unsupported
 + DES Cipher Only : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + DES Docsis : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + Auth Only : 0/36 passed, 36/36 skipped, 0/36 failed, 0/36 unsupported
 + Multi Session Unit Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + NULL Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + AES CCM Authenticated Test Suite : 0/18 passed, 18/18 skipped, 0/18 failed, 0/18 unsupported
 + AES GCM Authenticated Test Suite : 0/58 passed, 58/58 skipped, 0/58 failed, 0/58 unsupported
 + AES GMAC Authentication Test Suite : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + SNOW 3G Test Suite : 0/47 passed, 47/47 skipped, 0/47 failed, 0/47 unsupported
 + Chacha20-Poly1305 Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + ZUC Test Suite : 0/24 passed, 24/24 skipped, 0/24 failed, 0/24 unsupported
 + HMAC_MD5 Authentication Test Suite : 0/4 passed, 4/4 skipped, 0/4 failed, 0/4 unsupported
 + Kasumi Test Suite : 0/36 passed, 36/36 skipped, 0/36 failed, 0/36 unsupported
 + ESN Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + Negative AES GCM Test Suite : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + Negative AES GMAC Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + Mixed CIPHER + HASH algorithms Test Suite : 0/32 passed, 32/32 skipped, 0/32 failed, 0/32 unsupported
 + Negative HMAC SHA1 Unit Test Suite : 0/4 passed, 4/4 skipped, 0/4 failed, 0/4 unsupported
 + Crypto General Unit Test Suite : 0/6 passed, 6/6 skipped, 0/6 failed, 0/6 unsupported
 + PDCP Proto Unit Test Suite : 0/1 passed, 1/1 skipped, 0/1 failed, 0/1 unsupported
 + Docsis Proto Unit Test Suite : 0/1 passed, 1/1 skipped, 0/1 failed, 0/1 unsupported
 + ------------------------------------------------------- +
 + Sub Testsuites Total :     26
 + Sub Testsuites Skipped :   26
 + Sub Testsuites Passed :     0
 + Sub Testsuites Failed :     0
 + ------------------------------------------------------- +
 + Tests Total :       475
 + Tests Skipped :     475
 + Tests Executed :     0
 + Tests Unsupported:   0
 + Tests Passed :       0
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fb392e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fb392b86000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fb392b25000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7faf91600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fb39299f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fab91400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fb39293e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fa791200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fb39169a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fa391000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fb391639000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f9f90e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7faf9159f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f9b90c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7faf9153e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f9790a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7faf914dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9390800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: No crypto devices found?
------------------------------------------------------------------------------

136/157 DPDK:driver-tests / cryptodev_openssl_asym_autotest FAIL               0.34s   exit status 1
22:53:08 MALLOC_PERTURB_=86 DPDK_TEST=cryptodev_openssl_asym_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_openssl_asym_autotest
 + ------------------------------------------------------- +
 + Test Suite : Crypto Device OPENSSL ASYM Unit Test Suite
 + ------------------------------------------------------- +

xform type: rsa
===================
operation supported - encrypt decrypt sign verify modlen: min 30 max 0 increment 1

xform type: modexp
===================
operation supported - modlen: min 0 max 0 increment 1

xform type: modinv
===================
operation supported - modlen: min 0 max 0 increment 1

xform type: dh
===================
operation supported - priv_key_generate pub_key_generate sharedsecret_compute modlen: min 0 max 0 increment 1

xform type: dsa
===================
operation supported - sign verify modlen: min 0 max 0 increment 1
 + TestCase [ 0] : test_capability succeeded
p:  at [0x55a525d8ffc0], len=128
00000000: A8 F9 CD 20 1E 5E 35 D8 92 F8 5F 80 E4 DB 25 99 | ... .^5..._...%.
00000010: A5 67 6A 3B 1D 4F 19 03 30 ED 32 56 B2 6D 0E 80 | .gj;.O..0.2V.m..
00000020: A0 E4 9A 8F FF AA AD 2A 24 F4 72 D2 57 32 41 D4 | .......*$.r.W2A.
00000030: D6 D6 C7 48 0C 80 B4 C6 7B B4 47 9C 15 AD A7 EA | ...H....{.G.....
00000040: 84 24 D2 50 2F A0 14 72 E7 60 24 17 13 DA B0 25 | .$.P/..r.`$....%
00000050: AE 1B 02 E1 70 3A 14 35 F6 2D DF 4E E4 C1 B6 64 | ....p:.5.-.N...d
00000060: 06 6E B2 2F 2E 3B F2 8B B7 0A 2A 76 E4 FD 5E BE | .n./.;....*v..^.
00000070: 2D 12 29 68 1B 5B 06 43 9A C9 C7 E9 D8 BD E2 83 | -.)h.[.C........
q:  at [0x55a525d8ff80], len=20
00000000: F8 5F 0F 83 AC 4D F7 EA 0C DF 8F 46 9B FE EA EA | ._...M.....F....
00000010: 14 15 64 95                                     | ..d.
g:  at [0x55a525d8fee0], len=128
00000000: 2B 31 52 FF 6C 62 F1 46 22 B8 F4 8E 59 F8 AF 46 | +1R.lb.F"...Y..F
00000010: 88 3B 38 E7 9B 8C 74 DE EA E9 DF 13 1F 8B 85 6E | .;8...t........n
00000020: 3A D6 C8 45 5D AB 87 CC 0D A8 AC 97 34 17 CE 4F | :..E].......4..O
00000030: 78 78 55 7D 6C DF 40 B3 5B 4A 0C A3 EB 31 0C 6A | xxU}l.@.[J...1.j
00000040: 95 D6 8C E2 84 AD 4E 25 EA 28 59 16 11 EE 08 B8 | ......N%.(Y.....
00000050: 44 4B D6 4B 25 F3 F7 C5 72 41 0D DF B3 9C C7 28 | DK.K%...rA.....(
00000060: B9 C9 36 F8 5F 41 91 29 86 99 29 CD B9 09 A6 A3 | ..6._A.)..).....
00000070: A9 9B BE 08 92 16 36 81 71 BD 0B A8 1D E4 FE 33 | ......6.q......3
priv_key:  at [0x55a525d90100], len=20
00000000: C5 3E AE 6D 45 32 31 64 C7 D0 7A F5 71 57 03 74 | .>.mE21d..z.qW.t
00000010: 4A 63 FC 3A                                     | Jc.:
r: at [0x7fff1e0a1760], len=20
00000000: C2 C5 5F 61 FB 92 85 FD 9A E2 5B 4B CF 2B EC A0 | .._a......[K.+..
00000010: EC F4 F0 8E                                     | ....
s: at [0x7fff1e0a1be0], len=20
00000000: 33 DD 1A 3F 16 CF AE 33 BA B5 DD 5F 7B C1 29 A4 | 3..?...3..._{.).
00000010: A7 24 CD CB                                     | .$..
 + TestCase [ 1] : test_dsa succeeded
p: at [0x55a525d90180], len=128
00000000: EF EE 8C 8B 3F 85 95 CD 4D 68 5D 4A 5D 1F 2A 2E | ....?...Mh]J].*.
00000010: DD CF EF 1B 3B E9 7B 0C 13 EE 76 D5 93 CA 8B C8 | ....;.{...v.....
00000020: 0B 97 00 EC 1F 34 A2 CE 83 8D 80 EA FE 11 ED 28 | .....4.........(
00000030: DD 32 22 77 96 4E C5 ED C8 7A 52 10 22 CC B2 4D | .2"w.N...zR."..M
00000040: D3 DA 03 F5 1E A8 79 23 8B E1 78 47 07 5B 26 BB | ......y#..xG.[&.
00000050: 53 46 0B 18 5C 07 4E B6 76 C9 A8 D5 30 A3 BE 8D | SF..\.N.v...0...
00000060: AE CD 34 68 62 5F B9 5C 34 90 F0 DA 47 86 36 04 | ..4hb_.\4...G.6.
00000070: 28 BC 7D AE 9D 4E 61 28 70 DB A6 55 04 46 27 E3 | (.}..Na(p..U.F'.
g: at [0x55a525d90140], len=1
00000000: 02                                              | .
priv_key: at [0x55a525d90220], len=128
00000000: 46 3C 7B 43 D1 B8 D4 7A 56 28 85 79 CC D8 90 03 | F<{C...zV(.y....
00000010: 0C 4B C6 D3 7F B3 19 84 8A C6 0D 24 5E AA 7E 7A | .K.........$^.~z
00000020: 73 88 A6 47 7C 42 78 63 11 12 D3 A0 C5 FE FD F2 | s..G|Bxc........
00000030: 9E 17 90 E5 6D CC 20 6F E8 82 28 BF 5C E6 D4 86 | ....m. o..(.\...
00000040: 5C 35 32 97 C2 86 1B C5 59 1C 0B 1B EC 60 3C 1D | \52.....Y....`<.
00000050: 8D 7F F0 C7 48 3A 51 09 F2 3E 9E 35 74 98 4D AD | ....H:Q..>.5t.M.
00000060: 39 A7 F2 D2 B4 32 D3 C8 E9 45 BE 56 E7 87 E0 A0 | 9....2...E.V....
00000070: 97 6B 5F 99 5E 41 59 33 95 64 0D E9 58 5B A6 38 | .k_.^AY3.d..X[.8
priv key: at [0x7fff1e0a1bc0], len=128
00000000: 60 03 AB 70 69 79 A1 C0 E1 CB 80 0C 24 0F 59 30 | `..piy......$.Y0
00000010: 17 F7 D5 6A A3 16 13 AB 5E D5 FB 7E 9B 4C 20 90 | ...j....^..~.L .
00000020: AF 44 D4 A8 F5 6B 0B 69 FC 72 E9 1E BC B6 1A BF | .D...k.i.r......
00000030: 0A A7 65 B3 DA 37 14 6C 1F FB 4F 88 BC 0A 06 52 | ..e..7.l..O....R
00000040: 86 37 CD 09 2B B4 7C 82 70 4C F5 01 FE 58 D6 90 | .7..+.|.pL...X..
00000050: 24 36 4F 1B B0 E0 9B CB E5 9E BC FF 49 AA 1F A8 | $6O.........I...
00000060: 88 CE EC B7 AF 46 F6 63 79 8D 6F 7D 4B 21 B4 B3 | .....F.cy.o}K!..
00000070: C1 D1 84 04 13 C1 99 2A 60 F2 71 78 E0 3D 2D A2 | .......*`.qx.=-.
pub key: at [0x7fff1e0a1740], len=128
00000000: 2B 89 AD 28 92 4D 8B 1F 71 32 DA 2C A6 32 B0 B7 | +..(.M..q2.,.2..
00000010: 5F 6F C1 89 3A B7 4C 98 48 64 A8 E6 B7 C9 79 48 | _o..:.L.Hd....yH
00000020: EE 64 12 43 4B 18 20 FE 5A F2 14 23 E4 2A A4 2B | .d.CK. .Z..#.*.+
00000030: 5C 35 46 80 3D 65 52 64 58 E0 5C 94 13 28 0F FD | \5F.=eRdX.\..(..
00000040: F7 E2 05 CD A4 23 D3 C7 98 A5 43 83 28 34 23 31 | .....#....C.(4#1
00000050: BB 27 B8 45 A8 0E 7B 5A 1E 89 66 47 BC EC 16 44 | .'.E..{Z..fG...D
00000060: A6 FB 3B BD A7 20 54 05 6E 7C 80 A2 65 90 45 7B | ..;.. T.n|..e.E{
00000070: F4 79 41 CE 49 CE BB CE D5 F5 FA AD 4B B7 90 5F | .yA.I.......K.._
pub key: at [0x7fff1e0a1bc0], len=128
00000000: 33 8F 27 E2 51 E0 E5 CD E3 42 8E 88 33 36 ED EA | 3.'.Q....B..36..
00000010: 59 1D 83 40 3B C4 33 8A 81 6B 2A 35 66 A6 C7 BD | Y..@;.3..k*5f...
00000020: 9F 12 6C FE 1B 73 02 45 B0 28 A5 B9 5A 36 DC 9B | ..l..s.E.(..Z6..
00000030: FC 4D 49 24 96 74 76 1D A3 7F 91 A9 4F B9 BA 6A | .MI$.tv.....O..j
00000040: BD 51 FD 34 89 CF D0 D6 10 F4 22 DB 4A 77 27 B1 | .Q.4......".Jw'.
00000050: 6B 0F 5D C8 0B 7F 84 04 E8 2B 69 51 E7 88 0C A2 | k.]......+iQ....
00000060: 08 61 C1 1C 1C 56 41 3F 05 9E C1 CB 00 B9 8E 2F | .a...VA?......./
00000070: 8D EE AA 2C BF 31 47 5E D9 10 5F FE 93 00 F9 75 | ...,.1G^.._....u
priv key: at [0x55a525d90220], len=128
00000000: 46 3C 7B 43 D1 B8 D4 7A 56 28 85 79 CC D8 90 03 | F<{C...zV(.y....
00000010: 0C 4B C6 D3 7F B3 19 84 8A C6 0D 24 5E AA 7E 7A | .K.........$^.~z
00000020: 73 88 A6 47 7C 42 78 63 11 12 D3 A0 C5 FE FD F2 | s..G|Bxc........
00000030: 9E 17 90 E5 6D CC 20 6F E8 82 28 BF 5C E6 D4 86 | ....m. o..(.\...
00000040: 5C 35 32 97 C2 86 1B C5 59 1C 0B 1B EC 60 3C 1D | \52.....Y....`<.
00000050: 8D 7F F0 C7 48 3A 51 09 F2 3E 9E 35 74 98 4D AD | ....H:Q..>.5t.M.
00000060: 39 A7 F2 D2 B4 32 D3 C8 E9 45 BE 56 E7 87 E0 A0 | 9....2...E.V....
00000070: 97 6B 5F 99 5E 41 59 33 95 64 0D E9 58 5B A6 38 | .k_.^AY3.d..X[.8
private key: at [0x7fff1e0a1bc0], len=128
00000000: 5C 6A 75 C7 3B 7E 6A FA DB 57 0A E0 71 D3 2B 77 | \ju.;~j..W..q.+w
00000010: B8 F2 6B 3C 9A 2B C5 BE AD 8E AC 06 D8 DE 33 63 | ..k<.+........3c
00000020: 2B 68 82 77 AE 6F DD 5D 3D 78 5F 39 B0 2A 1F 3A | +h.w.o.]=x_9.*.:
00000030: 6B BA E4 6E 87 5B 40 E1 BE 10 9E 32 36 25 35 2D | k..n.[@....26%5-
00000040: 82 E5 E0 94 30 AA 70 C7 C3 73 23 6F CB 20 BF 42 | ....0.p..s#o. .B
00000050: 11 90 8B 61 AA A2 AF E9 B5 DA 0C A8 63 5E 72 24 | ...a........c^r$
00000060: F5 59 08 61 5C DB B1 78 B4 7B EA 03 C4 8B 34 CC | .Y.a\..x.{....4.
00000070: 92 88 56 12 26 30 00 B3 37 84 BA C5 8C 85 B4 CA | ..V.&0..7.......
shared secret: at [0x7fff1e0a1bc0], len=128
00000000: 7E DE 0E 60 76 04 36 AC 59 55 08 C9 4A B3 B0 53 | ~..`v.6.YU..J..S
00000010: CB 8D 29 2E E6 E8 13 CB 34 0D E2 59 8C 89 7B 0B | ..).....4..Y..{.
00000020: 64 67 7D 8E 2F B3 AF 6B DD 3C 2B 49 75 C0 A0 12 | dg}./..k.<+Iu...
00000030: 16 D9 A4 EB 6F 97 63 B0 D5 07 4C 5F 1B E9 A7 79 | ....o.c...L_...y
00000040: 08 0F B0 BC 9E CE C2 EC 07 BE 5C C3 D5 1E 47 FB | ..........\...G.
00000050: 84 E9 08 D1 54 07 93 AD EC A1 83 BE 8F 23 C8 61 | ....T........#.a
00000060: D8 FE 6A 5C 3D 0F 4D 2D 92 B9 79 F0 47 88 7A 06 | ..j\=.M-..y.G.z.
00000070: 83 C1 3D D7 66 84 64 FD 89 23 AC 44 FA B4 3E 37 | ..=.f.d..#.D..>7
 + TestCase [ 2] : test_dh_keygenration succeeded
message at [0x55a525d8d900], len=20
00000000: F8 BA 1A 55 D0 2F 85 AE 96 7B B6 2F B6 CD A8 EB | ...U./...{./....
00000010: 7E 78 A0 50                                     | ~x.P
encrypted message at [0x55a525d8d900], len=20
00000000: F8 BA 1A 55 D0 2F 85 AE 96 7B B6 2F B6 CD A8 EB | ...U./...{./....
00000010: 7E 78 A0 50                                     | ~x.P
 + TestCase [ 3] : test_rsa_enc_dec succeeded
message at [0x55a525d8d900], len=20
00000000: F8 BA 1A 55 D0 2F 85 AE 96 7B B6 2F B6 CD A8 EB | ...U./...{./....
00000010: 7E 78 A0 50                                     | ~x.P
signed message at [0x7fff1e0a0f00], len=128
00000000: 2F 42 B3 B1 7F A8 66 00 C6 B4 7D 12 67 5F 94 F7 | /B....f...}.g_..
00000010: 25 D6 7E 14 E4 C2 63 B2 DC 1B 13 C0 DA DA 0D 32 | %.~...c........2
00000020: 9B F4 8A 62 90 E7 B3 F3 BB 5A AB 5F F8 AF F4 19 | ...b.....Z._....
00000030: 0D A5 66 25 95 69 57 43 87 44 B0 92 1A 39 A6 97 | ..f%.iWC.D...9..
00000040: 06 FD F3 20 72 FB EA EF CF D1 88 CA 23 26 A9 A9 | ... r.......#&..
00000050: 22 CD A0 10 F9 14 28 C7 0E 82 E1 CD C3 31 0F 75 | ".....(......1.u
00000060: 6D 69 CD 55 30 A3 26 CB F8 BC F3 C5 FA D7 7E 51 | mi.U0.&.......~Q
00000070: 81 C9 5C 9F 2A 40 40 83 B3 BA DB 94 2D 31 1C F8 | ..\.*@@.....-1..
 + TestCase [ 4] : test_rsa_sign_verify succeeded
message at [0x55a525d8d900], len=20
00000000: F8 BA 1A 55 D0 2F 85 AE 96 7B B6 2F B6 CD A8 EB | ...U./...{./....
00000010: 7E 78 A0 50                                     | ~x.P
encrypted message at [0x55a525d8d900], len=20
00000000: F8 BA 1A 55 D0 2F 85 AE 96 7B B6 2F B6 CD A8 EB | ...U./...{./....
00000010: 7E 78 A0 50                                     | ~x.P
 + TestCase [ 5] : test_rsa_enc_dec_crt succeeded
message at [0x55a525d8d900], len=20
00000000: F8 BA 1A 55 D0 2F 85 AE 96 7B B6 2F B6 CD A8 EB | ...U./...{./....
00000010: 7E 78 A0 50                                     | ~x.P
signed message at [0x7fff1e0a0f00], len=128
00000000: 2F 42 B3 B1 7F A8 66 00 C6 B4 7D 12 67 5F 94 F7 | /B....f...}.g_..
00000010: 25 D6 7E 14 E4 C2 63 B2 DC 1B 13 C0 DA DA 0D 32 | %.~...c........2
00000020: 9B F4 8A 62 90 E7 B3 F3 BB 5A AB 5F F8 AF F4 19 | ...b.....Z._....
00000030: 0D A5 66 25 95 69 57 43 87 44 B0 92 1A 39 A6 97 | ..f%.iWC.D...9..
00000040: 06 FD F3 20 72 FB EA EF CF D1 88 CA 23 26 A9 A9 | ... r.......#&..
00000050: 22 CD A0 10 F9 14 28 C7 0E 82 E1 CD C3 31 0F 75 | ".....(......1.u
00000060: 6D 69 CD 55 30 A3 26 CB F8 BC F3 C5 FA D7 7E 51 | mi.U0.&.......~Q
00000070: 81 C9 5C 9F 2A 40 40 83 B3 BA DB 94 2D 31 1C F8 | ..\.*@@.....-1..
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f7183c0c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f718398e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f718392d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f6d82400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f718379f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f6982200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f718373e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f6582000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f718249a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f6181e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f7182439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f5d81c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f6d8239f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f5981a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6d8233e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f5581800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6d822dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f5181600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
CRYPTODEV: Creating cryptodev crypto_openssl

CRYPTODEV: Initialisation parameters - name: crypto_openssl,socket id: 0, max queue pairs: 8
USER1: Test Public and Private key pair generation
USER1: Test Public Key Generation using pre-defined priv key
USER1: Test Private Key Generation only
USER1: Test shared secret compute
=================================================================
==3457==ERROR: AddressSanitizer: global-buffer-overflow on address 0x55a525cabb60 at pc 0x7f7187252480 bp 0x7fff1e0a0690 sp 0x7fff1e09fe38
READ of size 5696 at 0x55a525cabb60 thread T0
    #0 0x7f718725247f  (/lib/x86_64-linux-gnu/libasan.so.5+0x9b47f)
    #1 0x55a5233427cf in test_one_case (/dpdk/build/app/test/dpdk-test+0x13887cf)
    #2 0x55a5233431a7 in test_one_by_one (/dpdk/build/app/test/dpdk-test+0x13891a7)
    #3 0x55a52327a5a3 in unit_test_suite_runner (/dpdk/build/app/test/dpdk-test+0x12c05a3)
    #4 0x55a52326ec7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #5 0x55a523c315a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #6 0x55a523c2e7b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #7 0x55a523c37a78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #8 0x55a523c2e8a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #9 0x55a5224c7837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #10 0x7f7186a7f0b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)
    #11 0x55a52326eb6d in _start (/dpdk/build/app/test/dpdk-test+0x12b4b6d)

0x55a525cabb60 is located 32 bytes to the left of global variable 'hash_test_cases' defined in '../app/test/test_cryptodev_hash_test_vectors.h:429:43' (0x55a525cabb80) of size 864
0x55a525cabb60 is located 0 bytes to the right of global variable 'modex_test_case' defined in '../app/test/test_cryptodev_mod_test_vectors.h:51:17' (0x55a525ca7240) of size 18720
SUMMARY: AddressSanitizer: global-buffer-overflow (/lib/x86_64-linux-gnu/libasan.so.5+0x9b47f) 
Shadow bytes around the buggy address:
  0x0ab524b8d710: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ab524b8d720: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ab524b8d730: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ab524b8d740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ab524b8d750: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
=>0x0ab524b8d760: 00 00 00 00 00 00 00 00 00 00 00 00[f9]f9 f9 f9
  0x0ab524b8d770: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ab524b8d780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ab524b8d790: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ab524b8d7a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x0ab524b8d7b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07 
  Heap left redzone:       fa
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
  Shadow gap:              cc
==3457==ABORTING
------------------------------------------------------------------------------

137/157 DPDK:driver-tests / cryptodev_qat_autotest          SKIP               0.42s   exit status 77
22:53:08 MALLOC_PERTURB_=178 DPDK_TEST=cryptodev_qat_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_qat_autotest
 + ------------------------------------------------------- +
 + Test Suite : Cryptodev Unit Test Suite
 + ------------------------------------------------------- +
 + Test Suite Summary : Cryptodev Unit Test Suite
 + ------------------------------------------------------- +
 + AES Chain : 0/57 passed, 57/57 skipped, 0/57 failed, 0/57 unsupported
 + AES Cipher Only : 0/49 passed, 49/49 skipped, 0/49 failed, 0/49 unsupported
 + AES Docsis : 0/24 passed, 24/24 skipped, 0/24 failed, 0/24 unsupported
 + 3DES Chain : 0/20 passed, 20/20 skipped, 0/20 failed, 0/20 unsupported
 + 3DES Cipher Only : 0/10 passed, 10/10 skipped, 0/10 failed, 0/10 unsupported
 + DES Cipher Only : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + DES Docsis : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + Auth Only : 0/36 passed, 36/36 skipped, 0/36 failed, 0/36 unsupported
 + Multi Session Unit Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + NULL Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + AES CCM Authenticated Test Suite : 0/18 passed, 18/18 skipped, 0/18 failed, 0/18 unsupported
 + AES GCM Authenticated Test Suite : 0/58 passed, 58/58 skipped, 0/58 failed, 0/58 unsupported
 + AES GMAC Authentication Test Suite : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + SNOW 3G Test Suite : 0/47 passed, 47/47 skipped, 0/47 failed, 0/47 unsupported
 + Chacha20-Poly1305 Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + ZUC Test Suite : 0/24 passed, 24/24 skipped, 0/24 failed, 0/24 unsupported
 + HMAC_MD5 Authentication Test Suite : 0/4 passed, 4/4 skipped, 0/4 failed, 0/4 unsupported
 + Kasumi Test Suite : 0/36 passed, 36/36 skipped, 0/36 failed, 0/36 unsupported
 + ESN Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + Negative AES GCM Test Suite : 0/12 passed, 12/12 skipped, 0/12 failed, 0/12 unsupported
 + Negative AES GMAC Test Suite : 0/2 passed, 2/2 skipped, 0/2 failed, 0/2 unsupported
 + Mixed CIPHER + HASH algorithms Test Suite : 0/32 passed, 32/32 skipped, 0/32 failed, 0/32 unsupported
 + Negative HMAC SHA1 Unit Test Suite : 0/4 passed, 4/4 skipped, 0/4 failed, 0/4 unsupported
 + Crypto General Unit Test Suite : 0/6 passed, 6/6 skipped, 0/6 failed, 0/6 unsupported
 + PDCP Proto Unit Test Suite : 0/1 passed, 1/1 skipped, 0/1 failed, 0/1 unsupported
 + Docsis Proto Unit Test Suite : 0/1 passed, 1/1 skipped, 0/1 failed, 0/1 unsupported
 + ------------------------------------------------------- +
 + Sub Testsuites Total :     26
 + Sub Testsuites Skipped :   26
 + Sub Testsuites Passed :     0
 + Sub Testsuites Failed :     0
 + ------------------------------------------------------- +
 + Tests Total :       475
 + Tests Skipped :     475
 + Tests Executed :     0
 + Tests Unsupported:   0
 + Tests Passed :       0
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f4cfdf5f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f4cfdf05000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f4cfdc7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f48fc600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f4cfdc1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f44fc400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f4cfda9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f40fc200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f4cfda3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f3cfc000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f4cfc79a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f38fbe00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f4cfc739000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f34fbc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f4cfc6d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f30fba00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f4cfc677000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f2cfb800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: No crypto devices found?
------------------------------------------------------------------------------

138/157 DPDK:driver-tests / cryptodev_sw_armv8_autotest     SKIP               0.39s   exit status 77
22:53:09 MALLOC_PERTURB_=107 DPDK_TEST=cryptodev_sw_armv8_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_sw_armv8_autotest
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fbb74dda000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fbb74d80000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fbb74d1f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fb773400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fbb74a7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb373200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fbb74a1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7faf73000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fbb7489f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fab72e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fbb7483e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fa772c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fbb7359a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa372a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fbb73539000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f9f72800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fbb734d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9b72600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: crypto_armv8 PMD must be loaded.
------------------------------------------------------------------------------

139/157 DPDK:driver-tests / cryptodev_sw_kasumi_autotest    SKIP               0.39s   exit status 77
22:53:09 MALLOC_PERTURB_=176 DPDK_TEST=cryptodev_sw_kasumi_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_sw_kasumi_autotest
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f6d6d9e9000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f6d6d98f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f6d6d92e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f696c000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f6d6d67f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f656be00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f6d6d61e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f616bc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f6d6d49f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f5d6ba00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f6d6d43e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f596b800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f6d6c19a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f556b600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6d6c139000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f516b400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6d6c0d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4d6b200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: crypto_kasumi PMD must be loaded.
------------------------------------------------------------------------------

140/157 DPDK:driver-tests / cryptodev_sw_mvsam_autotest     SKIP               0.38s   exit status 77
22:53:10 MALLOC_PERTURB_=187 DPDK_TEST=cryptodev_sw_mvsam_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_sw_mvsam_autotest
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f0f23644000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f0f233b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f0f23351000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f0b21e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f0f2319f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f0721c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f0f2313e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f0321a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f0f21e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7eff21800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f0f21e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7efb21600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f0b21d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7ef721400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f0b21d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7ef321200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f0b21cdd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7eef21000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: crypto_mvsam PMD must be loaded.
------------------------------------------------------------------------------

141/157 DPDK:driver-tests / cryptodev_sw_snow3g_autotest    SKIP               0.39s   exit status 77
22:53:10 MALLOC_PERTURB_=242 DPDK_TEST=cryptodev_sw_snow3g_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_sw_snow3g_autotest
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7faa1a66e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7faa1a614000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7faa1a37f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fa618e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7faa1a31e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fa218c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7faa1a19f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f9e18a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7faa1a13e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f9a18800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7faa18e9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f9618600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7faa18e39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f9218400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fa618d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f8e18200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fa618d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f8a18000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: crypto_snow3g PMD must be loaded.
------------------------------------------------------------------------------

142/157 DPDK:driver-tests / cryptodev_sw_zuc_autotest       SKIP               0.38s   exit status 77
22:53:10 MALLOC_PERTURB_=131 DPDK_TEST=cryptodev_sw_zuc_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_sw_zuc_autotest
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f5e3d092000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f5e3d038000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f5e3cd7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f5a3b800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f5e3cd1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f563b600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f5e3cb9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f523b400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f5e3cb3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f4e3b200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f5e3b89a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f4a3b000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f5e3b839000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f463ae00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f5a3b79f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f423ac00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f5a3b73e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f3e3aa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: crypto_zuc PMD must be loaded.
------------------------------------------------------------------------------

143/157 DPDK:driver-tests / eventdev_selftest_octeontx      SKIP               0.39s   exit status 77
22:53:11 DPDK_TEST=eventdev_selftest_octeontx MALLOC_PERTURB_=88 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>eventdev_selftest_octeontx
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f8f51462000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f8f51408000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f8f5117f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f8b4fc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f8f5111e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f874fa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f8f50f9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f834f800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f8f50f3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f7f4f600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f8f4fc9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f7b4f400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f8f4fc39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f774f200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f8b4fb9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f734f000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f8b4fb3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f6f4ee00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
mbox_send() line 180: Invalid init_once=0 hdr=0x7ffc70aabe80 txsz=0 rxsz=0
octeontx_start_domain() line 266: Could not start domain. Err=-22. FuncErr=0

[event_octeontx] ssovf_vdev_probe() Failed to probe and validate ssovfs -19
------------------------------------------------------------------------------

144/157 DPDK:driver-tests / eventdev_selftest_sw            OK                11.64s
22:53:11 MALLOC_PERTURB_=43 DPDK_TEST=eventdev_selftest_sw /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>eventdev_selftest_sw
*** Running Single Directed Packet test...
*** Running Directed Forward Credit test...
*** Running Single Load Balanced Packet test...
*** Running Unordered Basic test...
*** Running Ordered Basic test...
*** Running Burst Packets test...
*** Running Load Balancing test...
*** Running Prioritized Directed test...
*** Running Prioritized Atomic test...
*** Running Prioritized Ordered test...
*** Running Prioritized Unordered test...
*** Running Invalid QID test...
*** Running Load Balancing History test...
*** Running Inflight Count test...
*** Running Abuse Inflights test...
*** Running XStats test...
*** Running XStats ID Reset test...
*** Running XStats Brute Force test...
*** Running XStats ID Abuse test...
*** Running QID Priority test...
*** Running Unlink-in-progress test...
*** Running Ordered Reconfigure test...
*** Running Port LB Single Reconfig test...
*** Running Port Reconfig Credits test...
*** Running Head-of-line-blocking test...
*** Running Stop Flush test...
*** Running Worker loopback test...
3038: 	Producer function started
2978: 	Worker function started
3154: 	Sched Rx = 6105216, Tx = 6104736
3154: 	Sched Rx = 12226656, Tx = 12226176
3154: 	Sched Rx = 18177376, Tx = 18176896
3154: 	Sched Rx = 24109312, Tx = 24108832
3154: 	Sched Rx = 30031136, Tx = 30030656
*** Running Worker loopback test (implicit release disabled)...
3038: 	Producer function started
2978: 	Worker function started
3154: 	Sched Rx = 5930560, Tx = 5930080
3154: 	Sched Rx = 11851808, Tx = 11851328
3154: 	Sched Rx = 17783328, Tx = 17782848
3154: 	Sched Rx = 23725440, Tx = 23724960
3154: 	Sched Rx = 29653952, Tx = 29653472
SW Eventdev Selftest Successful.
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f07e3a41000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f07e37b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f07e3751000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f03e2200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f07e359f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7effe2000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f07e353e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7efbe1e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f07e229a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7ef7e1c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f07e2239000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7ef3e1a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f03e219f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7eefe1800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f03e213e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7eebe1600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f03e20dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ee7e1400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
------------------------------------------------------------------------------

145/157 DPDK:driver-tests / rawdev_autotest                 FAIL               0.33s   exit status 1
22:53:23 DPDK_TEST=rawdev_autotest MALLOC_PERTURB_=4 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>rawdev_autotest
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fafba215000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fafb9f94000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fafb9f33000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fabb8a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fafb9d9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fa7b8800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fafb9d3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fa3b8600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fafb8a9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f9fb8400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fafb8a39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f9bb8200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fabb899f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f97b8000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fabb893e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f93b7e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fabb88dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f8fb7c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
skeleton_rawdev_probe(): Init rawdev_skeleton on NUMA node 0
rte_rawdev_socket_id(): Invalid dev_id=64
=================================================================
==3654==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7ffd26b97b60 at pc 0x560539299ccc bp 0x7ffd26b97ae0 sp 0x7ffd26b97ad0
READ of size 4 at 0x7ffd26b97b60 thread T0
    #0 0x560539299ccb in skeleton_rawdev_enqueue_bufs (/dpdk/build/app/test/dpdk-test+0x31acccb)
    #1 0x56053929a78f in test_rawdev_enqdeq (/dpdk/build/app/test/dpdk-test+0x31ad78f)
    #2 0x560536a95d79 in test_rawdev_skeldev.cold (/dpdk/build/app/test/dpdk-test+0x9a8d79)
    #3 0x5605376a3fff in test_rawdev_selftests (/dpdk/build/app/test/dpdk-test+0x15b6fff)
    #4 0x5605373a1c7d in cmd_autotest_parsed (/dpdk/build/app/test/dpdk-test+0x12b4c7d)
    #5 0x560537d645a6 in cmdline_parse (/dpdk/build/app/test/dpdk-test+0x1c775a6)
    #6 0x560537d617b3 in cmdline_valid_buffer (/dpdk/build/app/test/dpdk-test+0x1c747b3)
    #7 0x560537d6aa78 in rdline_char_in (/dpdk/build/app/test/dpdk-test+0x1c7da78)
    #8 0x560537d618a3 in cmdline_in (/dpdk/build/app/test/dpdk-test+0x1c748a3)
    #9 0x5605365fa837 in main.cold (/dpdk/build/app/test/dpdk-test+0x50d837)
    #10 0x7fafbd0880b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x270b2)
    #11 0x5605373a1b6d in _start (/dpdk/build/app/test/dpdk-test+0x12b4b6d)

Address 0x7ffd26b97b60 is located in stack of thread T0 at offset 48 in frame
    #0 0x56053929a62f in test_rawdev_enqdeq (/dpdk/build/app/test/dpdk-test+0x31ad62f)

  This frame has 3 object(s):
    [48, 50) 'queue_id' (line 372) <== Memory access at offset 48 partially overflows this variable
    [64, 72) 'deq_buffers' (line 374)
    [96, 104) 'buffers' (line 373)
HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork
      (longjmp and C++ exceptions *are* supported)
SUMMARY: AddressSanitizer: stack-buffer-overflow (/dpdk/build/app/test/dpdk-test+0x31acccb) in skeleton_rawdev_enqueue_bufs
Shadow bytes around the buggy address:
  0x100024d6af10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x100024d6af20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x100024d6af30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x100024d6af40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x100024d6af50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
=>0x100024d6af60: 00 00 00 00 00 00 f1 f1 f1 f1 f1 f1[02]f2 00 f2
  0x100024d6af70: f2 f2 00 f3 f3 f3 00 00 00 00 00 00 00 00 00 00
  0x100024d6af80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x100024d6af90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x100024d6afa0: 00 00 00 00 f1 f1 f1 f1 f8 f2 f2 f2 f8 f8 f2 f2
  0x100024d6afb0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07 
  Heap left redzone:       fa
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
  Shadow gap:              cc
==3654==ABORTING
------------------------------------------------------------------------------

146/157 DPDK:driver-tests / link_bonding_autotest           OK                 4.92s
22:53:23 DPDK_TEST=link_bonding_autotest MALLOC_PERTURB_=131 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>link_bonding_autotest
 + ------------------------------------------------------- +
 + Test Suite : Link Bonding Unit Test Suite
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_create_bonded_device succeeded
 + TestCase [ 1] : test_create_bonded_device_with_invalid_params succeeded
 + TestCase [ 2] : test_add_slave_to_bonded_device succeeded
 + TestCase [ 3] : test_add_slave_to_invalid_bonded_device succeeded
 + TestCase [ 4] : test_remove_slave_from_bonded_device succeeded
 + TestCase [ 5] : test_remove_slave_from_invalid_bonded_device succeeded
 + TestCase [ 6] : test_get_slaves_from_bonded_device succeeded
 + TestCase [ 7] : test_add_already_bonded_slave_to_bonded_device succeeded
 + TestCase [ 8] : test_add_remove_multiple_slaves_to_from_bonded_device succeeded
 + TestCase [ 9] : test_start_bonded_device succeeded
 + TestCase [10] : test_stop_bonded_device succeeded
 + TestCase [11] : test_set_bonding_mode succeeded
 + TestCase [12] : test_set_primary_slave succeeded
 + TestCase [13] : test_set_explicit_bonded_mac succeeded
 + TestCase [14] : test_set_bonded_port_initialization_mac_assignment succeeded
 + TestCase [15] : test_status_interrupt succeeded
 + TestCase [16] : test_adding_slave_after_bonded_device_started succeeded
 + TestCase [17] : test_roundrobin_tx_burst succeeded
 + TestCase [18] : test_roundrobin_tx_burst_slave_tx_fail succeeded
 + TestCase [19] : test_roundrobin_rx_burst_on_single_slave succeeded
 + TestCase [20] : test_roundrobin_rx_burst_on_multiple_slaves succeeded
 + TestCase [21] : test_roundrobin_verify_promiscuous_enable_disable succeeded
 + TestCase [22] : test_roundrobin_verify_mac_assignment succeeded
 + TestCase [23] : test_roundrobin_verify_slave_link_status_change_behaviour succeeded
 + TestCase [24] : test_roundrobin_verfiy_polling_slave_link_status_change succeeded
 + TestCase [25] : test_activebackup_tx_burst succeeded
 + TestCase [26] : test_activebackup_rx_burst succeeded
 + TestCase [27] : test_activebackup_verify_promiscuous_enable_disable succeeded
 + TestCase [28] : test_activebackup_verify_mac_assignment succeeded
 + TestCase [29] : test_activebackup_verify_slave_link_status_change_failover succeeded
 + TestCase [30] : test_balance_xmit_policy_configuration succeeded
 + TestCase [31] : test_balance_l2_tx_burst succeeded
 + TestCase [32] : test_balance_l23_tx_burst_ipv4_toggle_ip_addr succeeded
 + TestCase [33] : test_balance_l23_tx_burst_vlan_ipv4_toggle_ip_addr succeeded
 + TestCase [34] : test_balance_l23_tx_burst_ipv6_toggle_ip_addr succeeded
 + TestCase [35] : test_balance_l23_tx_burst_vlan_ipv6_toggle_ip_addr succeeded
 + TestCase [36] : test_balance_l23_tx_burst_toggle_mac_addr succeeded
 + TestCase [37] : test_balance_l34_tx_burst_ipv4_toggle_ip_addr succeeded
 + TestCase [38] : test_balance_l34_tx_burst_ipv4_toggle_udp_port succeeded
 + TestCase [39] : test_balance_l34_tx_burst_vlan_ipv4_toggle_ip_addr succeeded
 + TestCase [40] : test_balance_l34_tx_burst_ipv6_toggle_ip_addr succeeded
 + TestCase [41] : test_balance_l34_tx_burst_vlan_ipv6_toggle_ip_addr succeeded
 + TestCase [42] : test_balance_l34_tx_burst_ipv6_toggle_udp_port succeeded
 + TestCase [43] : test_balance_tx_burst_slave_tx_fail succeeded
 + TestCase [44] : test_balance_rx_burst succeeded
 + TestCase [45] : test_balance_verify_promiscuous_enable_disable succeeded
 + TestCase [46] : test_balance_verify_mac_assignment succeeded
 + TestCase [47] : test_balance_verify_slave_link_status_change_behaviour succeeded
 + TestCase [48] : test_tlb_tx_burst succeeded
 + TestCase [49] : test_tlb_rx_burst succeeded
 + TestCase [50] : test_tlb_verify_mac_assignment succeeded
 + TestCase [51] : test_tlb_verify_promiscuous_enable_disable succeeded
 + TestCase [52] : test_tlb_verify_slave_link_status_change_failover succeeded
 + TestCase [53] : test_alb_change_mac_in_reply_sent succeeded
 + TestCase [54] : test_alb_reply_from_client succeeded
 + TestCase [55] : test_alb_receive_vlan_reply succeeded
 + TestCase [56] : test_alb_ipv4_tx succeeded
 + TestCase [57] : test_broadcast_tx_burst succeeded
 + TestCase [58] : test_broadcast_tx_burst_slave_tx_fail succeeded
 + TestCase [59] : test_broadcast_rx_burst succeeded
 + TestCase [60] : test_broadcast_verify_promiscuous_enable_disable succeeded
 + TestCase [61] : test_broadcast_verify_mac_assignment succeeded
 + TestCase [62] : test_broadcast_verify_slave_link_status_change_behaviour succeeded
 + TestCase [63] : test_reconfigure_bonded_device succeeded
 + TestCase [64] : test_close_bonded_device succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : Link Bonding Unit Test Suite
 + ------------------------------------------------------- +
 + Tests Total :       65
 + Tests Skipped :      0
 + Tests Executed :    65
 + Tests Unsupported:   0
 + Tests Passed :      65
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f6557760000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f6557706000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f655747f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f6155e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f655741e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f5d55c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f655729f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f5955a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f655723e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f5555800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f6555f9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f5155600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f6555f39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f4d55400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f6555ed8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f4955200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f6555e77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4555000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
rte_eth_bond_create(159) - Invalid name specified
Invalid port_id=11
Port 0 must be stopped to allow reset
Invalid port_id=11
Invalid port_id=65535
Invalid port_id=65535
Port 0 must be stopped to allow reset
__eth_bond_slave_add_lock_free(470) - Slave device is already a slave of a bonded device
Port 0 must be stopped to allow reset
Port 5 must be stopped to allow reset
Port 4 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Invalid port_id=65535
Invalid port_id=65535
Invalid port_id=65535
Invalid port_id=65535
Invalid port_id=65535
Invalid port_id=65535
Invalid port_id=65535
Invalid port_id=65535
Device with port_id=6 already stopped
Invalid port_id=65535
Device with port_id=6 already stopped
Device with port_id=0 already stopped
Invalid port_id=16
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Invalid port_id=65535
mac_address_set(1433) - NULL pointer MAC specified
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Device with port_id=6 already stopped
Device with port_id=9 already stopped
Device with port_id=10 already stopped
Device with port_id=11 already stopped
Port 9 must be stopped to allow reset
Port 10 must be stopped to allow reset
Port 11 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 4 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Device with port_id=2 already stopped
Device with port_id=3 already stopped
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Device with port_id=12 already stopped
Device with port_id=13 already stopped
Port 12 must be stopped to allow reset
Port 13 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Invalid port_id=65535
Invalid port_id=65535
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 0 must be stopped to allow reset
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Device with port_id=2 already stopped
Device with port_id=3 already stopped
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 0 must be stopped to allow reset
Invalid port_id=6
EAL: Test assert remove_slaves_and_stop_bonded_device line 652 failed: Failed to stop bonded port 6
AddressSanitizer:DEADLYSIGNAL
=================================================================
==3675==ERROR: AddressSanitizer: SEGV on unknown address 0x7f6156031d1a (pc 0x56315c66d8f5 bp 0x7f65570fc170 sp 0x7f65570fc100 T1)
==3675==The signal is caused by a READ memory access.
------------------------------------------------------------------------------

147/157 DPDK:driver-tests / link_bonding_rssconf_autotest   OK                 0.43s
22:53:28 MALLOC_PERTURB_=69 DPDK_TEST=link_bonding_rssconf_autotest /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>link_bonding_rssconf_autotest
 + ------------------------------------------------------- +
 + Test Suite : RSS Dynamic Configuration for Bonding Unit Test Suite
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_setup succeeded
 + TestCase [ 1] : test_rss succeeded
 + TestCase [ 2] : test_rss_lazy succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : RSS Dynamic Configuration for Bonding Unit Test Suite
 + ------------------------------------------------------- +
 + Tests Total :        3
 + Tests Skipped :      0
 + Tests Executed :     3
 + Tests Unsupported:   0
 + Tests Passed :       3
 + Tests Failed :       0
 + ------------------------------------------------------- +
Test OK
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fadfe851000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fadfe5b2000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fadfe551000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fa9fd000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fadfe39f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fa5fce00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fadfe33e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fa1fcc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fadfd09a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f9dfca00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fadfd039000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f99fc800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fa9fcf9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f95fc600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fa9fcf3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f91fc400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fa9fcedd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f8dfc200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Device with port_id=2 already stopped
Device with port_id=3 already stopped
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
bond_ethdev_allmulticast_disable(2767) - Failed to disable allmulti mode for port 0: Operation not supported
bond_ethdev_allmulticast_disable(2767) - Failed to disable allmulti mode for port 1: Operation not supported
bond_ethdev_allmulticast_disable(2767) - Failed to disable allmulti mode for port 2: Operation not supported
bond_ethdev_allmulticast_disable(2767) - Failed to disable allmulti mode for port 3: Operation not supported
Port 0 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 3 must be stopped to allow reset
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
bond_ethdev_allmulticast_disable(2767) - Failed to disable allmulti mode for port 0: Operation not supported
bond_ethdev_allmulticast_disable(2767) - Failed to disable allmulti mode for port 1: Operation not supported
bond_ethdev_allmulticast_disable(2767) - Failed to disable allmulti mode for port 2: Operation not supported
bond_ethdev_allmulticast_disable(2767) - Failed to disable allmulti mode for port 3: Operation not supported
Port 0 must be stopped to allow reset
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 3 must be stopped to allow reset
Device with port_id=4 already stopped
AddressSanitizer:DEADLYSIGNAL
=================================================================
==3697==ERROR: AddressSanitizer: SEGV on unknown address 0x7fa9fd20ea5a (pc 0x555ccea7d8f5 bp 0x7fadfe1fc170 sp 0x7fadfe1fc100 T1)
==3697==The signal is caused by a READ memory access.
------------------------------------------------------------------------------

148/157 DPDK:driver-tests / link_bonding_mode4_autotest     FAIL              15.38s   (exit status 255 or signal 127 SIGinvalid)
22:53:28 DPDK_TEST=link_bonding_mode4_autotest MALLOC_PERTURB_=58 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>link_bonding_mode4_autotest
 + ------------------------------------------------------- +
 + Test Suite : Link Bonding mode 4 Unit Test Suite
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_mode4_agg_mode_selection succeeded
 + TestCase [ 1] : test_mode4_lacp succeeded
 + TestCase [ 2] : test_mode4_rx failed
 + TestCase [ 3] : test_mode4_tx_burst failed
 + TestCase [ 4] : test_mode4_marker failed
 + TestCase [ 5] : test_mode4_expired failed
 + TestCase [ 6] : test_mode4_ext_ctrl failed
 + TestCase [ 7] : test_mode4_ext_lacp failed
 + ------------------------------------------------------- +
 + Test Suite Summary : Link Bonding mode 4 Unit Test Suite
 + ------------------------------------------------------- +
 + Tests Total :        8
 + Tests Skipped :      0
 + Tests Executed :     8
 + Tests Unsupported:   0
 + Tests Passed :       2
 + Tests Failed :       6
 + ------------------------------------------------------- +
Test Failed
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f3db5076000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f3db501c000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f3db4d7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f39b3800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f3db4d1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f35b3600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f3db4b9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f31b3400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f3db4b3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f2db3200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f3db389a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f29b3000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f3db3839000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f25b2e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f39b379f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f21b2c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f39b373e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f1db2a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
bond_ethdev_mode_set(1591) - Using mode 4, it is necessary to do TX burst and RX burst at least every 100ms.
Device with port_id=0 already started
Device with port_id=1 already started
Device with port_id=2 already started
Device with port_id=3 already started
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
bond_ethdev_allmulticast_disable(2767) - Failed to disable allmulti mode for port 0: Operation not supported
bond_ethdev_allmulticast_disable(2767) - Failed to disable allmulti mode for port 1: Operation not supported
bond_ethdev_allmulticast_disable(2767) - Failed to disable allmulti mode for port 2: Operation not supported
bond_ethdev_allmulticast_disable(2767) - Failed to disable allmulti mode for port 3: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 0: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 1: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 2: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 3: Operation not supported
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Device with port_id=2 already stopped
Device with port_id=3 already stopped
Port 0: Cannot remove default MAC address
Port 1: Cannot remove default MAC address
Port 2: Cannot remove default MAC address
Port 3: Cannot remove default MAC address
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 0: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 1: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 2: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 3: Operation not supported
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Device with port_id=2 already stopped
Device with port_id=3 already stopped
Port 0: Cannot remove default MAC address
Port 1: Cannot remove default MAC address
Port 2: Cannot remove default MAC address
Port 3: Cannot remove default MAC address
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 0: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 1: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 2: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 3: Operation not supported
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Device with port_id=2 already stopped
Device with port_id=3 already stopped
Port 0: Cannot remove default MAC address
Port 1: Cannot remove default MAC address
Port 2: Cannot remove default MAC address
Port 3: Cannot remove default MAC address
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 0: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 1: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 2: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 3: Operation not supported
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Device with port_id=2 already stopped
Device with port_id=3 already stopped
Port 0: Cannot remove default MAC address
Port 1: Cannot remove default MAC address
Port 2: Cannot remove default MAC address
Port 3: Cannot remove default MAC address
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
EAL: Test assert test_mode4_rx line 895 failed: Failed to disable promiscuous mode for port 4: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 0: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 1: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 2: Operation not supported
bond_mode_8023ad_unregister_lacp_mac(999) - failed to disable allmulti mode for port 3: Operation not supported
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Device with port_id=2 already stopped
Device with port_id=3 already stopped
Port 0: Cannot remove default MAC address
Port 1: Cannot remove default MAC address
Port 2: Cannot remove default MAC address
Port 3: Cannot remove default MAC address
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
EAL: Test assert initialize_bonded_device_with_slaves line 331 failed: Failed disable promiscuous mode for port 4: Operation not supported
EAL: Test assert test_mode4_tx_burst line 1015 failed: Failed to initialize bonded device
Device with port_id=4 already stopped
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 0: Cannot remove default MAC address
Port 1: Cannot remove default MAC address
Port 2: Cannot remove default MAC address
Port 3: Cannot remove default MAC address
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
EAL: Test assert initialize_bonded_device_with_slaves line 331 failed: Failed disable promiscuous mode for port 4: Operation not supported
EAL: Test assert test_mode4_marker line 1203 failed: Failed to initialize bonded device
Device with port_id=4 already stopped
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 0: Cannot remove default MAC address
Port 1: Cannot remove default MAC address
Port 2: Cannot remove default MAC address
Port 3: Cannot remove default MAC address
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
EAL: Test assert initialize_bonded_device_with_slaves line 331 failed: Failed disable promiscuous mode for port 4: Operation not supported
EAL: Test assert bond_handshake line 645 failed: Bond handshake failed

EAL: Test assert test_mode4_expired line 1310 failed: Initial handshake failed
Device with port_id=4 already stopped
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 0: Cannot remove default MAC address
Port 1: Cannot remove default MAC address
Port 2: Cannot remove default MAC address
Port 3: Cannot remove default MAC address
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
EAL: Test assert initialize_bonded_device_with_slaves line 331 failed: Failed disable promiscuous mode for port 4: Operation not supported
EAL: Test assert test_mode4_ext_ctrl line 1409 failed: Failed to initialize bonded device
Device with port_id=4 already stopped
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 3 must be stopped to allow reset
Port 0: Cannot remove default MAC address
Port 1: Cannot remove default MAC address
Port 2: Cannot remove default MAC address
Port 3: Cannot remove default MAC address
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 0: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 1: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 2: Operation not supported
bond_ethdev_promiscuous_disable(2654) - Failed to disable promiscuous mode for port 3: Operation not supported
EAL: Test assert initialize_bonded_device_with_slaves line 331 failed: Failed disable promiscuous mode for port 4: Operation not supported
EAL: Test assert test_mode4_ext_lacp line 1463 failed: Failed to initialize bonded device
Device with port_id=4 already stopped
Port 0 must be stopped to allow reset
Port 1 must be stopped to allow reset
Port 2 must be stopped to allow reset
Port 3 must be stopped to allow reset
Device with port_id=4 already stopped
Device with port_id=0 already stopped
Device with port_id=1 already stopped
Device with port_id=2 already stopped
Device with port_id=3 already stopped
------------------------------------------------------------------------------

149/157 DPDK:driver-tests / cryptodev_scheduler_autotest    SKIP               0.39s   exit status 77
22:53:44 DPDK_TEST=cryptodev_scheduler_autotest MALLOC_PERTURB_=152 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>cryptodev_scheduler_autotest
Test Skipped
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fbeb3e0d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fbeb3b8e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fbeb3b2d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fbab2600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fbeb399f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fb6b2400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fbeb393e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fb2b2200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fbeb269a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7faeb2000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fbeb2639000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7faab1e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fbab259f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fa6b1c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fbab253e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fa2b1a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fbab24dd000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9eb1800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
USER1: AESNI MB PMD must be loaded.
------------------------------------------------------------------------------

150/157 DPDK:debug-tests / dump_struct_sizes                OK                 0.39s
22:53:44 DPDK_TEST=dump_struct_sizes MALLOC_PERTURB_=112 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f4b3ef01000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f4b3ec76000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f4b3ec15000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f473d600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f4b3ea9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f433d400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f4b3ea3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f3f3d200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f4b3d79a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f3b3d000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f4b3d739000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f373ce00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f4b3d6d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f333cc00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f4b3d677000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f2f3ca00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f4b3d616000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f2b3c800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
APP: Invalid DPDK_TEST value 'dump_struct_sizes'
------------------------------------------------------------------------------

151/157 DPDK:debug-tests / dump_mempool                     OK                 0.38s
22:53:45 MALLOC_PERTURB_=249 DPDK_TEST=dump_mempool /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fb328388000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fb32832e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fb32807f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7faf26a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fb32801e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fab26800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fb327e9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fa726600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fb327e3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fa326400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fb326b9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f9f26200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fb326b39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f9b26000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fb326ad8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f9725e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fb326a77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f9325c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
APP: Invalid DPDK_TEST value 'dump_mempool'
------------------------------------------------------------------------------

152/157 DPDK:debug-tests / dump_malloc_stats                OK                 0.39s
22:53:45 MALLOC_PERTURB_=62 DPDK_TEST=dump_malloc_stats /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f603c295000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f603c23b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f603bf7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f5c3aa00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f603bf1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f583a800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f603bd9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f543a600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f603bd3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f503a400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f603aa9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7f4c3a200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f603aa39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7f483a000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f5c3a99f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7f4439e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f5c3a93e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7f4039c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
APP: Invalid DPDK_TEST value 'dump_malloc_stats'
------------------------------------------------------------------------------

153/157 DPDK:debug-tests / dump_devargs                     OK                 0.39s
22:53:45 DPDK_TEST=dump_devargs MALLOC_PERTURB_=205 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7fe9904e9000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7fe99048f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7fe99042e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7fe58ec00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7fe99017f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7fe18ea00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7fe99011e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fdd8e800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7fe98ff9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fd98e600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7fe98ff3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fd58e400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7fe98ec9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fd18e200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7fe98ec39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fcd8e000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7fe58eb9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fc98de00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
APP: Invalid DPDK_TEST value 'dump_devargs'
------------------------------------------------------------------------------

154/157 DPDK:debug-tests / dump_log_types                   OK                 0.39s
22:53:46 MALLOC_PERTURB_=14 DPDK_TEST=dump_log_types /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f01abca7000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f01abc4d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f01ab97f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7efdaa400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f01ab91e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7ef9aa200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f01ab79f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7ef5aa000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f01ab73e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7ef1a9e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f01aa49a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7eeda9c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f01aa439000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7ee9a9a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7efdaa39f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7ee5a9800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7efdaa33e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ee1a9600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
APP: Invalid DPDK_TEST value 'dump_log_types'
------------------------------------------------------------------------------

155/157 DPDK:debug-tests / dump_ring                        OK                 0.39s
22:53:46 DPDK_TEST=dump_ring MALLOC_PERTURB_=37 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f1378308000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f137807e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f137801d000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f0f76a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f1377e9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7f0b76800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f1377e3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7f0776600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f1376b9a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7f0376400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f1376b39000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7eff76200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f1376ad8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7efb76000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f1376a77000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7ef775e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f1376a16000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ef375c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
APP: Invalid DPDK_TEST value 'dump_ring'
------------------------------------------------------------------------------

156/157 DPDK:debug-tests / dump_physmem                     OK                 0.38s
22:53:47 MALLOC_PERTURB_=66 DPDK_TEST=dump_physmem /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7ff9330c3000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7ff933069000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7ff933008000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7ff531800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7ff932d7f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7ff131600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7ff932d1e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7fed31400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7ff932b9f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7fe931200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7ff932b3e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7fe531000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7ff93189a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7fe130e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7ff931839000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7fdd30c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7ff53179f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7fd930a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
APP: Invalid DPDK_TEST value 'dump_physmem'
------------------------------------------------------------------------------

157/157 DPDK:debug-tests / dump_memzone                     OK                 0.38s
22:53:47 DPDK_TEST=dump_memzone MALLOC_PERTURB_=61 /dpdk/build/app/test/dpdk-test '-l 0-15'
----------------------------------- output -----------------------------------
stdout:
RTE>>
stderr:
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: WARNING! Base virtual address hint (0x100005000 != 0x7f07a6b7b000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available 1048576 kB hugepages reported
EAL: VFIO support initialized
EAL: WARNING! Base virtual address hint (0x10000b000 != 0x7f07a6b21000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100011000 != 0x7f07a687f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100a12000 != 0x7f03a5200000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x100c17000 != 0x7f07a681e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x101618000 != 0x7effa5000000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10181d000 != 0x7f07a669f000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10221e000 != 0x7efba4e00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102423000 != 0x7f07a663e000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x102e24000 != 0x7ef7a4c00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103029000 != 0x7f07a539a000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103a2a000 != 0x7ef3a4a00000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x103c2f000 != 0x7f07a5339000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104630000 != 0x7eefa4800000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x104835000 != 0x7f07a52d8000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105236000 != 0x7eeba4600000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x10543b000 != 0x7f07a5277000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL: WARNING! Base virtual address hint (0x105e3c000 != 0x7ee7a4400000) not respected!
EAL:    This may cause issues with mapping memory into secondary processes
EAL:   Invalid NUMA socket, default to 0
APP: HPET is not enabled, using TSC as default timer
APP: Invalid DPDK_TEST value 'dump_memzone'
------------------------------------------------------------------------------


Summary of Failures:

  5/157 DPDK:fast-tests / cmdline_autotest                  FAIL               0.41s   exit status 1
  9/157 DPDK:fast-tests / eal_flags_c_opt_autotest          TIMEOUT          600.12s   killed by signal 15 SIGTERM
 12/157 DPDK:fast-tests / eal_flags_hpet_autotest           TIMEOUT          600.07s   killed by signal 15 SIGTERM
 19/157 DPDK:fast-tests / eal_flags_file_prefix_autotest    FAIL               4.11s   exit status 1
 20/157 DPDK:fast-tests / eal_flags_misc_autotest           TIMEOUT          600.03s   killed by signal 15 SIGTERM
 26/157 DPDK:fast-tests / fib6_autotest                     FAIL               0.57s   exit status 1
 28/157 DPDK:fast-tests / flow_classify_autotest            FAIL               0.42s   exit status 1
 29/157 DPDK:fast-tests / hash_autotest                     FAIL               0.33s   exit status 1
 35/157 DPDK:fast-tests / lpm6_autotest                     FAIL               2.94s   exit status 1
 44/157 DPDK:fast-tests / multiprocess_autotest             TIMEOUT          600.11s   killed by signal 15 SIGTERM
 63/157 DPDK:fast-tests / table_autotest                    FAIL               0.49s   exit status 1
 91/157 DPDK:fast-tests / latencystats_autotest             FAIL               0.33s   exit status 1
109/157 DPDK:perf-tests / efd_autotest                      FAIL               0.62s   exit status 1
113/157 DPDK:perf-tests / lpm6_perf_autotest                FAIL               0.39s   exit status 1
120/157 DPDK:perf-tests / pmd_perf_autotest                 FAIL               0.39s   (exit status 255 or signal 127 SIGinvalid)
136/157 DPDK:driver-tests / cryptodev_openssl_asym_autotest FAIL               0.34s   exit status 1
145/157 DPDK:driver-tests / rawdev_autotest                 FAIL               0.33s   exit status 1
148/157 DPDK:driver-tests / link_bonding_mode4_autotest     FAIL              15.38s   (exit status 255 or signal 127 SIGinvalid)


Ok:                 119 
Expected Fail:      0   
Fail:               14  
Unexpected Pass:    0   
Skipped:            20  
Timeout:            4   

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

* Re: [dpdk-dev] Memory leak in rte_pci_scan
  2021-06-15 15:15         ` Owen Hilyard
@ 2021-06-16  9:37           ` David Marchand
       [not found]             ` <CAHx6DYAADd4b9U8m7hNk0d_KkxgYuLF7_ntf+q57tE39W0H2bQ@mail.gmail.com>
  0 siblings, 1 reply; 8+ messages in thread
From: David Marchand @ 2021-06-16  9:37 UTC (permalink / raw)
  To: Owen Hilyard
  Cc: dev, dpdklab, Gaetan Rivet, Jerin Jacob Kollanukkaran, Aaron Conole

On Tue, Jun 15, 2021 at 5:16 PM Owen Hilyard <ohilyard@iol.unh.edu> wrote:
>
> The issue may have been the interactive docker session I was running it in. The last few tests (150-157) were all taking until the timeout the lab uses for unit tests (2 hours since the timeout was multiplied by 10). I had to leave for the day so I restarted it in a non-interactive container and it ran in 2 hours. If we were to just run the fast-tests suite, then it would have taken 42 minutes to run. This is mostly due to timeouts in eal_flags_c_opt_autotest, eal_flags_hpet_autotest, eal_flags_misc_autotest and multiprocess_autotest, each taking 600 seconds. Finding out what caused these to stall would bring the runtime down to 3 minutes. All of the failures should be ASAN-related.

- The perf-tests testsuite is heavy and is probably not suited for per
patchset runs.
It may be worth running every once in a while but at the project/main
branches level.


- For the fast-tests testsuite, the default timeout should be 10s, not 600s.
See timeout_seconds_fast,
https://git.dpdk.org/dpdk/tree/app/test/meson.build#n446
Odd that a 600s timeout has been applied to fast-tests in your run.
How do you invoke meson?


- There is an interesting trace that shows issues with starting
secondary processes in this environment.
EAL: Detected 16 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Detected static linkage of DPDK
EAL: Multi-process socket
/var/run/dpdk/eal_flags_c_opt_autotest/mp_socket_264_50a7b93b648fa
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Cannot get a virtual area at requested address: 0x7f1a8f400000
(got 0x7f19dc1fe000)
EAL: Cannot reserve 17179869184 bytes at [0x7f1a8f400000] - please use
'--base-virtaddr' option
EAL: Cannot preallocate VA space for hugepage memory
EAL: FATAL: Cannot init memory
EAL: Cannot init memory
EAL: Cannot destroy local memory map
EAL: Could not release memory subsystem data

It seems like there are multiple dpdk processes running in // in this
environment.
Any idea of what is happening on your system at the moment you tried
to run this test?


-- 
David Marchand


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

* Re: [dpdk-dev] Memory leak in rte_pci_scan
       [not found]             ` <CAHx6DYAADd4b9U8m7hNk0d_KkxgYuLF7_ntf+q57tE39W0H2bQ@mail.gmail.com>
@ 2021-06-16 17:40               ` David Marchand
  0 siblings, 0 replies; 8+ messages in thread
From: David Marchand @ 2021-06-16 17:40 UTC (permalink / raw)
  To: Owen Hilyard
  Cc: dev, dpdklab, Gaetan Rivet, Jerin Jacob Kollanukkaran,
	Aaron Conole, Burakov, Anatoly

On Wed, Jun 16, 2021 at 6:27 PM Owen Hilyard <ohilyard@iol.unh.edu> wrote:
>> - For the fast-tests testsuite, the default timeout should be 10s, not 600s.
>> See timeout_seconds_fast,
>> https://git.dpdk.org/dpdk/tree/app/test/meson.build#n446
>> Odd that a 600s timeout has been applied to fast-tests in your run.
>> How do you invoke meson?
>
>
> # meson test -t 600
>
> I copied the invocation from the production scripts for the community lab and removed the --suite argument.

600?
-t is for timeout multiplier.
The default timeout for fast tests is 10s and the logs in a previous
mail show 600s for timeout, so I would expect a 60 multiplier.


>
>> It seems like there are multiple dpdk processes running in // in this
>> environment.
>> Any idea of what is happening on your system at the moment you tried
>> to run this test?
>
>
> I ran this on a VM that we keep in the same state as the production container runners. It is not attached to our Jenkins instance, and I was the only logged-in user.  I re-ran the test suite with and without ASAN, and it seems like this type of failure only happens when ASAN is active. The failing tests are: eal_flags_a_opt_autotest, eal_flags_b_opt_autotest, eal_flags_c_opt_autotest, eal_flags_main_opt_autotest, eal_flags_misc_autotest. I've attached the log.

ASAN seems to break some assumption on the default virtual base
address used by the mp stuff.
It might be a reason for the secondary process init failure.

Still, we have probably a deadlock here, since the test should fail in
a reasonable amount of time.

My guess would be at some secondary process not releasing a lock and
the primary ends up waiting on it.
Here, a secondary process did not initialise correctly, but it tried
to cleanup afterwards... per chance, do you have a crash reported in
syslog?


-- 
David Marchand


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

end of thread, other threads:[~2021-06-16 17:41 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-08 18:47 [dpdk-dev] Memory leak in rte_pci_scan Owen Hilyard
2021-06-14  9:11 ` David Marchand
2021-06-14 10:30   ` David Marchand
2021-06-14 20:41     ` Owen Hilyard
2021-06-15  7:43       ` David Marchand
2021-06-15 15:15         ` Owen Hilyard
2021-06-16  9:37           ` David Marchand
     [not found]             ` <CAHx6DYAADd4b9U8m7hNk0d_KkxgYuLF7_ntf+q57tE39W0H2bQ@mail.gmail.com>
2021-06-16 17:40               ` David Marchand

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