Re: [dpdk-dev] [PATCH] ethdev: modify comment of INTR RESET event

2021-08-11 Thread Singh, Aman Deep
Hi Chengwen, On 7/26/2021 12:13 PM, Chengwen Feng wrote: According to the definition of rte_eth_dev_reset(), the RTE_ETH_EVENT_INTR_RESET event could also use when PF resets. This patch modifies the comment of RTE_ETH_EVENT_INTR_RESET event, so that it could use in all resets. Signed-off-by: C

Re: [dpdk-dev] [PATCH v1] ethdev: introduce shared Rx queue

2021-08-11 Thread Jerin Jacob
On Mon, Aug 9, 2021 at 7:46 PM Xueming(Steven) Li wrote: > > Hi, > > > -Original Message- > > From: Jerin Jacob > > Sent: Monday, August 9, 2021 9:51 PM > > To: Xueming(Steven) Li > > Cc: dpdk-dev ; Ferruh Yigit ; > > NBU-Contact-Thomas Monjalon ; > > Andrew Rybchenko > > Subject: Re:

Re: [dpdk-dev] [PATCH v2 2/4] cryptodev: change valid dev API

2021-08-11 Thread Akhil Goyal
> > > From: Akhil Goyal > > The API rte_cryptodev_pmd_is_valid_dev, can be used by the application > as > > well as PMD to check whether the device is valid or not. Hence, _pmd is > > removed from the API. > > The applications and drivers which use this API are also updated. > > > > Signed-off-by

Re: [dpdk-dev] [PATCH v2 3/4] examples/fips_validation: remove illegal usage of APIs

2021-08-11 Thread Akhil Goyal
> > From: Akhil Goyal > > Some of the cryptodev APIs are not allowed to be used by application > > directly. Hence removing the usage of 1. queue_pair_release: it is not > > required, as configure > >of queue pair release the previous queue pairs and the > >dev is not directly exposed to a

Re: [dpdk-dev] [PATCH v2 4/4] cryptodev: expose driver interface as internal

2021-08-11 Thread Akhil Goyal
> From: Akhil Goyal > > The rte_cryptodev_pmd.* files are for drivers only and should be private to > > DPDK, and not installed for app use. > > > > Signed-off-by: Akhil Goyal > > Please consider adding to release notes. > > Acked-by: Matan Azrad Yes will do so when it is available.

Re: [dpdk-dev] [PATCH] eal/windows: add sys/queue.h.

2021-08-11 Thread Nick Connolly
What we can do: 1. Introduce `rte_queue.h` (name can be better) that is env-specific: 1.1. For Linux and FreeBSD it just includes and renames a few macros that are used in headers to RTE_xxx. 1.2. For Windows it defines the same RTE_xxx macros in a way compatible wi

Re: [dpdk-dev] [PATCH v3 3/5] vdpa/mlx5: fix minsize build

2021-08-11 Thread Ruifeng Wang
> -Original Message- > From: dev On Behalf Of Thomas Monjalon > Sent: Sunday, August 8, 2021 8:52 PM > To: dev@dpdk.org > Cc: bruce.richard...@intel.com; david.march...@redhat.com; Matan Azrad > ; Viacheslav Ovsiienko > Subject: [dpdk-dev] [PATCH v3 3/5] vdpa/mlx5: fix minsize build > >

Re: [dpdk-dev] [PATCH v3 2/5] regex/mlx5: fix minsize build

2021-08-11 Thread Ruifeng Wang
> -Original Message- > From: dev On Behalf Of Thomas Monjalon > Sent: Sunday, August 8, 2021 8:52 PM > To: dev@dpdk.org > Cc: bruce.richard...@intel.com; david.march...@redhat.com; Ori Kam > > Subject: [dpdk-dev] [PATCH v3 2/5] regex/mlx5: fix minsize build > > Error occurs when configur

Re: [dpdk-dev] [PATCH v3 4/5] test/crypto: fix minsize build

2021-08-11 Thread Ruifeng Wang
> -Original Message- > From: dev On Behalf Of Thomas Monjalon > Sent: Sunday, August 8, 2021 8:52 PM > To: dev@dpdk.org > Cc: bruce.richard...@intel.com; david.march...@redhat.com; Akhil Goyal > ; Declan Doherty > Subject: [dpdk-dev] [PATCH v3 4/5] test/crypto: fix minsize build > > Erro

[dpdk-dev] [PATCH v2 1/4] test/crypto: add lookaside IPsec tests

