[PATCH] vhost: fix data-plane access to released vq

2021-12-03 Thread Yuan Wang
From: yuan wang When numa reallocation occurs, numa_realoc() on the control plane will free the old vq. If rte_vhost_dequeue_burst() on the data plane get the vq just before release, then it will access the released vq. We need to put the vq->access_lock into struct virtio_net to ensure that it c

RE: [EXTERNAL] Re: [PATCH v9 9/9] app/test: enable subset of unit tests on Windows

2021-12-03 Thread Tyler Retzlaff
Please don't delay integration of this patch set further to port individual tests. Individual tests can be ported to windows with significantly reduced sensitivity to the churn once the conditional mechanisms are in place. We spend enormous amounts of time continuously rebasing it every time on

[RFC] Cryptodev: use rte_crypto_vec, group big-endian constraints

2021-12-03 Thread Kusztal, ArkadiuszX
Hi, since DPDK 21.11 is out, we should start discussion to make asymmetric API stable. - Struct rte_crypto_vec vs struct rte_crypto_param_t We have two almost identical functionally structs, one in _sym.h another in asym.h so we probably should pick one of them. "rte_crypto_vec" ad

[RFC] cryptodev: asymmetric crypto random number source

2021-12-03 Thread Kusztal, ArkadiuszX
ECDSA op: rte_crypto_param k; /**< The ECDSA per-message secret number, which is an integer * in the interval (1, n-1) */ DSA op: No 'k'. This one I think have described some time ago: Only PMD that verifies ECDSA is OCTEON which apparent

RE: [PATCH v1] gpudev: return EINVAL if invalid input pointer for free and unregister

2021-12-03 Thread Morten Brørup
> From: Morten Brørup [mailto:m...@smartsharesystems.com] > Sent: Thursday, 2 December 2021 14.56 > > > From: Ananyev, Konstantin [mailto:konstantin.anan...@intel.com] > > Sent: Thursday, 2 December 2021 14.01 > > > > > > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > > > Sent: Thursday, 2

RE: [dpdk-dev] [PATCH v3] app/testpmd: fix l4 sw csum over multi segments

2021-12-03 Thread Li, Xiaoyun
Hi > -Original Message- > From: Olivier Matz > Sent: Friday, October 29, 2021 09:29 > To: Morten Brørup > Cc: Yigit, Ferruh ; Li, Xiaoyun > ; > Ananyev, Konstantin ; > step...@networkplumber.org; dev@dpdk.org; sta...@dpdk.org; > Medvedkin, Vladimir > Subject: Re: [dpdk-dev] [PATCH v3]

[PATCH v4 0/2] Add functions to calculate UDP/TCP cksum in mbuf

2021-12-03 Thread Xiaoyun Li
Added functions to calculate UDP/TCP checksum for packets which may be over multi-segments and fix the checksum issue with testpmd csum forwarding mode. Xiaoyun Li (2): net: add functions to calculate UDP/TCP cksum in mbuf testpmd: fix l4 sw csum over multi segments --- v4: * Called rte_raw_

[PATCH v4 1/2] net: add functions to calculate UDP/TCP cksum in mbuf

2021-12-03 Thread Xiaoyun Li
Add functions to call rte_raw_cksum_mbuf() to calculate IPv4/6 UDP/TCP checksum in mbuf which can be over multi-segments. Signed-off-by: Xiaoyun Li --- doc/guides/rel_notes/release_22_03.rst | 10 ++ lib/net/rte_ip.h | 186 + lib/net/version.map

[PATCH v4 2/2] testpmd: fix l4 sw csum over multi segments

2021-12-03 Thread Xiaoyun Li
In csum forwarding mode, software UDP/TCP csum calculation only takes the first segment into account while using the whole packet length so the calculation will read invalid memory region with multi-segments packets and will get wrong value. This patch fixes this issue. Signed-off-by: Xiaoyun Li

Re: [PATCH v2 1/2] devtools: don't include headline "fix" in backports

2021-12-03 Thread Luca Boccassi
On Fri, 2021-12-03 at 08:54 +0100, christian.ehrha...@canonical.com wrote: > From: Christian Ehrhardt > > It was important in the past to select anything with "fix" in the > headline, but recently more often created false positives and work > to sort tihngs out than identifying many helpful patch

Re: [PATCH v2 2/2] devtools: report commit id on partial fixes

2021-12-03 Thread Luca Boccassi
On Fri, 2021-12-03 at 08:54 +0100, christian.ehrha...@canonical.com wrote: > From: Christian Ehrhardt > > The candidate list for backports lists partial fixes like: >  "(21.02 (partially fixed in 21.08))" > That is useful to identify fixes menat for later releases, but > indirectly applying to ol

Re: [PATCH v2 1/2] devtools: don't include headline "fix" in backports

