Hi Sivaprasa,
Some comments inline.
/Huisong
在 2024/8/26 21:06, Sivaprasad Tummala 写道:
This patch introduces a comprehensive refactor to the core power
management library. The primary focus is on improving modularity
and organization by relocating specific driver implementations
from the 'lib/
Hi Rajesh,
Please clarify what do you mean by “bihash”? Bidirectional? Bounded index?
As for concurrent lookup/updates, yes, DPDK hash table supports
multi-process/multi-thread, please see the documentation:
https://doc.dpdk.org/guides/prog_guide/hash_lib.html#multi-process-support
From: rajes
https://bugs.dpdk.org/show_bug.cgi?id=1528
Bug ID: 1528
Summary: Port MTU update test suite to DTS
Product: DPDK
Version: unspecified
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: normal
Pr
On Fri, Aug 23, 2024 at 09:56:39AM +, Soumyadeep Hore wrote:
> From: Yogesh Bhosale
>
> Firmware was giving a number for the MSIX vectors that was
> way too big and obviously not right. Because of the wrong
> format specifier, this big number ended up looking like a
> tiny negative number in
On 8/26/2024 11:38 PM, lon...@linuxonhyperv.com wrote:
> From: Long Li
>
> The driver has been verified on Linux arm64. Enable this build option and
> add a missing header file for arm64.
>
> Signed-off-by: Long Li
>
Hi Long,
I don't see this patch in the mail list and patchwork, it can be be
From: Long Li
The driver has been verified on Linux arm64. Enable this build option and
add a missing header file for arm64.
Signed-off-by: Long Li
---
drivers/net/mana/meson.build | 4 ++--
drivers/net/mana/mp.c| 1 +
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/driv
Hi All,
Can we get some reply.
Thanks
Rajesh
On Thu, Aug 22, 2024 at 9:32 PM Ferruh Yigit wrote:
> On 8/22/2024 8:51 AM, rajesh goel wrote:
> > Hi All,
> > Need info if DPDK hash library supports bihash table where for multi-
> > thread and multi-process we can update/del/lookup entries per buc
Hello,
On Tue, Aug 27, 2024 at 12:01 PM Ferruh Yigit wrote:
>
> On 8/26/2024 11:38 PM, lon...@linuxonhyperv.com wrote:
> > From: Long Li
> >
> > The driver has been verified on Linux arm64. Enable this build option and
> > add a missing header file for arm64.
> >
> > Signed-off-by: Long Li
> >
Hi Sivaprasad,
Suggest to split this patch into two patches for easiler to review:
patch-1: abstract a file for uncore dvfs core level, namely, the
rte_power_uncore_ops.c you did.
patch-2: move and rename, lib/power/power_intel_uncore.c =>
drivers/power/intel_uncore/intel_uncore.c
patch[1/4]
On 8/27/2024 4:11 AM, Rushil Gupta wrote:
> On Fri, Aug 9, 2024 at 11:49 AM Tathagat Priyadarshi
> wrote:
>>
>> The patch intends on adding support for TSO in DQO RDA format.
>>
>> Signed-off-by: Tathagat Priyadarshi
>> Signed-off-by: Varun Lakkur Ambaji Rao
>
> Acked-by: Rushil Gupta
>
Appli
On 8/26/2024 11:38 PM, lon...@linuxonhyperv.com wrote:
> From: Long Li
>
> The driver has been verified on Linux arm64. Enable this build option and
> add a missing header file for arm64.
>
> Signed-off-by: Long Li
>
Applied to dpdk-next-net/main, thanks.
As core density continues to increase, chiplet-based
core packing has become a key trend. In AMD SoC EPYC
architectures, core complexes within the same chiplet
share a Last-Level Cache (LLC). By packing logical cores
within the same LLC, we can enhance pipeline processing
stages due to reduced late
Introduce lcore functions which operates on Last Level Cache for
core complexes or chiplet cores. On non chiplet core complexes,
the function will iterate over all the available dpdk lcores.
Functions added:
- rte_get_llc_first_lcores
- rte_get_llc_lcore
- rte_get_llc_n_lcore
Signed-off-by: Vi
add RTE_LCORE_FOREACH for dpdk lcore sharing the Last Level Cache.
For core complexes with shared LLC, the macro iterates for same llc
lcores. For cores within single LLC, the macro iterates over all
availble lcores.
MACRO added:
- RTE_LCORE_FOREACH_LLC_FIRST
- RTE_LCORE_FOREACH_LLC_FIRST_WORKER
On 8/21/2024 8:25 PM, Stephen Hemminger wrote:
Caution: This message originated from an External Source. Use proper caution
when opening attachments, clicking links, or responding.
On Wed, 21 Aug 2024 20:08:55 +0530
Vipin Varghese wrote:
diff --git a/app/test-pmd/macswap_sse.h b/app/test-p
The RISC-V Zbc extension adds instructions for carry-less multiplication
we can use to implement CRC in hardware. This patch set contains two new
implementations:
- one in lib/hash/rte_crc_riscv64.h that uses a Barrett reduction to
implement the four rte_hash_crc_* functions
- one in lib/net/net
The RISC-V Zbc extension adds carry-less multiply instructions we can
use to implement more efficient CRC hashing algorithms.
The RISC-V C api defines architecture extension test macros
https://github.com/riscv-non-isa/riscv-c-api-doc/blob/main/riscv-c-api.md#architecture-extension-test-macros
The
Using carryless multiply instructions from RISC-V's Zbc extension,
implement a Barrett reduction that calculates CRC-32C checksums.
Based on the approach described by Intel's whitepaper on "Fast CRC
Computation for Generic Polynomials Using PCLMULQDQ Instruction", which
is also described here
(htt
Using carryless multiply instructions (clmul) from RISC-V's Zbc
extension, implement CRC-32 and CRC-16 calculations on buffers.
Based on the approach described in Intel's whitepaper on "Fast CRC
Computation for Generic Polynomails Using PCLMULQDQ Instructions", we
perform repeated folds-by-1 whils
A new cross-compilation target that has extensions that DPDK uses and
QEMU supports. Initially, this is just the Zbc extension for hardware
CRC support.
Signed-off-by: Daniel Gregory
---
config/riscv/meson.build| 3 ++-
config/riscv/riscv64_qemu_linux_gcc | 1
When the RISC-V Zbc (carryless multiplication) extension is present, an
implementation of CRC hashing using hardware instructions is available.
Use it rather than jhash.
Signed-off-by: Daniel Gregory
---
examples/l3fwd/l3fwd_em.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
When the RISC-V Zbc (carryless multiplication) extension is present, an
implementation of CRC hashing using hardware instructions is available.
Use it rather than jhash.
Signed-off-by: Daniel Gregory
---
lib/ip_frag/ip_frag_internal.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
When the RISC-V Zbc (carryless multiplication) extension is present, an
implementation of CRC hashing using hardware instructions is available.
Use it rather than jhash.
Signed-off-by: Daniel Gregory
---
lib/hash/rte_cuckoo_hash.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lib/hash/r
When the RISC-V Zbc (carryless multiplication) extension is present, an
implementation of CRC hashing using hardware instructions is available.
Use it rather than jhash.
Signed-off-by: Daniel Gregory
---
examples/l3fwd-power/main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --gi
When the RISC-V Zbc (carryless multiplication) extension is present, an
implementation of CRC hashing using hardware instructions is available.
Use it rather than jhash.
Signed-off-by: Daniel Gregory
---
lib/member/rte_member.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš
wrote:
> The device_error_handling_mode of testpmd port may not be present, e.g.
> in VM ports.
>
> Fixes: 61d5bc9bf974 ("dts: add port info command to testpmd shell")
>
> Signed-off-by: Juraj Linkeš
>
Reviewed-by: Dean Marx
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš
wrote:
> Regular Python enumerations create only one instance for members with
> the same value, such as:
> class MyEnum(Enum):
> foo = 1
> bar = 1
>
> MyEnum.foo and MyEnum.bar are aliases that return the same instance.
>
> DTS needs to retur
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš
wrote:
> diff --git a/dts/framework/testbed_model/capability.py
> b/dts/framework/testbed_model/capability.py
> index 8899f07f76..9a79e6ebb3 100644
> --- a/dts/framework/testbed_model/capability.py
> +++ b/dts/framework/testbed_model/capability.py
>
From: Jeremy Spewock
v8:
* update test suite to use newly submitted capabilities series
* split the MTU update patch into its own series.
* now that the --max-pkt-len bug is fixed on mlx in 24.07, no longer
need to set MTU directly so this is also removed.
Jeremy Spewock (1):
dts: ad
From: Jeremy Spewock
Some NICs tested in DPDK allow for the scattering of packets without an
offload and others enforce that you enable the scattered_rx offload in
testpmd. The current version of the suite for testing support of
scattering packets only tests the case where the NIC supports testin
On Tue, 27 Aug 2024 20:40:13 +0530
Vipin Varghese wrote:
> + "ls -d /sys/bus/cpu/devices/cpu%u/cache/index[0-9] | sort -r
> | grep -m1 index[0-9] | awk -F '[x]' '{print $2}' "
NAK
Running shell commands from EAL is non-portable and likely to be flagged by
security scanning tools.
On Tue, 27 Aug 2024 21:02:00 +0530
"Varghese, Vipin" wrote:
> On 8/21/2024 8:25 PM, Stephen Hemminger wrote:
> > Caution: This message originated from an External Source. Use proper
> > caution when opening attachments, clicking links, or responding.
> >
> >
> > On Wed, 21 Aug 2024 20:08:55 +053
Hi Mattias,
I will update patch tomorrow with updated suggestion from Pravin, If I don’t
hear from you I guess you are okay?
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš
wrote:
>
> The device_error_handling_mode of testpmd port may not be present, e.g.
> in VM ports.
>
> Fixes: 61d5bc9bf974 ("dts: add port info command to testpmd shell")
>
> Signed-off-by: Juraj Linkeš
> ---
Reviewed-by: Nicholas Pratte
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš
wrote:
>
> Regular Python enumerations create only one instance for members with
> the same value, such as:
> class MyEnum(Enum):
> foo = 1
> bar = 1
>
> MyEnum.foo and MyEnum.bar are aliases that return the same instance.
>
> DTS needs to retu
> -unsigned int rte_get_next_lcore(unsigned int i, int skip_main, int wrap)
> +#define LCORE_GET_LLC \
> + "ls -d /sys/bus/cpu/devices/cpu%u/cache/index[0-9] | sort -r
> | grep -m1 index[0-9] | awk -F '[x]' '{print $2}' "
>
This won't work for some SOCs.
How to ensure the index yo
On 2024-08-27 17:10, Vipin Varghese wrote:
As core density continues to increase, chiplet-based
core packing has become a key trend. In AMD SoC EPYC
architectures, core complexes within the same chiplet
share a Last-Level Cache (LLC). By packing logical cores
within the same LLC, we can enhance p
v2: Actually several functions can be removed from bbdev version map
since they are inline and hence ABI versionning is not relevant.
I checked with other lib (cryptodev/ethdev) and the same guideline
is followed, with inline functions not part of version.map. Similarly
the script as part of CICD d
A number of inline functions should not be in the
version map since ABI versionning would be irrelevant.
Signed-off-by: Nicolas Chautru
---
lib/bbdev/rte_bbdev.h| 1 -
lib/bbdev/rte_bbdev_op.h | 2 --
lib/bbdev/version.map| 24 +---
3 files changed, 1 insertion(+),
A number of inline functions should not be in the
version map since ABI versioning would be irrelevant.
Signed-off-by: Nicolas Chautru
---
lib/bbdev/rte_bbdev.h| 1 -
lib/bbdev/rte_bbdev_op.h | 2 --
lib/bbdev/version.map| 24 +---
3 files changed, 1 insertion(+), 2
v3: typo fixes.
v2: Actually several functions can be removed from bbdev version map
since they are inline and hence ABI versionning is not relevant.
I checked with other lib (cryptodev/ethdev) and the same guideline is
followed, with inline functions not part of version.map. Similarly the
script
> > Hi Long,
> >
> > I don't see this patch in the mail list and patchwork, it can be
> > because of the email address it has been sent, fyi.
>
> The mail was waiting in the moderation queue.
> Long, please fix your send-email setup, or send with a mail address registered
> to the dev@ ml.
I thin
The "Dynamic Device Personalization" package is loaded at initialization
time by the driver, but the specific package file loaded depends upon
what package file is found first by searching through a hard-coded list
of firmware paths.
To enable greater control over the package loading, this commit
The "Dynamic Device Personalization" package is loaded at initialization
time by the driver, but the specific package file loaded depends upon
what package file is found first by searching through a hard-coded list
of firmware paths.
To enable greater control over the package loading, this commit
On Wed, Aug 28, 2024 at 1:59 AM Long Li wrote:
> > The mail was waiting in the moderation queue.
> > Long, please fix your send-email setup, or send with a mail address
> > registered
> > to the dev@ ml.
>
> I think the patch has made it to patchwork:
> https://patchwork.dpdk.org/project/dpdk/pat
Thanks for the reply.
Bihash I mean bounded index what Vpp supports.
Iam looking for the bucket level lock support. Currently Iam using hash
table shared by multiple process or multiple core/threads. So I have to
take the write lock by single core and then read lock by multiple cores to
read the
46 matches
Mail list logo