> -Original Message-
> From: Maxime Coquelin
> Sent: Tuesday, September 20, 2022 10:02 PM
> To: Moessbauer, Felix (T CED SES-DE) ;
> dev@dpdk.org
> Cc: Schild, Henning (T CED SES-DE) ; Kiszka, Jan
> (T CED) ; tho...@monjalon.net; Marcelo Tosatti
>
> Subject: Re: [PATCH v6 2/2] Add l2refle
Dear Olivier, Thomas and DPDK PMD developers:
In November 2020, the pool pointer in the mbuf structure was moved to the first
cache line [1].
[1]:
http://git.dpdk.org/dpdk/commit/lib/librte_mbuf/rte_mbuf_core.h?id=4630290af46ed44a58515067b6d2add9c044252a
That patch also made rte_mbuf_to_baddr(
Fixes the following build failure with gcc 5.4.0 because
of uninitialized variables:
[..]
examples/pipeline/cli.c:1801:10: error: 'idx' may be used
uninitialized in this function [-Werror=maybe-uninitialized]
[..]
examples/pipeline/cli.c:1916:10: error: 'idx' may be used
uninitialized in this
On 9/21/22 22:12, fengchengwen wrote:
On 2022/9/20 7:02, Chas Williams wrote:
On 9/19/22 10:07, Konstantin Ananyev wrote:
On 9/16/22 22:35, fengchengwen wrote:
Hi Chas,
On 2022/9/15 0:59, Chas Williams wrote:
On 9/13/22 20:46, fengchengwen wrote:
The main problem is hard to desig
Thanks for making the changes!
Signed-off-by: 3ch...@gmail.com
On 9/21/22 21:33, Huisong Li wrote:
This patch adds link speeds configuration.
---
-v3: add an intersection of the supported speeds to check 'link_speeds'.
-v2: resend due to CI compiling failure.
Signed-off-by: Huisong Li
--
It's probably cleaner to just move the bond_ethdev_8023ad_flow_set
until after the device start. For the reader, they don't need to
understand why you might not have started the device earlier.
On 9/24/22 10:19, Usman Tanveer wrote:
when dedicated queues are enable with bonding mode 4 (mlx5), th
25/09/2022 11:20, Ali Alnubani:
> Fixes the following build failure with gcc 5.4.0 because
> of uninitialized variables:
>
> [..]
> examples/pipeline/cli.c:1801:10: error: 'idx' may be used
> uninitialized in this function [-Werror=maybe-uninitialized]
> [..]
> examples/pipeline/cli.c:1916:10: e
Hi Qiming,
Thanks for your information.
From the log of i226V, you can see that the string "Requested device
:03:00.0 cannot be used" appeared at init 03:00.0.
Then its execution stopped at "EAL: Probe PCI driver: net_igc (8086:125c)
device: :06:00.0 (socket 0)" with no subsequent actio
The change to do argument process before EAL init broke
the support of list-interfaces option. Fix by setting flag
and doing list-interfaces later.
Fixes: a8dde09f97df ("app/dumpcap: allow help/version without primary process")
Cc: konce...@gmail.com
Signed-off-by: Stephen Hemminger
---
app/dump
Protocol type based buffer split consists of splitting a received packet
into several separate segments based on the packet content. It is useful
in some scenarios, such as GPU acceleration. The splitting will help to
enable true zero copy and hence improve the performance significantly.
This patc
Add a new ethdev API to retrieve supported protocol headers
of a PMD, which helps to configure protocol header based buffer split.
Signed-off-by: Yuan Wang
Signed-off-by: Xuan Ding
Signed-off-by: Wenxuan Wu
Reviewed-by: Andrew Rybchenko
---
doc/guides/rel_notes/release_22_11.rst | 5
li
Currently, Rx buffer split supports length based split. With Rx queue
offload RTE_ETH_RX_OFFLOAD_BUFFER_SPLIT enabled and Rx packet segment
configured, PMD will be able to split the received packets into
multiple segments.
However, length based buffer split is not suitable for NICs that do split
b
Add command line parameter:
--rxhdrs=eth,[eth-ipv4,eth-ipv4-udp]
Set the protocol_hdr of segments to scatter packets on receiving if
split feature is engaged. And the queues with BUFFER_SPLIT flag.
Add interactive mode command:
testpmd>set rxhdrs eth,eth-ipv4,eth-ipv4-udp
(protocol sequence shoul
This patch adds support for protocol based buffer split in normal Rx
data paths. When the Rx queue is configured with specific protocol type,
packets received will be directly split into protocol header and
payload parts limitation of pmd. And the two parts will be
put into different mempools.
Cur
Add support to start or stop a particular queue
that is associated with the adapter.
Start function enables the Tx adapter to start enqueueing
packets to the Tx queue.
Stop function stops the Tx adapter from enqueueing any
packets to the Tx queue. The stop API also frees any packets
that may have
Added testcase for rte_event_eth_tx_adapter_queue_start()
and rte_event_eth_tx_adapter_queue_stop() APIs.
Signed-off-by: Naga Harish K S V
---
app/test/test_event_eth_tx_adapter.c | 86
1 file changed, 86 insertions(+)
diff --git a/app/test/test_event_eth_tx_adapter
Hi Min,
> -Original Message-
> From: Min Zhou
> Sent: Monday, August 29, 2022 4:29 PM
> To: david.march...@redhat.com; maxime.coque...@redhat.com; Xia, Chenbo
> ; zhou...@loongson.cn
> Cc: dev@dpdk.org; maob...@loongson.cn
> Subject: [PATCH v2] vhost: fix build
>
> On CentOS 8 or Debian
Hi Chenbo,
On Mon, 26 Sep 2022, 10:57, Xia, Chenbo wrote:
Hi Min,
-Original Message-
From: Min Zhou
Sent: Monday, August 29, 2022 4:29 PM
To: david.march...@redhat.com; maxime.coque...@redhat.com; Xia, Chenbo
; zhou...@loongson.cn
Cc: dev@dpdk.org; maob...@loongson.cn
Subject: [PATCH
This patch is to fix the tunnel TSO not enabling issue, simplify
the logic of calculating 'Tx Buffer Size' of data descriptor with IPSec
and fix handling that the mbuf size exceeds the TX descriptor
hardware limit(1B-16KB) which causes malicious behavior to the NIC.
Fixes: 1e728b01120c ("net/iavf:
Hi Thomas,
Did you get a chance to review this patch?
Without this patch, the periodic event timer tests for SW timer adapter hangs.
-Harish
> -Original Message-
> From: Jerin Jacob
> Sent: Thursday, September 15, 2022 12:12 PM
> To: Naga Harish K, S V ; Thomas Monjalon
>
> Cc: jer.
> -Original Message-
> From: Ding, Xuan
> Sent: Tuesday, September 6, 2022 1:22 PM
> To: maxime.coque...@redhat.com; Xia, Chenbo
> Cc: dev@dpdk.org; Hu, Jiayu ; He, Xingguang
> ; Yang, YvonneX ; Jiang,
> Cheng1 ; Wang, YuanX ; Ma,
> WenwuX ; Ding, Xuan
> Subject: [PATCH v2 1/2] vhost: in
Hi Chenbo,
Thanks for your comments, please see replies inline.
> -Original Message-
> From: Xia, Chenbo
> Sent: Monday, September 26, 2022 2:07 PM
> To: Ding, Xuan ; maxime.coque...@redhat.com
> Cc: dev@dpdk.org; Hu, Jiayu ; He, Xingguang
> ; Yang, YvonneX ;
> Jiang, Cheng1 ; Wang, Yuan
> -Original Message-
> From: Wang, YuanX
> Sent: Wednesday, August 24, 2022 12:36 AM
> To: maxime.coque...@redhat.com; Xia, Chenbo ;
> dev@dpdk.org
> Cc: Hu, Jiayu ; He, Xingguang ;
> Jiang, Cheng1 ; Wang, YuanX ;
> Ma, WenwuX
> Subject: [PATCH v3] net/vhost: support asynchronous data pat
> -Original Message-
> From: Pei, Andy
> Sent: Friday, September 23, 2022 10:33 AM
> To: dev@dpdk.org
> Cc: Xia, Chenbo ; maxime.coque...@redhat.com
> Subject: [PATCH v2] vhost: use dedicated variable for vhost message result
> code
>
> Currently in function vhost_user_msg_handler, variab
24 matches
Mail list logo