2021-08-11 Thread Anoob Joseph
Added test case for lookaside IPsec. Inbound known vector tests are added. Cipher list: AES-GCM 128, 192 & 256 Signed-off-by: Anoob Joseph Signed-off-by: Tejasree Kondoj --- app/test/meson.build | 1 + app/test/test.h| 6 +

[dpdk-dev] [PATCH v2 0/4] Add lookaside IPsec tests

2021-08-11 Thread Anoob Joseph
Add lookaside IPsec functional tests. Known vector tests and combined mode framework is added. Known vectors are outbound vectors based on https://datatracker.ietf.org/doc/html/draft-mcgrew-gcm-test-01 The vectors are updated to have sequence number as 1 & L4 checksum computed correctly. And they

[dpdk-dev] [PATCH v2 2/4] test/crypto: add combined mode tests

2021-08-11 Thread Anoob Joseph
Add framework to test IPsec features with all supported combinations of ciphers. Signed-off-by: Anoob Joseph Signed-off-by: Tejasree Kondoj --- app/test/test_cryptodev.c| 73 +++-- app/test/test_cryptodev_security_ipsec.c | 107 +-- a

[dpdk-dev] [PATCH v2 3/4] test/crypto: add lookaside IPsec ICV corrupt test case

2021-08-11 Thread Anoob Joseph
From: Tejasree Kondoj Adding lookaside IPsec ICV corrupt test case. Signed-off-by: Anoob Joseph Signed-off-by: Tejasree Kondoj --- app/test/test_cryptodev.c| 16 app/test/test_cryptodev_security_ipsec.c | 30 -- app/test/test_crypto

[dpdk-dev] [PATCH v2 4/4] test/crypto: add IV gen tests

2021-08-11 Thread Anoob Joseph
From: Tejasree Kondoj Add test cases to verify IV generated by PMD. Signed-off-by: Anoob Joseph Signed-off-by: Tejasree Kondoj --- app/test/test_cryptodev.c| 19 app/test/test_cryptodev_security_ipsec.c | 52 app/test/test_cryptode

Re: [dpdk-dev] [PATCH v1] examples/l3fwd: fix jumbo packet drop issue

2021-08-11 Thread Singh, Aman Deep
Hi Rohit, On 7/27/2021 2:55 PM, rohit@nxp.com wrote: From: Rohit Raj l3fwd uses mbufs with 2KB data size. If we enable jumbo packets, it is not able to store packets with size greater than 2KB, hence these packets are dropped. This patch fixes this issue by enabling scatter for jumbo pack

Re: [dpdk-dev] [External] Re: [PATCH v2] app/testpmd: flowgen support ip and udp fields

2021-08-11 Thread Ferruh Yigit
On 8/11/2021 3:48 AM, 王志宏 wrote: > On Tue, Aug 10, 2021 at 5:12 PM Ferruh Yigit wrote: >> >> On 8/10/2021 8:57 AM, 王志宏 wrote: >>> Thanks for the review Ferruh :) >>> >>> On Mon, Aug 9, 2021 at 11:18 PM Ferruh Yigit wrote: On 8/9/2021 7:52 AM, Zhihong Wang wrote: > This patch aims to

Re: [dpdk-dev] [PATCH v2 1/4] test/crypto: remove illegal header include

2021-08-11 Thread Matan Azrad
From: Akhil Goyal > rte_cryptodev_pmd.h is an interface between driver and library and it is > mentioned in the file that application cannot use it directly. > Hence, removing the include. > > Signed-off-by: Akhil Goyal Acked-by: Matan Azrad

Re: [dpdk-dev] [PATCH v2 2/4] cryptodev: change valid dev API

2021-08-11 Thread Matan Azrad
From: Akhil Goyal > The API rte_cryptodev_pmd_is_valid_dev, can be used by the application as > well as PMD to check whether the device is valid or not. Hence, _pmd is > removed from the API. > The applications and drivers which use this API are also updated. > > Signed-off-by: Akhil Goyal Ag

Re: [dpdk-dev] [PATCH v2 3/4] examples/fips_validation: remove illegal usage of APIs

2021-08-11 Thread Matan Azrad
From: Akhil Goyal > Some of the cryptodev APIs are not allowed to be used by application > directly. Hence removing the usage of 1. queue_pair_release: it is not > required, as configure >of queue pair release the previous queue pairs and the >dev is not directly exposed to application,