2021-12-03 Thread Kevin Traynor
On 03/12/2021 07:54, christian.ehrha...@canonical.com wrote: From: Christian Ehrhardt It was important in the past to select anything with "fix" in the headline, but recently more often created false positives and work to sort tihngs out than identifying many helpful patches. The community and

Re: [PATCH v2 2/2] devtools: report commit id on partial fixes

2021-12-03 Thread Kevin Traynor
On 03/12/2021 07:54, christian.ehrha...@canonical.com wrote: From: Christian Ehrhardt The candidate list for backports lists partial fixes like: "(21.02 (partially fixed in 21.08))" That is useful to identify fixes menat for later releases, but indirectly applying to older ones as well. Whil

[PATCH] pipeline: fix annotation checks

2021-12-03 Thread Cristian Dumitrescu
The checks for the table-only and default-only annotations were incorrect, as they were using the pipeline action ID instead of the table action ID for retrieving the table action info. These checks are now corrected and pushed into the internal table_entry_check() function. Fixes: cd79e0205824 ("

Re: [PATCH v3] kni: fix ioctl signature

2021-12-03 Thread Stephen Hemminger
On Fri, 3 Dec 2021 08:19:07 +0100 Markus Theil wrote: > From: Markus Theil > > Fix kni's ioctl signature to correctly match the kernel's > structs. This shaves off the (void*) casts and uses struct file* > instead of struct inode*. With the correct signature, control flow > integrity checkers

[PATCH 1/2] common/cnxk: get head-tail of Rx and Tx queues

2021-12-03 Thread Rahul Bhansali
Adds roc APIs roc_nix_cq_head_tail_get, roc_nix_sq_head_tail_get to get head-tail of receive and transmit queue respectively. Signed-off-by: Rahul Bhansali --- drivers/common/cnxk/roc_nix.h | 4 +++ drivers/common/cnxk/roc_nix_queue.c | 53 + drivers/common/cnx

[PATCH 2/2] net/cnxk: ethdev Rx/Tx queue status callbacks

2021-12-03 Thread Rahul Bhansali
Provides ethdev callback support of rx_queue_count, rx_descriptor_status and tx_descriptor_status. Signed-off-by: Rahul Bhansali --- drivers/net/cnxk/cnxk_ethdev.c | 3 ++ drivers/net/cnxk/cnxk_ethdev.h | 5 +++ drivers/net/cnxk/cnxk_ethdev_ops.c | 60 ++ 3

Re: [dpdk-dev] Question Regarding FIPS Validation in DPDK

2021-12-03 Thread Brandon Lo
On Thu, Dec 2, 2021 at 9:45 AM Mcnamara, John wrote: > > At the time the dpdk-fips_validation tool was written the test vectors > > weren't available in JSON format, and, to the best of my knowledge, there > > was a format specification (which is why there is different parsing for > > different al

[PATCH 0/7] ixgbe SFP handling fixes

2021-12-03 Thread Stephen Douthit
Hello all, We have several platforms based on Intel's C3000 series of SoCs that have integrated ixgbe devices (X550EM) operating in the "Native SFI" mode (the 0x15c4 device ID). The first five patches in the series all fix issues relating to the ID and setup of SFPs. Patch 6 allows slow to boot

[PATCH 1/7] net/ixgbe: Fix ixgbe_is_sfp() to return valid result for X550EM_a devs

2021-12-03 Thread Stephen Douthit
Currently all X500EM* MAC types fallthrough to the default case and get reported as non-SFP regardless of media type, which isn't correct. Fixes: 0790adeb567 ("ixgbe/base: support X550em_a device") Cc: sta...@dpdk.org Signed-off-by: Stephen Douthit --- drivers/net/ixgbe/ixgbe_ethdev.c | 14

[PATCH 2/7] net/ixgbe: Add ixgbe_check_sfp_cage() for testing state of PRSNT# signal

2021-12-03 Thread Stephen Douthit
Refactor the SFP check code from ixgbe_check_mac_link_generic into its own function. Note that the SFP present status was inverted for the X550EM family of devices, where SDP0 represents the active low PRSNT# signal from the cage. Call the new function in ixgbe_identify_module_generic() to short

[PATCH 3/7] net/ixgbe: Check that SFF-8472 soft rate select is supported before write

2021-12-03 Thread Stephen Douthit
Make sure an SFP is really a SFF-8472 device that supports the optional soft rate select feature before just blindly poking those I2C registers. Skip all I2C traffic if we know there's no SFP. Fixes: f3430431aba ("ixgbe/base: add SFP+ dual-speed support") Cc: sta...@dpdk.org Signed-off-by: Steph

[PATCH 4/7] net/ixgbe: Run 82599 link status workaround only on affected devices

2021-12-03 Thread Stephen Douthit
1ca05831b9b added a check that SDP3 (used as a TX_DISABLE output to the SFP cage on these cards) is not asserted to avoid incorrectly reporting link up when the SFP's laser is turned off. ff8162cb957 limited this workaround to fiber ports Refactor this so it's: * Not open coded in ixgbe_dev_link

[PATCH 5/7] net/ixgbe: Fix SFP detection and linking on hotplug

2021-12-03 Thread Stephen Douthit
Currently the ixgbe driver does not ID any SFP except for the first one plugged in. This can lead to no-link, or incorrect speed conditions. For example: * If link is initially established with a 1G SFP, and later a 1G/10G multispeed part is later installed, then the MAC link setup functions are

[PATCH 6/7] net/ixgbe: Retry SFP ID read field to handle misbehaving SFPs

2021-12-03 Thread Stephen Douthit
Some XGS-PON SFPs have been observed ACKing I2C reads and return uninitialized garbage while their uC boots. This can lead to the SFP ID code marking an otherwise working SFP module as unsupported if a bogus ID value is read while it's internal PHY/microcontroller is still booting. Retry the ID r

[PATCH 7/7] net/ixgbe: Treat 1G Cu SFPs as 1G SX on the X550 devices

2021-12-03 Thread Stephen Douthit
1G Cu SFPs are not officially supported on the X552/X553 family of devices but treat them as 1G SX modules since they usually work. Print a warning though since support isn't validated, similar to what already happens for other unofficially supported SFPs enabled via the allow_unsupported_sfps par

Re: [PATCH v11 0/9] app/test: enable subset of tests on Windows

2021-12-03 Thread Kadam, Pallavi
On 12/2/2021 4:06 PM, Jie Zhou wrote: This patchset is to enable a subset of unit tests on windows. It mainly includes: - Replace POSIX specific codes - Add test stubs for not supported ones on Windows - Fix some lib and tests per failures investigation - Replace .sh script with .py script for

Re: [PATCH v10 2/9] app/test: remove POSIX-specific code

2021-12-03 Thread Dmitry Kozlyuk
2021-12-01 10:43 (UTC-0800), Jie Zhou: > - Remove header inclusion of netinet/in.h and terminos.h Typo: "termios.h". > - Include rte_os_shim.h > - Replace sleep and usleep with rte_delay_us_sleep Instead of all the above I'd say: "Replace POSIX-specific code with DPDK equivalents or conditional

Re: [PATCH v11 3/9] app/test: fix incorrect errno variable

2021-12-03 Thread Dmitry Kozlyuk
2021-12-02 16:06 (UTC-0800), Jie Zhou: > Fix incorrect errno variable used in memory autotest. > Use rte_errno instead. > > Fixes: 086d426406bd ("app/test: fix memory autotests on FreeBSD") > Cc: bruce.richard...@intel.com > > Signed-off-by: Jie Zhou Acked-by: Dmitry Kozlyuk > --- > app/test

Re: [PATCH v11 4/9] app/test: skip interrupt tests on Windows

2021-12-03 Thread Dmitry Kozlyuk
2021-12-02 16:06 (UTC-0800), Jie Zhou: > Even though test_interrupts.c can compile on Windows, skip interrupt > tests for now since majority of eal_interrupt on Windows are stubs. > Will remove the skip after interrupt being fully enabled on Windows. > > Signed-off-by: Jie Zhou Acked-by: Dmitry

Re: [PATCH v11 8/9] app/test: replace .sh script with .py script

2021-12-03 Thread Dmitry Kozlyuk
2021-12-02 16:06 (UTC-0800), Jie Zhou: > - Add python script to check if system supports hugepages > - Remove corresponding .sh script > - Replace calling of .sh with corresponding .py in meson.build > > Signed-off-by: Jie Zhou Acked-by: Dmitry Kozlyuk

Re: [PATCH v11 7/9] app/test: remove two alarm_autotest cases

2021-12-03 Thread Dmitry Kozlyuk
2021-12-02 16:06 (UTC-0800), Jie Zhou: > Remove two alarm_autotest test cases which do bogus range check > on Windows. > > Signed-off-by: Jie Zhou Acked-by: Dmitry Kozlyuk Overflow check in rte_eal_alarm_set() for all systems should be revised and corrected if need be.

Re: [PATCH v11 5/9] app/test: skip two logs_autotest cases on Windows

2021-12-03 Thread Dmitry Kozlyuk
2021-12-02 16:06 (UTC-0800), Jie Zhou: > DPDK logs_autotest on Windows failed at "dynamic log types" tests. > The failures are on 2 test cases for rte_log_set_level_regexp API, > due to regular expression is not supported on Windows in DPDK yet > and regcomp/regexec are just stubs on Windows (in re

Re: [PATCH v11 6/9] app/test: differentiate a strerror on different OS

2021-12-03 Thread Dmitry Kozlyuk
2021-12-02 16:06 (UTC-0800), Jie Zhou: > On Windows, strerror returns just "Unknown error" for errnum greater > than MAX_ERRNO, while linux and freebsd returns "Unknown error ", > which is the current expectation for errno_autotest. Differentiate > the error string on Windows to remove a "duplicate