[PATCH v1] gro: bug fix in identifying 0 length tcp packets

2022-04-03 Thread Kumara Parameshwaran
As the minimum Ethernet frame size is 64 bytes, a 0 length tcp payload without tcp options would be 54 bytes and hence there would be padding. So it would be incorrect to use the packet length to determine the tcp data length. Fixes: 1e4cf4d6d4fb ("gro: cleanup") Cc: sta...@dpdk.org Signed-off-by

[Bug 991] [19.11] net/ena build failure with gcc 12

2022-04-03 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=991 Bug ID: 991 Summary: [19.11] net/ena build failure with gcc 12 Product: DPDK Version: 19.11 Hardware: All OS: All Status: UNCONFIRMED Severity: normal Pr

RE: [PATCH v3] eal: add seqlock

2022-04-03 Thread Honnappa Nagarahalli
> >> a/app/test/test_seqlock.c b/app/test/test_seqlock.c new file mode > >> 100644 index 00..54fadf8025 > >> --- /dev/null > >> +++ b/app/test/test_seqlock.c > >> @@ -0,0 +1,202 @@ > >> +/* SPDX-License-Identifier: BSD-3-Clause > >> + * Copyright(c) 2022 Ericsson AB > >> + */ > >> + > >>

RE: [PATCH v3] eal: add seqlock

2022-04-03 Thread Honnappa Nagarahalli
> > >> + * Example usage: > >> + * @code{.c} > >> + * #define MAX_Y_LEN (16) > >> + * // Application-defined example data structure, protected by a seqlock. > >> + * struct config { > >> + * rte_seqlock_t lock; > >> + * int param_x; > >> + * char param_y[MAX_Y_LEN]; > >>

Re: [PATCH v3] eal: add seqlock

2022-04-03 Thread Ola Liljedahl
(Now using macOS Mail program in plain text mode, hope this works) > On 2 Apr 2022, at 21:31, Honnappa Nagarahalli > wrote: > > > >>> +__rte_experimental >>> +static inline bool >>> +rte_seqlock_read_tryunlock(const rte_seqlock_t *seqlock, uint32_t >>> +*begin_sn) { >>> + uint32_t end_sn; >

Re: [PATCH v3] eal: add seqlock

2022-04-03 Thread Ola Liljedahl
+__rte_experimental +static inline void +rte_seqlock_write_lock(rte_seqlock_t *seqlock) { + uint32_t sn; + + /* to synchronize with other writers */ + rte_spinlock_lock(&seqlock->lock); + + sn = seqlock->sn + 1; >>> The load of seqlock->sn could use

[PATCH] mbuf: expose outer vlan in mbuf dump

2022-04-03 Thread Ben Magistro
Enable printing of the outer vlan if flags indicate it is present. Signed-off-by: Ben Magistro --- While troubleshooting some QinQ offloads with various Intel i40e firmware[1], it was helpful to expose the outer vlan in the dump mbuf calls. This should be straightforward to backport and happ

[PATCH] net/ice: refact parser API usage

2022-04-03 Thread Qi Zhang
Not necessary to create / destroy a parser instance for every raw packet rule. A global parser instance will be created in ice_flow_init and be destroyed in ice_flow_uninit. Also, ice_dev_udp_tunnel_port_add has been hooked to perform corresponding parser configure. This also fix the issue that RS

RE: [PATCH] mbuf: expose outer vlan in mbuf dump

2022-04-03 Thread Morten Brørup
> From: Ben Magistro [mailto:konce...@gmail.com] > Sent: Monday, 4 April 2022 02.57 > > Enable printing of the outer vlan if flags indicate it is present. > > Signed-off-by: Ben Magistro > > --- > > While troubleshooting some QinQ offloads with various Intel i40e > firmware[1], it was > helpfu

Re: [RFC PATCH v2 2/9] eal: annotate spinlock and rwlock

2022-04-03 Thread Stephen Hemminger
On Wed, 30 Mar 2022 15:49:49 +0200 David Marchand wrote: > +#ifdef RTE_ANNOTATE_LOCKS > + > +#define RTE_ANNOTATED_LOCK \ > + __attribute__((lockable)) > + > +#define RTE_GUARDED_BY(...) \ > + __attribute__((guarded_by(__VA_ARGS__))) > +#define RTE_GUARDED_VAR \ > + __attribute__((gua

RE: [PATCH v1] gro: bug fix in identifying 0 length tcp packets

2022-04-03 Thread Morten Brørup
> From: Kumara Parameshwaran [mailto:kumaraparames...@gmail.com] > Sent: Sunday, 3 April 2022 13.51 > > As the minimum Ethernet frame size is 64 bytes, a 0 length > tcp payload without tcp options would be 54 bytes and hence > there would be padding. So it would be incorrect to use the > packet le

Re: 19.11.12 patches review and test

2022-04-03 Thread Christian Ehrhardt
On Fri, Apr 1, 2022 at 4:34 PM Kalesh Anakkur Purayil < kalesh-anakkur.pura...@broadcom.com> wrote: > Hi Christian, > > Testing with dpdk v19.11.12-rc1 from Broadcom looks good. Tested with the > fix for Bug 977 on top of 19.11.12-rc1. > > Thank you Kalesh, I've added it to the validation info of

Re: 19.11.12 patches review and test

2022-04-03 Thread Christian Ehrhardt
On Mon, Mar 21, 2022 at 12:55 PM wrote: > Hi all, > > Here is a list of patches targeted for stable release 19.11.12. > > The planned date for the final release is 7th of April. > I wanted to re-ping for this. Right now we have: - Intel verification, mostly done - waiting for feedback on a few i

RE: 19.11.12 patches review and test

2022-04-03 Thread Ali Alnubani
> -Original Message- > From: christian.ehrha...@canonical.com > > Sent: Monday, March 21, 2022 1:55 PM > To: sta...@dpdk.org > Cc: dev@dpdk.org; Abhishek Marathe ; > Ali Alnubani ; benjamin.wal...@intel.com; David > Christensen ; > hariprasad.govindhara...@intel.com; Hemant Agrawal > ; Ian

RE: [RFC PATCH v2 4/9] vhost: fix async access

2022-04-03 Thread Pai G, Sunil
> -Original Message- > From: David Marchand > Sent: Wednesday, March 30, 2022 7:20 PM > To: dev@dpdk.org > Cc: maxime.coque...@redhat.com; Xia, Chenbo ; Hu, > Jiayu ; Wang, YuanX ; Ding, Xuan > ; sta...@dpdk.org; Patrick Fu > Subject: [RFC PATCH v2 4/9] vhost: fix async access > > vq->