Re: [dpdk-dev] [PATCH v2 4/4] cryptodev: expose driver interface as internal

2021-08-11 Thread Matan Azrad
From: Akhil Goyal > The rte_cryptodev_pmd.* files are for drivers only and should be private to > DPDK, and not installed for app use. > > Signed-off-by: Akhil Goyal Please consider adding to release notes. Acked-by: Matan Azrad

Re: [dpdk-dev] [PATCH v1] examples/l3fwd: fix jumbo packet drop issue

2021-08-11 Thread Ferruh Yigit
On 7/27/2021 10:25 AM, rohit@nxp.com wrote: > From: Rohit Raj > > l3fwd uses mbufs with 2KB data size. If we enable jumbo packets, it is > not able to store packets with size greater than 2KB, hence these > packets are dropped. > > This patch fixes this issue by enabling scatter for jumbo pa

Re: [dpdk-dev] [RFC] ethdev: change queue release callback

2021-08-11 Thread Ferruh Yigit
On 8/10/2021 10:07 AM, Xueming(Steven) Li wrote: > > >> -Original Message- >> From: Ferruh Yigit >> Sent: Tuesday, August 10, 2021 4:54 PM >> To: Xueming(Steven) Li ; Singh, Aman Deep >> ; Andrew Rybchenko >> >> Cc: dev@dpdk.org; Slava Ovsiienko ; >> NBU-Contact-Thomas Monjalon >> Su

Re: [dpdk-dev] [PATCH v1] ethdev: introduce shared Rx queue

