RE: [PATCH v7] ip_frag: add IPv4 options fragment and test data

2022-04-15 Thread Ananyev, Konstantin
> According to RFC791,the options may appear or not in datagrams. > They must be implemented by all IP modules (host and gateways). > What is optional is their transmission in any particular datagram, > not their implementation.So we have to deal with it during the > fragmenting process.Add some te

DPDK Release Status Meeting 2022-04-14

2022-04-15 Thread Mcnamara, John
Release status meeting minutes 2022-04-14 = Agenda: * Release Dates * Subtrees * Roadmaps * LTS * Defects * Opens Participants: * ARM * Intel * Marvell * Nvidia * Red Hat * Xilinx/AMD Release Dates - The following are the proposed current dat

Re: [PATCH] kni: update kernel API to receive packets

2022-04-15 Thread Ferruh Yigit
On 4/15/2022 5:07 AM, Gagandeep Singh wrote: Hi -Original Message- From: Harold Huang Sent: Friday, April 15, 2022 8:54 AM To: Gagandeep Singh Cc: dev@dpdk.org Subject: Re: [PATCH] kni: update kernel API to receive packets On Thu, Apr 14, 2022 at 8:23 PM Gagandeep Singh wrote: API

Re: [DPDK v3] net/ixgbe: promote MDIO API

2022-04-15 Thread Ray Kinsella
zhichaox.z...@intel.com writes: > From: zhichao zeng > > Promote the MDIO APIs to be stable. > > Signed-off-by: zhichao zeng > --- > drivers/net/ixgbe/rte_pmd_ixgbe.h | 5 - > drivers/net/ixgbe/version.map | 10 +- > 2 files changed, 5 insertions(+), 10 deletions(-) > > diff

Re: [PATCH 1/4] lib/power: add get and set API for emptypoll max

2022-04-15 Thread Ray Kinsella
Kevin Laatz writes: > Add new get/set APIs to configure emptypoll max which is used to > determine when a queue can go into sleep state. > > Signed-off-by: Kevin Laatz > --- > lib/power/rte_power_pmd_mgmt.c | 21 ++--- > lib/power/rte_power_pmd_mgmt.h | 27

Re: [PATCH v2 2/2] build: hide local symbols in shared libraries

2022-04-15 Thread Ray Kinsella
Thomas Monjalon writes: > The symbols which are not listed in the version script > are exported by default. > Adding a local section with a wildcard make non-listed functions > and variables as hidden, as it should be in all version.map files. > > These are the changes done in the shared librar

Re: [PATCH] kni: update kernel API to receive packets

2022-04-15 Thread Stephen Hemminger
On Fri, 15 Apr 2022 13:30:33 +0100 Ferruh Yigit wrote: > >> But this change would cause KNI kernel module does not work in the old > >> kernel > >> without this patch. I suggested using netif_rx_ni to keep compatibility. > > > > netif_rx() API exists from very older versions of kernel before

[PATCH 0/3] Enable ASan in GHA

2022-04-15 Thread David Marchand
This series fixes two issues that were revealed while running unit tests with ASan in GHA. There are still some outstanding issues for which bz have been created. The last patch enables ASan in GHA, skipping tests which have issues. -- David Marchand David Marchand (3): test/mem: disable ASan

[PATCH 1/3] test/mem: disable ASan when accessing unallocated mem

2022-04-15 Thread David Marchand
As described in bugzilla, ASan reports accesses to all memory segment as invalid, since those parts have not been allocated. Move __rte_no_asan to rte_common.h and disable ASan on a part of the test. Bugzilla ID: 880 Fixes: 6cc51b1293ce ("mem: instrument allocator for ASan") Cc: sta...@dpdk.org S

[PATCH 2/3] mem: fix ASan shadow for remapped memory segments

2022-04-15 Thread David Marchand
When releasing some memory, the allocator can choose to return some pages to the OS. At the same time, this memory was poisoned in ASAn shadow. Doing the latter made it impossible to remap this same page later. On the other hand, without this poison, the OS would pagefault in any case for this page

[PATCH 3/3] ci: build some job with ASan

2022-04-15 Thread David Marchand
Enable ASan, this can greatly help identify leaks and buffer overflows. Running all unit tests is not possible at the moment: skip unit tests who have known issues with ASan. Signed-off-by: David Marchand --- .ci/linux-build.sh | 8 ++ .github/workflows/build.yml | 3 +- app/test/me

Re: [PATCH 1/3] ethdev: fix telemetry xstats return null with some PMDs

2022-04-15 Thread Stephen Hemminger
On Sat, 16 Apr 2022 09:07:45 +0800 Chengwen Feng wrote: > Currently the telemetry xstats uses rte_eth_xstats_get() to retrieve > the number of elements. But the value to be returned when the parameter > 'xstats' is NULL is not specified, some PMDs (eg. hns3/ipn3ke/mvpp2/ > axgbe) return zero whil