Re: [PATCH 1/1] test/pmd_perf: handling of unknown connection speed

2022-06-27 Thread Heinrich Schuchardt
On 6/26/22 17:15, Thomas Monjalon wrote: 11/05/2022 18:33, Heinrich Schuchardt: When running DPDK in QEMU it cannot determine the connection speed. pmd_perf_autotest treats this as if the connection speed where UNIT32_MAX Mbps: RTE>>pmd_perf_autotest Start PMD RXTX cycles cost test.

[PATCH] net/iavf: fix issue of VF resetting

2022-06-27 Thread Yiding Zhou
When the VF is in closed state, the vf_reset flag can not be reverted if the VF is reset asynchronously. This prevents all virtchnl commands from executing, causing subsequent calls to iavf_dev_reset() to fail. So the vf_reset flag needs to be reverted even when VF is in closed state. Fixes: 676d

Re: [PATCH 22.07] doc: make doc roadmap common for Linux/BSD GSGs

2022-06-27 Thread Bruce Richardson
On Sun, Jun 26, 2022 at 11:34:30PM +0200, Thomas Monjalon wrote: > 14/06/2022 16:12, Mcnamara, John: > > From: Bruce Richardson > > > Both the Linux and FreeBSD GSG docs had a "Documentation Roadmap" > > > section as part of the introduction page, and this contained the same > > > information, wit

Re: [PATCH 1/1] test/pmd_perf: handling of unknown connection speed

2022-06-27 Thread Thomas Monjalon
27/06/2022 09:18, Heinrich Schuchardt: > On 6/26/22 17:15, Thomas Monjalon wrote: > > 11/05/2022 18:33, Heinrich Schuchardt: > >> When running DPDK in QEMU it cannot determine the connection speed. > >> pmd_perf_autotest treats this as if the connection speed where > >> UNIT32_MAX Mbps: > >> > >>

[PATCH] crypto/cnxk: predecrement esn value to be used in session

2022-06-27 Thread Anoob Joseph
ESN provided in the session would be the next sequence number to be used. Hence predecrement the value, so that in datapath, incremented value will be as expected. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn9k_ipsec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[PATCH] vdpa/sfc: handle sync issue between qemu and vhost-user