2021-08-11 Thread Ferruh Yigit
On 8/11/2021 9:28 AM, Xueming(Steven) Li wrote: > > >> -Original Message- >> From: Jerin Jacob >> Sent: Wednesday, August 11, 2021 4:03 PM >> To: Xueming(Steven) Li >> Cc: dpdk-dev ; Ferruh Yigit ; >> NBU-Contact-Thomas Monjalon ; >> Andrew Rybchenko >> Subject: Re: [dpdk-dev] [PATCH

Re: [dpdk-dev] [PATCH v1] ethdev: introduce shared Rx queue

2021-08-11 Thread Xueming(Steven) Li
> -Original Message- > From: Jerin Jacob > Sent: Wednesday, August 11, 2021 4:03 PM > To: Xueming(Steven) Li > Cc: dpdk-dev ; Ferruh Yigit ; > NBU-Contact-Thomas Monjalon ; > Andrew Rybchenko > Subject: Re: [dpdk-dev] [PATCH v1] ethdev: introduce shared Rx queue > > On Mon, Aug 9, 20

[dpdk-dev] Failsafe Secondary Process

2021-08-11 Thread kumaraparameshwaran rathinavel
Hi All, In the commit ee27edbe0c10ec8337c4cc4d2935a751d0da605f I see that for the probe from the secondary process the below check was made, for vdev devices like tap, af_packet. + if (rte_eal_process_type() == RTE_PROC_SECONDARY && + strlen(rte_vdev_device_args(dev)) == 0) { +

[dpdk-dev] [PATCHv2] include: fix sys/queue.h.

2021-08-11 Thread William Tu
Currently there are a couple of header files include 'sys/queue.h', which is a POSIX functionality. When compiling DPDK with OVS on Windows, we encountered issues such as, found the missing header. In file included from ../lib/dpdk.c:27: C:\temp\dpdk\include\rte_log.h:24:10: fatal error: 'sys/queu

Re: [dpdk-dev] [PATCH] eal/windows: add sys/queue.h.

2021-08-11 Thread William Tu
On Wed, Aug 11, 2021 at 1:34 AM Nick Connolly wrote: > > > > What we can do: > > > > 1. Introduce `rte_queue.h` (name can be better) that is env-specific: > > > > 1.1. For Linux and FreeBSD it just includes > > and renames a few macros that are used in headers to RTE_xxx. > > 1.2

[dpdk-dev] [PATCH v3 1/2] devtools: fix version pattern for fix search

2021-08-11 Thread Xueming Li
When scanning fixes from current(HEAD) branch, local tags were included and reported as version. For example: $ git tag --contains --merged 20.11_backport_202010506 // user tag v20.11 v20.11.1 This patch matches DPDK officail version pattern in search, selects the most early tag. Offici

[dpdk-dev] [PATCH v3 2/2] devtools: fix patches missing if range newer than HEAD

2021-08-11 Thread Xueming Li
Current fix scan scripts used HEAD branch as history reference. When users ran it in an earlier branch, few patches were scanned due to the fixes in the range are newer and not merged to current branch. This patch introduces optional argument, default to HEAD if not specified. Checks the specifi

Re: [dpdk-dev] [PATCHv2] include: fix sys/queue.h.

2021-08-11 Thread Dmitry Kozlyuk
Hi William, 2021-08-11 20:46 (UTC+), William Tu: > Currently there are a couple of header files include 'sys/queue.h', > which is a POSIX functionality. When compiling DPDK with OVS on > Windows, we encountered issues such as, found the missing header. > In file included from ../lib/dpdk.c:27

Re: [dpdk-dev] [v3, 0/3] common/cnxk: enable npa telemetry

2021-08-11 Thread Power, Ciara
Hi Gowrishankar, >-Original Message- >From: Gowrishankar Muthukrishnan >Sent: Tuesday 3 August 2021 09:06 >To: dev@dpdk.org >Cc: Richardson, Bruce ; Power, Ciara >; jer...@marvell.com; kirankum...@marvell.com; >ndabilpu...@marvell.com; sk...@marvell.com; skotesh...@marvell.com; >Gowrishan

Re: [dpdk-dev] [RFC] ethdev: change queue release callback

2021-08-11 Thread Xueming(Steven) Li
> -Original Message- > From: Ferruh Yigit > Sent: Wednesday, August 11, 2021 7:58 PM > To: Xueming(Steven) Li ; Singh, Aman Deep > ; Andrew Rybchenko > > Cc: dev@dpdk.org; Slava Ovsiienko ; > NBU-Contact-Thomas Monjalon ; > jer...@marvell.com > Subject: Re: [dpdk-dev] [RFC] ethdev: ch

Re: [dpdk-dev] [v3, 0/3] common/cnxk: enable npa telemetry

2021-08-11 Thread Gowrishankar Muthukrishnan
Hi Ciara, > -Original Message- > From: Power, Ciara > Sent: Wednesday, August 11, 2021 9:30 PM > To: Gowrishankar Muthukrishnan ; dev@dpdk.org > Cc: Richardson, Bruce ; Jerin Jacob Kollanukkaran > ; Kiran Kumar Kokkilagadda ; > Nithin Kumar Dabilpuram ; Sunil Kumar Kori > ; Satha Koteswar

Re: [dpdk-dev] [PATCH v1] ethdev: introduce shared Rx queue

2021-08-11 Thread Xueming(Steven) Li
> -Original Message- > From: Ferruh Yigit > Sent: Wednesday, August 11, 2021 8:04 PM > To: Xueming(Steven) Li ; Jerin Jacob > > Cc: dpdk-dev ; NBU-Contact-Thomas Monjalon > ; Andrew Rybchenko > > Subject: Re: [dpdk-dev] [PATCH v1] ethdev: introduce shared Rx queue > > On 8/11/2021 9

[dpdk-dev] [PATCH v2 04/15] app/testpmd: make sure shared Rx queue polled on same core

2021-08-11 Thread Xueming Li
Shared rxqs uses one set rx queue internally, queues must be polled from one core. Stops forwarding if shared rxq being scheduled on multiple cores. Signed-off-by: Xueming Li --- app/test-pmd/config.c | 91 ++ app/test-pmd/testpmd.c | 4 +- app/test-pmd

[dpdk-dev] [PATCH v2 05/15] app/testpmd: adds common forwarding for shared Rx queue

2021-08-11 Thread Xueming Li
By enabling shared Rx queue, received packets come from all member ports in same shared Rx queue. This patch adds a common forwarding function for shared Rx queue, groups source forwarding stream by looking up local streams on current lcore with packet source port(mbuf->port) and queue, then invok

[dpdk-dev] [PATCH v2 01/15] ethdev: introduce shared Rx queue

2021-08-11 Thread Xueming Li
In current DPDK framework, each RX queue is pre-loaded with mbufs for incoming packets. When number of representors scale out in a switch domain, the memory consumption became significant. Most important, polling all ports leads to high cache miss, high latency and low throughput. This patch intro

[dpdk-dev] [PATCH v2 02/15] app/testpmd: dump port and queue info for each packet

2021-08-11 Thread Xueming Li
In case of shared Rx queue, port number of mbufs returned from one rx burst could be different. To support shared Rx queue, this patch dumps mbuf->port and queue for each packet. Signed-off-by: Xueming Li --- app/test-pmd/util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test-pmd/u

[dpdk-dev] [PATCH v2 03/15] app/testpmd: new parameter to enable shared Rx queue

2021-08-11 Thread Xueming Li
Adds "--rxq-share" parameter to enable shared rxq for each rxq. Default shared rxq group 0 is used, RX queues in same switch domain shares same rxq according to queue index. Shared Rx queue is enabled only if device support offloading flag RTE_ETH_RX_OFFLOAD_SHARED_RXQ. Signed-off-by: Xueming Li

[dpdk-dev] [PATCH v2 07/15] app/testpmd: support shared Rx queues for IO forwarding

2021-08-11 Thread Xueming Li
Supports shared Rx queue. If shared Rx queue is enabled, group received packets by stream according to mbuf->port value and then and forward in stream basis as before. If shared Rx queue is not enabled, just forward in stream basis. Signed-off-by: Xueming Li --- app/test-pmd/iofwd.c | 27 +

[dpdk-dev] [PATCH v2 10/15] app/testpmd: support shared Rx queue for csum fwd

2021-08-11 Thread Xueming Li
From: Xiaoyu Min Add support of shared rxq. If shared rxq is enabled, filter packet by stream according to mbuf->port value and then fwd it in stream basis (as before). If shared rxq is not enabled, just fwd it in stream basis. Signed-off-by: Xiaoyu Min --- app/test-pmd/csumonly.c | 28 ++

[dpdk-dev] [PATCH v2 09/15] app/testpmd: support shared Rx queue for icmpecho fwd

2021-08-11 Thread Xueming Li
From: Xiaoyu Min Add support of shared rxq. If shared rxq is enabled, filter packet by stream according to mbuf->port value and then fwd it in stream basis (as before). If shared rxq is not enabled, just fwd it in stream basis. Signed-off-by: Xiaoyu Min --- app/test-pmd/icmpecho.c | 33 ++

[dpdk-dev] [PATCH v2 06/15] app/testpmd: add common fwd wrapper function

2021-08-11 Thread Xueming Li
From: Xiaoyu Min Added an inline common wrapper function for all fwd engines which do the following in common: 1. get_start_cycles 2. rte_eth_rx_burst(...,nb_pkt_per_burst) 3. if rxq_share do forward_shared_rxq(), otherwise do fwd directly 4. get_end_cycle Signed-off-by: Xiaoyu Min --- app/te

[dpdk-dev] [PATCH v2 08/15] app/testpmd: support shared Rx queue for rxonly forwarding

2021-08-11 Thread Xueming Li
Supports shared Rx queue. If shared Rx queue is enabled, group received packets by stream according to mbuf->port value and then and forward in stream basis as before. If shared Rx queue is not enabled, just forward in stream basis. Signed-off-by: Xueming Li --- app/test-pmd/rxonly.c | 34

[dpdk-dev] [PATCH v2 11/15] app/testpmd: support shared Rx queue for flowgen

2021-08-11 Thread Xueming Li
From: Xiaoyu Min Add support of shared rxq. If shared rxq is enabled, filter packet by stream according to mbuf->port value and then do stats in stream basis (as before). If shared rxq is not enabled, just as usual in stream basis. Signed-off-by: Xiaoyu Min --- app/test-pmd/flowgen.c | 22 +++

[dpdk-dev] [PATCH v2 12/15] app/testpmd: support shared Rx queue for MAC fwd

2021-08-11 Thread Xueming Li
From: Xiaoyu Min Add support of shared rxq. If shared rxq is enabled, filter packet by stream according to mbuf->port value and then fwd it in stream basis (as before). If shared rxq is not enabled, just fwd it as usual in stream basis. Signed-off-by: Xiaoyu Min --- app/test-pmd/macfwd.c | 27

[dpdk-dev] [PATCH v2 13/15] app/testpmd: support shared Rx queue for macswap fwd

2021-08-11 Thread Xueming Li
From: Xiaoyu Min Add support of shared rxq. If shared rxq is enabled, filter packet by stream according to mbuf->port value and then fwd it in stream basis (as before). If shared rxq is not enabled, just fwd it as usual in stream basis. Signed-off-by: Xiaoyu Min --- app/test-pmd/macswap.c | 2

[dpdk-dev] [PATCH v2 14/15] app/testpmd: support shared Rx queue for 5tuple fwd

2021-08-11 Thread Xueming Li
From: Xiaoyu Min Add support of shared rxq. If shared rxq is enabled, filter packet by stream according to mbuf->port value and then fwd it in stream basis (as before). If shared rxq is not enabled, just fwd it as usual in stream basis. Signed-off-by: Xiaoyu Min --- app/test-pmd/5tswap.c | 30

[dpdk-dev] [PATCH v2 15/15] app/testpmd: support shared Rx queue for ieee1588 fwd

2021-08-11 Thread Xueming Li
From: Xiaoyu Min Add support of shared rxq. If shared rxq is enabled, filter packet by stream according to mbuf->port value and then fwd it in stream basis (as before). If shared rxq is not enabled, just fwd it as usual in stream basis. Signed-off-by: Xiaoyu Min --- app/test-pmd/ieee1588fwd.c

Re: [dpdk-dev] [PATCHv2] include: fix sys/queue.h.

2021-08-11 Thread William Tu
On Wed, Aug 11, 2021 at 8:50 AM Dmitry Kozlyuk wrote: > > Hi William, > > 2021-08-11 20:46 (UTC+), William Tu: > > Currently there are a couple of header files include 'sys/queue.h', > > which is a POSIX functionality. When compiling DPDK with OVS on > > Windows, we encountered issues such as

[dpdk-dev] DTS Workgroup: MoM 08/11/2021

2021-08-11 Thread Honnappa Nagarahalli
Attendees: Brandon Lo Honnappa Nagarahalli Juraj Linkes Lincoln Lavoie Lijuan Tu Owen Hilyard The meeting announcements are sent to dev@dpdk.org. Minutes: 1) Close to completing the triaging/discussions. Hopefully, we will be able to complete it in the next couple of weeks. 2) The work item rela

