Re: [dpdk-dev] [PATCH] examples/ipsec-secgw: fix SPD no-match is misinterpreted

2019-03-30 Thread Ananyev, Konstantin
> Hi Akhil, > > > > > On 3/28/2019 6:17 PM, Konstantin Ananyev wrote: > > > acl_classify() returns zero value when no matching rule was found. > > > Currently ipsec-secgw treats it as a valid SPI value, though it has > > > to discard such packets. > > > Error could be easily observed by sending o

Re: [dpdk-dev] [RFC v2] net: fix rte_vlan_insert with shared mbuf

2019-03-30 Thread Chas Williams
Unfortunately, I think the complete fix is more complicated than this. Drivers that use rte_vlan_insert don't anticipate that the mbuf might change and that (hardware) transmit can fail. They make a copy of the mbuf pointer from the incoming transmit list and don't update the original if rte_vlan

Re: [dpdk-dev] [dpdk-stable] [PATCH] test/eventdev: fix sprintf with snprintf

2019-03-30 Thread Jerin Jacob Kollanukkaran
On Wed, 2019-03-13 at 10:35 -0400, Aaron Conole wrote: > > > For all cases I expect truncation trigger a functional error which > > should be > > already handled properly, like in this case 'rte_vdev_init()' will > > fail in > > second call if buffer is small. > > And give the user a bad error ("

Re: [dpdk-dev] [PATCH v4 1/9] mbuf: new function to generate raw Tx offload value

2019-03-30 Thread Ananyev, Konstantin
Hi Olivier, > > Operations to set/update bit-fields often cause compilers > > to generate suboptimal code. > > To help avoid such situation for tx_offload fields: > > introduce new enum for tx_offload bit-fields lengths and offsets, > > and new function to generate raw tx_offload value. > > > > Si

Re: [dpdk-dev] [PATCH v4 1/6] vfio: allow DMA map of memory for the default vfio fd

2019-03-30 Thread Thomas Monjalon
30/03/2019 01:23, Thomas Monjalon: > 10/03/2019 09:27, Shahaf Shuler: > > Enable users the option to call rte_vfio_dma_map with request to map > > to the default vfio fd. > > > > Signed-off-by: Shahaf Shuler > > Acked-by: Anatoly Burakov > > --- > > --- a/doc/guides/rel_notes/release_19_05.rst >

Re: [dpdk-dev] [PATCH v4 3/6] bus: introduce device level DMA memory mapping

2019-03-30 Thread Thomas Monjalon
13/03/2019 12:12, Shahaf Shuler: > From: Thomas Monjalon > > 10/03/2019 09:28, Shahaf Shuler: > > > For PCI bus devices, the pci driver can expose its own map and unmap > > > functions to be used for the mapping. In case the driver doesn't > > > provide any, the memory will be mapped, if possible,

Re: [dpdk-dev] [PATCH v4 0/6] introduce DMA memory mapping for external memory

2019-03-30 Thread Thomas Monjalon
10/03/2019 09:27, Shahaf Shuler: > The DPDK APIs expose 3 different modes to work with memory used for DMA: > > 1. Use the DPDK owned memory (backed by the DPDK provided hugepages). > This memory is allocated by the DPDK libraries, included in the DPDK > memory system (memseg lists) and automatica

Re: [dpdk-dev] [EXT] RE: [PATCH 2/2] test/event_timer: improve unit test compatability

2019-03-30 Thread Jerin Jacob Kollanukkaran
On Mon, 2019-03-25 at 21:40 +, Carrillo, Erik G wrote: > > -Original Message- > > From: Pavan Nikhilesh Bhagavatula [mailto:pbhagavat...@marvell.com] > > Sent: Saturday, March 16, 2019 3:28 PM > > To: Jerin Jacob Kollanukkaran ; Carrillo, Erik > > G > > > > Cc: dev@dpdk.org; Pavan Nikh

Re: [dpdk-dev] [EXT] [PATCH] event/sw: fix selftest enqueue return value checks

2019-03-30 Thread Jerin Jacob Kollanukkaran
On Wed, 2019-03-27 at 18:45 +, Harry van Haaren wrote: > --- > --- > This patch fixes a number of instances of the same return > value mis-check, where previously we checked for a negative > return value as error, however the API r

Re: [dpdk-dev] [PATCH v2 1/3] packet_ordering: add statistics for each worker thread

2019-03-30 Thread Phil Yang (Arm Technology China)
> -Original Message- > From: Pattan, Reshma > Sent: Saturday, March 30, 2019 12:40 AM > To: Phil Yang (Arm Technology China) ; dev@dpdk.org; > tho...@monjalon.net > Cc: Hunt, David ; Gavin Hu (Arm Technology China) > ; Honnappa Nagarahalli > ; nd > Subject: RE: [PATCH v2 1/3] packet_order

Re: [dpdk-dev] [PATCH v3 01/15] app/testpmd: replace uint with unsigned int

2019-03-30 Thread Thomas Monjalon
13/03/2019 18:06, Natanael Copa: > Improve portability by avoid use non-standard 'uint'. After running git grep '\', I see there is also an occurence in examples/tep_termination/vxlan.c

Re: [dpdk-dev] [PATCH v3 03/15] bus/pci: add fallback for out[lwb]_p for non GNU libc

2019-03-30 Thread Thomas Monjalon
13/03/2019 18:06, Natanael Copa: > Add a fallback for non-GNU libc systems like musl libc for the > non-standard functions outl_p, outw_p and outb_p. > > This ifixes the following buildtime errors when building with musl libc: > pci_uio.c:(.text+0xaa1): undefined reference to `outw_p' > pci_uio.c

Re: [dpdk-dev] [PATCH v3 04/15] bus/pci: factor out various ifdefs in pci_uio_ioport_{read, write}

2019-03-30 Thread Thomas Monjalon
13/03/2019 18:06, Natanael Copa: > define the macros so we can remove various #if defined(RTE_ARCH_X86) > > Ref: https://bugs.dpdk.org/show_bug.cgi?id=35#c6 > > Signed-off-by: Natanael Copa > --- > drivers/bus/pci/linux/pci_uio.c | 54 +++-- > 1 file changed, 24 inse

Re: [dpdk-dev] [PATCH v3 10/15] bus/dpaa: use warn(3) instead of error(3) to improve portability

2019-03-30 Thread Thomas Monjalon
13/03/2019 18:06, Natanael Copa: > Fix build with musl libc by using warn(3) instead of error(3). > > This also fixes error message for kzmalloc failures which previously > would have given "Unknown error -1". I think this patch requires more explanations about what was the error, why using warn,

Re: [dpdk-dev] [PATCH v3 11/15] bus/dpaa: fix warning: "__WORDSIZE" is not defined, evaluates to 0

2019-03-30 Thread Thomas Monjalon
13/03/2019 18:06, Natanael Copa: > There is no standard saying that __WORDSIZE should be be defined or in > what include it should be defined. Use a portable way to detect 64 bit > environment. > > This fixes a warning when building with musl libc: > > warning: "__WORDSIZE" is not defined, evalu

Re: [dpdk-dev] [PATCH v3 13/15] crypto/dpaa2_sec: simplify pr_{debug, err, warn} macros

2019-03-30 Thread Thomas Monjalon
13/03/2019 18:06, Natanael Copa: > Simplify pr_debug, pr_err and pr_warn macros by add an intermediate > pr_msg macro. This way we only need test for SUPPRESS_PRINTS once. > > Signed-off-by: Natanael Copa Adding more Cc for review.

Re: [dpdk-dev] [PATCH v3 00/15] Build fixes for musl libc

2019-03-30 Thread Thomas Monjalon
13/03/2019 18:06, Natanael Copa: > A set of patches to fix build with musl libc. I also did a few cleanups wrt > macros and fixed a few scary compiler warnings while at it. > > Please note that those are only compile tested on x86_64 with musl libc. > > v2 has some code style fixes reported by ch