2022-06-27 Thread abhimanyu.saini
From: Abhimanyu Saini When DPDK app is running in the VF, it sometimes rings the doorbell before dev_config has had a chance to complete and hence it misses the event. As workaround, ring the doorbell when vDPA reports the notify_area to QEMU. Fixes: 5e7596ba7cb3 ("vdpa/sfc: introduce Xilinx vDP

[PATCH 2/4] vhost: restore device information in log messages

2022-06-27 Thread David Marchand
device information in the log messages was dropped. Fixes: 52ade97e3641 ("vhost: fix physical address mapping") Signed-off-by: David Marchand --- lib/vhost/vhost_user.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/vhost/vhost_user.c b/lib/vhost/vhost_user.c i

[PATCH 4/4] vhost: prefix logs with context

2022-06-27 Thread David Marchand
We recently improved the log messages in the vhost library, adding some context that helps filtering for a given vhost-user device. However, some parts of the code were missed, and some later code changes broke this new convention (fixes were sent previous to this patch). Change the VHOST_LOG_CONF

[PATCH 0/4] Vhost logs fixes and improvement

2022-06-27 Thread David Marchand
Here is a series that fixes log messages (with one regression being fixed in patch 2) and changes the VHOST_LOG_* helpers to enforce that vhost log messages will always have some context/prefix to help debugging on setups with many vhost ports. The first three patches are low risk and can probably

[Bug 1042] [dpdk-22.07](ABI) unit_tests_eal/link_bonding_rssconf: link_bonding_rssconf_autotest test failed

2022-06-27 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1042 Bug ID: 1042 Summary: [dpdk-22.07](ABI) unit_tests_eal/link_bonding_rssconf: link_bonding_rssconf_autotest test failed Product: DPDK Version: 22.03 Hardware: All OS

[PATCH 1/4] vhost: add some trailing newline in log messages

2022-06-27 Thread David Marchand
VHOST_LOG_* macros don't append a newline. Add missing ones. Fixes: e623e0c6d8a5 ("vhost: add reconnect ability") Fixes: af1475918124 ("vhost: introduce API to start a specific driver") Fixes: 2dfeebe26546 ("vhost: check return of mutex initialization") Cc: sta...@dpdk.org Signed-off-by: David Ma

[PATCH 3/4] vhost: improve some datapath log messages

2022-06-27 Thread David Marchand
Those messages were missed when adding socket context. Fix this. Signed-off-by: David Marchand --- lib/vhost/vhost.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/vhost/vhost.h b/lib/vhost/vhost.h index 4ebcb7448a..810bc71c9d 100644 --- a/lib/vhost/vhost.h +++ b/l

[PATCH 2/2] eventdev: add function to enq new events to the same queue

2022-06-27 Thread pbhagavatula
From: Pavan Nikhilesh Introduce new fastpath function to enqueue events with type *OP_NEW* to the same destination event queue. This function can be used as a hint to the PMD to use optimized the enqueue sequence. Signed-off-by: Pavan Nikhilesh --- lib/eventdev/eventdev_pmd.h | 5 +- lib

[PATCH 1/2] doc: add enqueue depth for new event type

2022-06-27 Thread pbhagavatula
From: Pavan Nikhilesh A new field ``max_event_port_enqueue_new_burst`` will be added to the structure ``rte_event_dev_info``. The field defines the max enqueue burst size of new events (OP_NEW) supported by the underlying event device. Signed-off-by: Pavan Nikhilesh --- doc/guides/rel_notes/de

[PATCH v1 1/1] eventdev/eth_tx: use timestamp as dynamic mbuf field

2022-06-27 Thread Ganapati Kundapura
Added support to register timestamp dynamic field in mbuf. Signed-off-by: Ganapati Kundapura diff --git a/lib/eventdev/rte_event_eth_tx_adapter.c b/lib/eventdev/rte_event_eth_tx_adapter.c index c700fb7..23d5df3 100644 --- a/lib/eventdev/rte_event_eth_tx_adapter.c +++ b/lib/eventdev/rte_event_et

[PATCH v5] gro: bug fix in identifying fragmented packets

2022-06-27 Thread Kumara Parameshwaran
From: Kumara Parameshwaran A packet with RTE_PTYPE_L4_FRAG(0x300) contains both RTE_PTYPE_L4_TCP (0x100) & RTE_PTYPE_L4_UDP (0x200). A fragmented packet as defined in rte_mbuf_ptype.h cannot be recognized as other L4 types and hence the GRO layer should not use IS_IPV4_TCP_PKT or IS_IPV4_UDP_PKT

RE: [PATCH v4] net: fix checksum with unaligned buffer

2022-06-27 Thread Morten Brørup
> From: Emil Berg [mailto:emil.b...@ericsson.com] > Sent: Monday, 27 June 2022 09.57 > > > From: Morten Brørup > > Sent: den 23 juni 2022 14:51 > > > > > From: Morten Brørup [mailto:m...@smartsharesystems.com] > > > Sent: Thursday, 23 June 2022 14.39 > > > > > > With this patch, the checksum can

Service core statistics MT safety

2022-06-27 Thread Mattias Rönnblom
Hi. Is it safe to enable stats on MT safe services? https://github.com/DPDK/dpdk/blob/main/lib/eal/common/rte_service.c#L366 It seems to me this would have to be an __atomic_add for this code to produce deterministic results. Best regards, Mattias

RE: [PATCH] net/mlx5: fix risk in Rx descriptor read in NEON vector path

2022-06-27 Thread Ruifeng Wang
> -Original Message- > From: Slava Ovsiienko > Sent: Monday, June 20, 2022 1:38 PM > To: Ali Alnubani ; Ruifeng Wang > ; Matan Azrad > Cc: dev@dpdk.org; Honnappa Nagarahalli > ; sta...@dpdk.org; nd > Subject: RE: [PATCH] net/mlx5: fix risk in Rx descriptor read in NEON vector > path > >

Re: [PATCH] ip_frag: replace the rte memcpy with memcpy

2022-06-27 Thread Liang Ma
On Fri, Jun 24, 2022 at 06:25:10PM +0100, Konstantin Ananyev wrote: > 23/06/2022 03:35, Stephen Hemminger пишет: > > On Wed, 22 Jun 2022 23:49:39 +0100 > > Konstantin Ananyev wrote: > > > > > > @@ -26,7 +25,7 @@ static inline void __fill_ipv4hdr_frag(struct > > > > rte_ipv4_hdr *dst, > > > >

Re: [PATCH v4] net: fix checksum with unaligned buffer

2022-06-27 Thread Mattias Rönnblom
On 2022-06-23 14:51, Morten Brørup wrote: From: Morten Brørup [mailto:m...@smartsharesystems.com] Sent: Thursday, 23 June 2022 14.39 With this patch, the checksum can be calculated on an unaligned buffer. I.e. the buf parameter is no longer required to be 16 bit aligned. The checksum is still c

RE: Service core statistics MT safety

2022-06-27 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > Sent: Monday, 27 June 2022 13.06 > > Hi. > > Is it safe to enable stats on MT safe services? > > https://github.com/DPDK/dpdk/blob/main/lib/eal/common/rte_service.c#L36 > 6 > > It seems to me this would have to be an __atomic_add

[PATCH] lib/hash: fix the return value description of rte_hash

2022-06-27 Thread Chenming C
The rte_hash lookup can return ZERO which is not a positive value. Signed-off-by: Chenming C --- lib/hash/rte_hash.h | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/hash/rte_hash.h b/lib/hash/rte_hash.h index 7fa9702..1bf1aac 100644 --- a/lib/hash/rte_has

RE: [PATCH v4] net: fix checksum with unaligned buffer

2022-06-27 Thread Morten Brørup
> From: Emil Berg [mailto:emil.b...@ericsson.com] > Sent: Monday, 27 June 2022 14.51 > > > From: Emil Berg > > Sent: den 27 juni 2022 14:46 > > > > > From: Mattias Rönnblom > > > Sent: den 27 juni 2022 14:28 > > > > > > On 2022-06-23 14:51, Morten Brørup wrote: > > > >> From: Morten Brørup [mailt

RE: [PATCH] net/af_xdp: make compatible with libbpf v0.8.0

2022-06-27 Thread Loftus, Ciara
> > On 6/24/22 13:23, Ciara Loftus wrote: > > libbpf v0.8.0 deprecates the bpf_get_link_xdp_id and bpf_set_link_xdp_fd > > functions. Use meson to detect if libbpf >= v0.7.0 is linked and if so, use > > the recommended replacement functions bpf_xdp_query_id, > bpf_xdp_attach > > and bpf_xdp_detach

Re: [PATCH] net/af_xdp: make compatible with libbpf v0.8.0

2022-06-27 Thread Andrew Rybchenko
On 6/27/22 17:17, Loftus, Ciara wrote: On 6/24/22 13:23, Ciara Loftus wrote: libbpf v0.8.0 deprecates the bpf_get_link_xdp_id and bpf_set_link_xdp_fd functions. Use meson to detect if libbpf >= v0.7.0 is linked and if so, use the recommended replacement functions bpf_xdp_query_id, bpf_xdp_atta

Re: [PATCH] vdpa/sfc: handle sync issue between qemu and vhost-user

2022-06-27 Thread Andrew Rybchenko
When you send a new version, please, don't forget to specify -v on part format and use --in-reply-to with the first mail ID. See contributors guidelines. Also, new version should make it clear what is changed. See below. On 6/27/22 11:49, abhimanyu.sa...@xilinx.com wrote: From: Abhimanyu Saini

RE: [PATCH] net/af_xdp: make compatible with libbpf v0.8.0

2022-06-27 Thread Loftus, Ciara
> > On 6/27/22 17:17, Loftus, Ciara wrote: > >> > >> On 6/24/22 13:23, Ciara Loftus wrote: > >>> libbpf v0.8.0 deprecates the bpf_get_link_xdp_id and > bpf_set_link_xdp_fd > >>> functions. Use meson to detect if libbpf >= v0.7.0 is linked and if so, > >>> use > >>> the recommended replacement fun

Re: [PATCH] examples/distributor: update dynamic configuration

2022-06-27 Thread Hunt, David
Hi Ömer, I've a few comments: On 21/06/2022 21:15, Abdullah Ömer Yamaç wrote: In this patch, * It is possible to switch the running mode of the distributor using the command line argument. * With "-c" parameter, you can run RX and Distributor on the same core. * Without

[PATCH] doc: add event timer expiry drop stat

2022-06-27 Thread Naga Harish K S V
The structure ``rte_event_timer_adapter_stats`` will be extended by adding a new field, ``evtim_drop_count``. This stat will represent the number of times an event timer expiry is dropped by the event timer adapter. Signed-off-by: Naga Harish K S V --- doc/guides/rel_notes/deprecation.rst | 6 ++

Re: [PATCH] examples/distributor: update dynamic configuration

2022-06-27 Thread Omer Yamac
Hi David, Thank you for your review. I have two questions. The first one is about new release. As I remember new DPDK realize will be published in a short time and my previous fix in that release. Therefore, Should I wait for that release to submit patch? The other question is below, On 27.

[PATCH] crypto/qat: fix docsis segmentation fault

2022-06-27 Thread Rebecca Troy
Currently if AES or DES algorithms fail for Docsis test suite, a segmentation fault occurs when cryptodev_qat_autotest is ran. This is due to a duplicate call of EVP_CIPHER_CTX_free for the session context. Ctx is freed firstly in the bpi_cipher_ctx_init function and then again at the end of qat_s

[PATCH v4 0/6] add thread lifetime and attributes API

2022-06-27 Thread Tyler Retzlaff
add rte thread lifetime and attributes api. with these api additions there is now sufficient platform abstracted thread api to remove the use of pthread in the unit tests. v4: * update version.map to show api from series added in 22.11 instead of 22.07. * fix missing parameter name in rte_

[PATCH v4 3/6] eal: add basic rte thread ID equal API

2022-06-27 Thread Tyler Retzlaff
Add rte_thread_equal() that tests if two rte_thread_id are equal. Signed-off-by: Narcisa Vasile Signed-off-by: Tyler Retzlaff Acked-by: Chengwen Feng --- lib/eal/include/rte_thread.h | 19 +++ lib/eal/unix/rte_thread.c| 6 ++ lib/eal/version.map | 1 + lib/ea

[PATCH v4 2/6] eal: add thread lifetime management

2022-06-27 Thread Tyler Retzlaff
The *rte_thread_create()* function can optionally receive an rte_thread_attr_t object that will cause the thread to be created with the affinity and priority described by the attributes object. If no rte_thread_attr_t is passed (parameter is NULL), the default affinity and priority are used. On Wi

[PATCH v4 1/6] eal: add thread attributes

2022-06-27 Thread Tyler Retzlaff
Implement thread attributes for: * thread affinity * thread priority Implement functions for managing thread attributes. Priority is represented through an enum that allows for two levels: * RTE_THREAD_PRIORITY_NORMAL * RTE_THREAD_PRIORITY_REALTIME_CRITICAL Affinity is desc

[PATCH v4 6/6] test/threads: remove unit test use of pthread

2022-06-27 Thread Tyler Retzlaff
now that rte_thread provides thread lifetime functions stop using pthread in unit tests. Signed-off-by: Tyler Retzlaff --- app/test/test_threads.c | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/test/test_threads.c b/app/test/test_threads.c index 3c22cec..e0f18e4 1

[PATCH v4 5/6] test/threads: add tests for thread attributes API

2022-06-27 Thread Tyler Retzlaff
test basic functionality and demonstrate use of following thread attributes api. additionally, test attributes are processed when supplied to rte_thread_create(). * rte_thread_attr_init * rte_thread_attr_set_affinity * rte_thread_attr_get_affinity * rte_thread_attr_set_priority Si

[PATCH v4 4/6] test/threads: add tests for thread lifetime API

2022-06-27 Thread Tyler Retzlaff
test basic functionality and demonstrate use of following thread lifetime api. * rte_thread_create * rte_thread_detach * rte_thread_join Signed-off-by: Narcisa Vasile Signed-off-by: Tyler Retzlaff --- app/test/test_threads.c | 54 +++-- 1

Re: [PATCH v4] net: fix checksum with unaligned buffer

2022-06-27 Thread Mattias Rönnblom
On 2022-06-27 15:22, Morten Brørup wrote: From: Emil Berg [mailto:emil.b...@ericsson.com] Sent: Monday, 27 June 2022 14.51 From: Emil Berg Sent: den 27 juni 2022 14:46 From: Mattias Rönnblom Sent: den 27 juni 2022 14:28 On 2022-06-23 14:51, Morten Brørup wrote: From: Morten Brørup [mailto:

Re: Service core statistics MT safety

2022-06-27 Thread Mattias Rönnblom
On 2022-06-27 19:39, Honnappa Nagarahalli wrote: From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] Sent: Monday, 27 June 2022 13.06 Hi. Is it safe to enable stats on MT safe services? https://github.com/DPDK/dpdk/blob/main/lib/eal/common/rte_service.c#L3 6 6 It seems to me thi

RE: Service core statistics MT safety

2022-06-27 Thread Honnappa Nagarahalli
> > > From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > > Sent: Monday, 27 June 2022 13.06 > > > > Hi. > > > > Is it safe to enable stats on MT safe services? > > > > https://github.com/DPDK/dpdk/blob/main/lib/eal/common/rte_service.c#L3 > > 6 > > 6 > > > > It seems to me this would

[PATCH] raw/ioat: Check for the NULL pointer after calling malloc

2022-06-27 Thread 835703180
From: Shiqi Liu <835703...@qq.com> As the possible failure of the malloc(), the not_checked and checked could be NULL pointer. Therefore, it should be better to check it in order to avoid the dereference of the NULL pointer. Fixes: b7aaf417f93 ("raw/ioat: add bus driver for device scanning autom

RE: Service core statistics MT safety

2022-06-27 Thread Honnappa Nagarahalli
> >> > >>> From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > >>> Sent: Monday, 27 June 2022 13.06 > >>> > >>> Hi. > >>> > >>> Is it safe to enable stats on MT safe services? > >>> > >>> https://github.com/DPDK/dpdk/blob/main/lib/eal/common/rte_service.c# > >>> L3 > >>> 6 > >>> 6 > >>

Re: Service core statistics MT safety

2022-06-27 Thread Mattias Rönnblom
On 2022-06-27 20:19, Honnappa Nagarahalli wrote: > > From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > Sent: Monday, 27 June 2022 13.06 > > Hi. > > Is it safe to enable stats on MT safe services? > > https://protect2.fireeye.com/v1/url?k=31323334-

RE: [PATCH v4] net: fix checksum with unaligned buffer

2022-06-27 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] > Sent: Monday, 27 June 2022 19.23 > > On 2022-06-27 15:22, Morten Brørup wrote: > >> From: Emil Berg [mailto:emil.b...@ericsson.com] > >> Sent: Monday, 27 June 2022 14.51 > >> > >>> From: Emil Berg > >>> Sent: den 27 juni 2022 14:46 > >>> >

[PATCH v2] baseband/turbo_sw: Remove flexran_sdk meson option

2022-06-27 Thread Nicolas Chautru
v2: typo in documentation Hi Thomas, This is change you requested earlier this year. This is targeting 22.11. Basically we no longer pass a specific option but rely on pkgconfig. There is small change to generate the .pc files that Intel will make available by end of year. Still the related chang

[PATCH v2] baseband/turbo_sw: remove Flexran SDK meson option

2022-06-27 Thread Nicolas Chautru
The related dependency to build the PMD based on the SDK libraries is now enabled through pkfconfig. Signed-off-by: Nicolas Chautru --- doc/guides/bbdevs/turbo_sw.rst| 6 -- drivers/baseband/turbo_sw/meson.build | 36 +-- meson_options.txt

RE: [PATCH v4] doc: announce changes in bbdev related to enum extension

2022-06-27 Thread Chautru, Nicolas
Hi Thomas, Kind reminder on this one. Thanks Nic > -Original Message- > From: Chautru, Nicolas > Sent: Friday, June 17, 2022 9:13 AM > To: dev@dpdk.org; tho...@monjalon.net > Cc: t...@redhat.com; Kinsella, Ray ; Richardson, > Bruce ; hemant.agra...@nxp.com; > david.march...@redhat.com; st

RE: Service core statistics MT safety

2022-06-27 Thread Honnappa Nagarahalli
> > > From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > > Sent: Monday, 27 June 2022 13.06 > > > > Hi. > > > > Is it safe to enable stats on MT safe services? > > > > https://protect2.fireeye.com/v1/url?k=31323334-501d5122-313273af- > 4 > > 54

[PATCH v3 0/7] bbdev changes for 22.11

2022-06-27 Thread Nicolas Chautru
v3: update to device status info to also use padded size for the related array. Adding also 2 additionals commits to allow the API struc to expose more information related to queues corner cases/warning as well as an optional rw lock. Hemant, Maxime, this is planned for DPDK 21.11 but would like r

[PATCH v3 1/7] bbdev: allow operation type enum for growth

2022-06-27 Thread Nicolas Chautru
Updating the enum for rte_bbdev_op_type to allow to keep ABI compatible for enum insertion while adding padded maximum value for array need. Removing RTE_BBDEV_OP_TYPE_COUNT and instead exposing RTE_BBDEV_OP_TYPE_PADDED_MAX. Signed-off-by: Nicolas Chautru --- app/test-bbdev/test_bbdev.c | 2

[PATCH v3 2/7] bbdev: add device status info

2022-06-27 Thread Nicolas Chautru
Added device status information, so that the PMD can expose information related to the underlying accelerator device status. Minor order change in structure to fit into padding hole. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc100/rte_acc100_pmd.c | 1 + drivers/baseband/fp

[PATCH v3 3/7] bbdev: add device info on queue topology

2022-06-27 Thread Nicolas Chautru
Adding more options in the API to expose the number of queues exposed and related priority. Signed-off-by: Nicolas Chautru --- lib/bbdev/rte_bbdev.h | 4 1 file changed, 4 insertions(+) diff --git a/lib/bbdev/rte_bbdev.h b/lib/bbdev/rte_bbdev.h index 9b1ffa4..ac941d6 100644 --- a/lib/bbdev

[PATCH v3 4/7] drivers/baseband: update PMDs to expose queue per operation

2022-06-27 Thread Nicolas Chautru
Add support in existing bbdev PMDs for the explicit number of queue and priority for each operation type configured on the device. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc100/rte_acc100_pmd.c | 29 +- drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c

[PATCH v3 6/7] bbdev: add queue related warning and status information

2022-06-27 Thread Nicolas Chautru
This allows to expose more information with regards to any queue related failure and warning which cannot be supported in existing API. Signed-off-by: Nicolas Chautru --- app/test-bbdev/test_bbdev_perf.c | 2 ++ lib/bbdev/rte_bbdev.c| 2 ++ lib/bbdev/rte_bbdev.h| 19 +++

[PATCH v3 5/7] bbdev: add new operation for FFT processing

2022-06-27 Thread Nicolas Chautru
Extension of bbdev operation to support FFT based operations. Signed-off-by: Nicolas Chautru Acked-by: Hemant Agrawal --- doc/guides/prog_guide/bbdev.rst | 130 +++ lib/bbdev/rte_bbdev.c | 11 ++- lib/bbdev/rte_bbdev.h | 76 +

[PATCH v3 7/7] bbdev: add a lock option for enqueue/dequeue operation

2022-06-27 Thread Nicolas Chautru
Locking is not explictly required but can be valuable in case the application cannot guarantee to be thread-safe, or specifically is at risk of using the same queue from multiple threads. This is an option for PMD to use this. Signed-off-by: Nicolas Chautru --- lib/bbdev/rte_bbdev.h | 2 ++ 1 fi

[PATCH v3] doc: add release notes for async vhost dequeue data-path

2022-06-27 Thread Cheng Jiang
Add release notes for asynchronous vhost dequeue data-path. Emphasize that split virtqueue and packed virtqueue are both supported in asynchronous vhost dequeue data-path. Signed-off-by: Cheng Jiang --- v3: code rebased. v2: fixed a full stop missing in the commit message. doc/guides/rel_notes/

[PATCH v2] doc: add event timer expiry drop stat

2022-06-27 Thread Naga Harish K S V
The structure ``rte_event_timer_adapter_stats`` will be extended by adding a new field, ``evtim_drop_count``. This stat will represent the number of times an event_timer expiry event is dropped by the event timer adapter. Signed-off-by: Naga Harish K S V --- v2: * update commit message --- doc/g

[PATCH v1] net/ice: fix memory allocation issue of packet flag

2022-06-27 Thread Yuying Zhang
Current code doesn't allocate memory of lookup element to add packet flag. This patch adds one lookup item in the list to fix this memory issue. Fixes: 8b95092b7f69 ("net/ice/base: fix direction of flow that matches any") Cc: sta...@dpdk.org Signed-off-by: Yuying Zhang --- drivers/net/ice/ice_s

[PATCH v2] vdpa/sfc: handle sync issue between qemu and vhost-user

2022-06-27 Thread abhimanyu.saini
From: Abhimanyu Saini When DPDK app is running in the VF, it sometimes rings the doorbell before dev_config has had a chance to complete and hence it misses the event. As workaround, ring the doorbell when vDPA reports the notify_area to QEMU. Fixes: 630be406dcbf ("vdpa/sfc: get queue notify are

[PATCH v3] net/igc: move the initialization of data path into dev_init

2022-06-27 Thread zhichaox . zeng
From: Zhichao Zeng The upper-layer application usually call the common interface "dev_init" to initialize the data path, but in the igc driver, the initialization of data path is in "igc_rx_init" and "eth_igc_tx_queue_setup", while in other drivers it is in "dev_init". So when upper-layer applica

Re: [PATCH v4] net: fix checksum with unaligned buffer

2022-06-27 Thread Mattias Rönnblom
On 2022-06-27 22:21, Morten Brørup wrote: From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] Sent: Monday, 27 June 2022 19.23 On 2022-06-27 15:22, Morten Brørup wrote: From: Emil Berg [mailto:emil.b...@ericsson.com] Sent: Monday, 27 June 2022 14.51 From: Emil Berg Sent: den 27 juni 2022 14

RE: [PATCH v1] net/ice: fix memory allocation issue of packet flag

2022-06-27 Thread Zhang, Qi Z
> -Original Message- > From: Zhang, Yuying > Sent: Tuesday, June 28, 2022 12:07 PM > To: dev@dpdk.org; Zhang, Qi Z > Cc: Zhang, Yuying ; sta...@dpdk.org > Subject: [PATCH v1] net/ice: fix memory allocation issue of packet flag > > Current code doesn't allocate memory of lookup element

RE: [PATCH] net/iavf: fix issue of VF resetting

2022-06-27 Thread Zhang, Qi Z
> -Original Message- > From: Zhou, YidingX > Sent: Monday, June 27, 2022 3:23 PM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Zhou, YidingX ; Wu, Jingjing > ; Xing, Beilei ; Zhang, Qi Z > > Subject: [PATCH] net/iavf: fix issue of VF resetting > > When the VF is in closed state, the vf_re

Re: Service core statistics MT safety

2022-06-27 Thread Mattias Rönnblom
On 2022-06-28 02:14, Honnappa Nagarahalli wrote: > >> >>> From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] >>> Sent: Monday, 27 June 2022 13.06 >>> >>> Hi. >>> >>> Is it safe to enable stats on MT safe services? >>> >>> https://protect2.fireeye.com/