Re: [dpdk-dev] [PATCH] eal/windows: expose symbol rte_version

2021-08-11 Thread Dmitry Kozlyuk
2021-08-05 17:48 (UTC+), William Tu: > When OVS inits, it calls rte_version to get the DPDK's version. > The patch fixes the error below by exposing rte_version symbol. > libopenvswitch.a(dpdk.c.obj) : error LNK2019: unresolved external symbol > rte_version referenced in function dpdk_init Fix

[dpdk-dev] [PATCH 0/3] Fixes for txgbe

2021-08-11 Thread Jiawen Wu
These patches fix link status, module info and flow director. Jiawen Wu (3): net/txgbe: fix link status when device stopped net/txgbe: fix to read SFP module's SFF-8472 data net/txgbe: fix L4 port mask in FDIR drivers/net/txgbe/base/txgbe_phy.c | 18 +++--- drivers/net/txgbe/b

[dpdk-dev] [PATCH 1/3] net/txgbe: fix link status when device stopped

2021-08-11 Thread Jiawen Wu
When device is stopped, the port status is not changed and only the Tx laser is turned off by hardware design. Fixes: 0c061eadec59 ("net/txgbe: add link status change") Cc: sta...@dpdk.org Signed-off-by: Jiawen Wu --- drivers/net/txgbe/base/txgbe_type.h | 1 + drivers/net/txgbe/txgbe_ethdev.c

[dpdk-dev] [PATCH 2/3] net/txgbe: fix to read SFP module's SFF-8472 data

2021-08-11 Thread Jiawen Wu
Fix the I2C target address selection to read SFP module's SFF-8472 data. Fixes: 8f09fb4642fa ("net/txgbe: add module identify") Cc: sta...@dpdk.org Signed-off-by: Jiawen Wu --- drivers/net/txgbe/base/txgbe_phy.c | 18 +++--- 1 file changed, 7 insertions(+), 11 deletions(-) diff --g

[dpdk-dev] [PATCH 3/3] net/txgbe: fix L4 port mask in FDIR

2021-08-11 Thread Jiawen Wu
Remove bit reverse for TCP/UDP port mask, since it causes the flows with some TCP/UDP ports to disobey the flow director rules. Fixes: ea230dda16ad ("net/txgbe: configure flow director filter") Cc: sta...@dpdk.org Signed-off-by: Jiawen Wu --- drivers/net/txgbe/txgbe_fdir.c | 18 +++-

Re: [dpdk-dev] [PATCH v2] bus/vmbus: Fix crash when handling packets in secondary process

2021-08-11 Thread Long Li
I think the code is on the right track. Instead of using vmbus_uio_get_num_subchan() and calling vmbus_uio_get_subchan() on each channel, you can just create a new function vmbus_uio_get_secondary_subchan(). This function goes through all subchannels and map ring buffers to the same addresses u