>
> 07/07/2019 07:41, Liron Himi:
> > From: Akhil Goyal
> > > This patch fixes the missed "uint8_t *" to "const uint8_t *" xform key
> > > data type change for mvsam driver.
> > >
> > > Fixes: f3390532cf6a ("cryptodev: make xform key pointer constant")
> > >
> > > Signed-off-by: Fan Zhang
> >
A vhost-user-blk example that support inflight feature. It uses the
new APIs that introduced in the first patch, so It can show how there
APIs work to support inflight feature.
Signed-off-by: JinYu
---
V1 - add the case.
---
examples/vhost_blk/Makefile | 67 +++
examples/vhost_blk/blk
This patch introduces two new messages VHOST_USER_GET_INFLIGHT_FD
and VHOST_USER_SET_INFLIGHT_FD to support transferring a shared
buffer between qemu and backend.
Firstly, qemu uses VHOST_USER_GET_INFLIGHT_FD to get the
shared buffer from backend. Then qemu should send it back
through VHOST_USER_S
This patches series introduces two new messages VHOST_USER_GET_INFLIGHT_FD
and VHOST_USER_SET_INFLIGHT_FD to support transferring a shared
buffer between qemu and backend.
This shared buffer is used to process inflight I/O when backend
reconnect.
The example show how these new APIs work.
JinYu (
Hi,
> -Original Message-
> From: dev On Behalf Of Thomas Monjalon
> Sent: Monday, July 8, 2019 10:18 AM
> To: Matan Azrad ; Shahaf Shuler
> ; Yongseok Koh ; Slava
> Ovsiienko
> Cc: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH] net/mlx: allow build only on Linux
>
> Currently mlx4/mlx5 supp
On 08.07.2019 20:13, Marvin Liu wrote:
> In fast enqueue function, will first check whether descriptors are
> cache aligned. Fast enqueue function will check prerequisites in the
> beginning. Fast enqueue function do not support chained mbufs, normal
> function will handle that.
>
> Signed-off-by:
Hi,
> -Original Message-
> From: Viacheslav Ovsiienko
> Sent: Thursday, July 4, 2019 2:16 PM
> To: dev@dpdk.org
> Cc: Raslan Darawsheh ; Eli Britstein
>
> Subject: [PATCH v2] net/mlx5: zero out UDP csum for IPv6 encap headers
>
> From: Eli Britstein
>
> Mellanox NICs do not support UD
Hi,
> -Original Message-
> From: Xiaoyu Min
> Sent: Wednesday, July 3, 2019 10:23 AM
> To: Raslan Darawsheh ; Slava Ovsiienko
> ; Shahaf Shuler ;
> Yongseok Koh ; John McNamara
> ; Marko Kovacevic
>
> Cc: dev@dpdk.org
> Subject: [Suspected-Phishing][PATCH v3] net/mlx5: support matching o
Meeting notes for the DPDK technical board meeting held on 2018-07-3
Attendees:
- Bruce Richardson
- Ferruh Yigit
- Jerin Jacob
- Maxime Coquelin
- Olivier Matz
- Stephen Hemminger
- Thomas Monjalon
1) Adding eventmode helper library
- Dec
Applied to dpdk-next-crypto
Thanks.
From: Krzysztof Kanas
mbox_unregister_vf_irq and mbox_unregister_pf_irq returns void value.
mbox_unregister_irq also returns void.
Clang with flags '-Wall -Wextra -pedantic' complains about:
void function should not return void expression
Signed-off-by: Krzysztof Kanas
---
drivers/common/octe
08/07/2019 14:18, kka...@marvell.com:
> From: Krzysztof Kanas
>
> mbox_unregister_vf_irq and mbox_unregister_pf_irq returns void value.
> mbox_unregister_irq also returns void.
>
> Clang with flags '-Wall -Wextra -pedantic' complains about:
> void function should not return void expression
>
>
On 13-Jun-19 10:21 AM, Hajkowski wrote:
From: Marcin Hajkowski
Updated power management docs for fifo JSON API.
Removed from JSON API:
* 'name'
* 'resource_id'
* 'core_list'
Signed-off-by: Marcin Hajkowski
Signed-off-by: Lukasz Krakowiak
Signed-off-by: Lukasz Gosiewski
---
I think current
On 13-Jun-19 10:21 AM, Hajkowski wrote:
From: Marcin Hajkowski
This patch implement a separate FIFO for each cpu core.
For proper handling JSON interface, removed fields from cmds:
core_list, resource_id, name.
Signed-off-by: Lukasz Krakowiak
Signed-off-by: Lukasz Gosiewski
Signed-off-by: Ma
New features in devx to query and allocate flow counters by batch commands
allow to accelerate flow counter create/destroy/query.
Matan Azrad (4):
net/mlx5: accelerate DV flow counter transactions
net/mlx5: resize a full counter container
net/mlx5: accelerate DV flow counter query
net/mlx
The DevX interface exposes a new feature to the PMD that can allocate a
batch of counters by one FW command. It can improve the flow
transaction rate (with count action).
Add a new counter pools mechanism to manage HW counters in the PMD.
So, for each flow with counter creation the PMD will try to
When the counter countainer has no more space to store more counter
pools try to resize the container to allow more pools to be created.
So, the only limitation for the maximum counter number is the memory.
Signed-off-by: Matan Azrad
Acked-by: Shahaf Shuler
---
drivers/net/mlx5/mlx5_flow_dv.c
In case the asynchronous devx commands are not supported in RDMA core
fallback to use a basic counter management.
Here, the PMD counters cashe is redundant and the host thread doesn't
update it. hence, each counter operation will go to the FW and the
acceleration reduces.
Signed-off-by: Matan Azr
All the DV counters are cashed in the PMD memory and are contained in
pools which are contained in containers according to the counters
allocation type - batch or single.
Currently, the flow counter query is done synchronously in pool
resolution means that on the user request a FW command is trigg
From: Jerin Jacob
Existing logic fails to select IOVA mode as VA
if driver request to enable IOVA as VA.
IOVA as VA has more strict requirement than other modes,
so enabling positive logic for IOVA as VA selection.
This patch also updates the default IOVA mode as PA
for PCI devices as it has to
08/04/2019 05:02, Phil Yang:
> Phil Yang (3):
> packet_ordering: add statistics for each worker thread
> test/distributor: replace sync builtins with atomic builtins
> test/ring_perf: replace sync builtins with atomic builtins
After months of wait for comments,
Applied, thanks
On Mon, 8 Jul 2019 06:37:14 +
Matan Azrad wrote:
> Hi Stephen
>
> From: Stephen Hemminger
> > Sent: Sunday, July 7, 2019 7:47 PM
> > To: Matan Azrad
> > Cc: anatoly.bura...@intel.com; dev@dpdk.org; Stephen Hemminger
> >
> > Subject: Re: [dpdk-dev] [PATCH v2] examples/client_server_mp: che
Hello,
I run my dpdk applications with "file-prefix" option, so I can run them
concurrently. I see that it creates a runtime directory under /var/run/dpdk.
This directory still persists after the application has terminated. The code
calls rte_eal_cleanup before exiting but that doesn't seem to
08/07/2019 12:26, Thomas Monjalon:
> 07/07/2019 07:41, Liron Himi:
> > From: Akhil Goyal
> > > This patch fixes the missed "uint8_t *" to "const uint8_t *" xform key
> > > data type change for mvsam driver.
> > >
> > > Fixes: f3390532cf6a ("cryptodev: make xform key pointer constant")
> > >
>
On Mon, 8 Jul 2019 15:00:43 +
"Shubhachint, Chaitanya" wrote:
> Hello,
>
> I run my dpdk applications with "file-prefix" option, so I can run them
> concurrently. I see that it creates a runtime directory under /var/run/dpdk.
> This directory still persists after the application has termin
Hi Anatoly,
On 08/07/2019 14:34, Burakov, Anatoly wrote:
On 13-Jun-19 10:21 AM, Hajkowski wrote:
From: Marcin Hajkowski
Updated power management docs for fifo JSON API.
Removed from JSON API:
* 'name'
* 'resource_id'
* 'core_list'
Signed-off-by: Marcin Hajkowski
Signed-off-by: Lukasz Krako
On 7/1/2019 11:36 AM, Andy Pei wrote:
> ipn3ke can work on 10G mode and 25G mode.
> 10G mode and 25G mode has different MAC register address for statistics.
> This patch implemente statistics registers for 10G mode and 25G mode.
>
> Fixes: c01c748e4ae6 ("net/ipn3ke: add new driver")
> Cc: rosen...
The key size for memif is 256 but the unix domain socket structure has
space for 100 bytes. Change it to use a larger buffer and not hard
code the keysize everywhere.
Not sure what purpose of socket is anyway since there is no code
which connects to it in the current tree anyway?
Signed-off-by: S
On 7/7/2019 11:25 AM, Jerin Jacob Kollanukkaran wrote:
>> -Original Message-
>> From: lir...@marvell.com
>> Sent: Wednesday, July 3, 2019 1:28 PM
>> To: Jerin Jacob Kollanukkaran
>> Cc: dev@dpdk.org; Liron Himi ; Yuri Chipchev
>>
>> Subject: [PATCH] net/mvneta: remove resources when port
05/07/2019 15:58, Olivier Matz:
> - As "readlink -e" and "readlink -m" do not exist on freebsd,
> use "readlink -f", it should not have any impact in these cases.
> - "sed -ri" is invalid on freebsd and should be replaced by
> "sed -ri=''"
> - Use gmake instead of make.
>
> This fixes the foll
>-Original Message-
>From: Honnappa Nagarahalli [mailto:honnappa.nagaraha...@arm.com]
>Sent: Thursday, July 4, 2019 10:33 PM
>To: Wang, Yipeng1 ; Gobriel, Sameh
>; Richardson, Bruce
>; De Lara Guarch, Pablo
>
>Cc: Gavin Hu (Arm Technology China) ; Ruifeng Wang (Arm
>Technology China) ;
>
Please, any review or ack for this patch?
07/06/2019 04:28, Takeshi Yoshimura:
sPAPR allows only page_shift from VFIO_IOMMU_SPAPR_TCE_GET_INFO ioctl.
However, Linux 4.17 or before returns incorrect page_shift for Power9.
I added the code for retrying creation of sPAPR DMA window.
Signed-off-by:
>-Original Message-
>From: Thomas Monjalon [mailto:tho...@monjalon.net]
>Sent: Thursday, July 4, 2019 9:10 AM
>To: Honnappa Nagarahalli
>Cc: dev@dpdk.org; Wang, Yipeng1 ; Gobriel, Sameh
>; Richardson, Bruce
>; De Lara Guarch, Pablo
>; gavin...@arm.com;
>ruifeng.w...@arm.com; n...@arm.com
01/07/2019 22:41, Bruce Richardson:
On Mon, Jul 01, 2019 at 09:30:02PM +0200, Thomas Monjalon wrote:
29/05/2019 17:41, Bruce Richardson:
Use the flag checking functions and a couple of empty stubs to remove the
ifdefs from the middle of the C code, and replace them with more readable
regular
On 7/2/2019 2:53 PM, Xiaoyu Min wrote:
> This patch intend to support
> action_raw_encap/decap [1] in a generic and convenient way.
>
> Two new commands - set raw_encap, set raw_decap are introduced just
> like the other commands for encap/decap, i.e. set vxlan.
>
> These two commands have corres
08/07/2019 18:47, David Christensen:
> > Please, any review or ack for this patch?
> >
> > 07/06/2019 04:28, Takeshi Yoshimura:
> >> sPAPR allows only page_shift from VFIO_IOMMU_SPAPR_TCE_GET_INFO ioctl.
> >> However, Linux 4.17 or before returns incorrect page_shift for Power9.
> >> I added the c
On 7/5/2019 10:54 AM, Xiaoyu Min wrote:
> This series patchs are based on RFC [1], which enable the matching on
> GRE's key field.
> And enabled MLX5 device supports on this.
>
> [1] https://patches.dpdk.org/patch/53432/
>
> ---
> v2:
> * remove struct rte_flow_item_gre_key in order to comply n
Hi Shally,
With [AK]
> -Original Message-
> From: Shally Verma [mailto:shal...@marvell.com]
> Sent: Saturday, July 6, 2019 3:14 PM
> To: Kusztal, ArkadiuszX ; dev@dpdk.org
> Cc: akhil.go...@nxp.com; Trahe, Fiona ;
> shally.ve...@caviumnetworks.com
> Subject: RE: [PATCH v2 1/3] cryptodev:
On 7/5/2019 10:35 AM, Krzysztof Kanas wrote:
> On 19-07-04 19:59, Ferruh Yigit wrote:
>> External Email
>>
>> --
>> On 7/4/2019 3:39 PM, kka...@marvell.com wrote:
>>> From: Krzysztof Kanas
>>>
>>> Print system error to make easier
On 7/7/2019 4:57 PM, Xiaolong Ye wrote:
> XSK_UMEM__DEFAULT_FRAME_SIZE has been changed to 4096 in kernel commit
> 123e8da1d330 (xsk: Change the default frame size to 4096 and allow
> controlling it), but we still need to keep ETH_AF_XDP_FRAME_SIZE as 2048 to
> fit most dpdk apps.
>
> Signed-off-b
08/07/2019 18:51, Wang, Yipeng1:
>From: Thomas Monjalon [mailto:tho...@monjalon.net]
> >02/07/2019 23:16, Honnappa Nagarahalli:
> >> v2
> >> - Dropped moving the tbl_chng_cnt to the beginning of the cache line
> >>commit
> >> - Changed the commit log for patch 1 to indicate that it improves
>
06/06/2019 11:32, Shreyansh Jain:
> Though John has already acked it, and I was original culprit, more than one
> Ack doesn't look bad :D
>
> From: Xiaolong Ye
> > Fixes: a9bb0c44c775 ("doc: add rawdev library guide and doxygen page")
> > Cc: sta...@dpdk.org
> >
> > Signed-off-by: Xiaolong Ye
This patchset adds multiple cores feature to compression perf tool.
All structures have been aligned and are consistent with crypto perf tool.
All test cases have constructor, runner and destructor and can use more
cores and compression devices at the same time.
v8 changes:
- some minor fixes (e
From: Tomasz Jozwiak
This patch adds template functions for multi-cores performance
version of compress-perf-tool
Signed-off-by: Tomasz Jozwiak
Signed-off-by: Tomasz Jozwiak
Acked-by: Artur Trybula
---
app/test-compress-perf/Makefile | 3 +-
app/test-compress-perf/comp_perf.h
From: Tomasz Jozwiak
This patch adds --ptest option to make possible to choose
test case from command line.
Signed-off-by: Tomasz Jozwiak
Signed-off-by: Tomasz Jozwiak
Acked-by: Artur Trybula
---
.../comp_perf_options_parse.c | 32 +++
1 file changed, 32 inser
From: Tomasz Jozwiak
This patch adds a verification part to
compression-perf-tool as a separate test case, which can be
executed multi-threaded.
Signed-off-by: Tomasz Jozwiak
Signed-off-by: Tomasz Jozwiak
Acked-by: Artur Trybula
---
app/test-compress-perf/Makefile | 1 +
.../
From: Tomasz Jozwiak
This patch adds a benchmark part to
compression-perf-tool as a separate test case, which can be
executed multi-threaded.
Also updates release notes.
Signed-off-by: Tomasz Jozwiak
Signed-off-by: Tomasz Jozwiak
Acked-by: Artur Trybula
---
app/test-compress-perf/Makefile
From: Tomasz Jozwiak
This patch updates dpdk-test-compress-perf documentation.
Signed-off-by: Tomasz Jozwiak
Acked-by: Artur Trybula
---
doc/guides/tools/comp_perf.rst | 34 +++---
1 file changed, 31 insertions(+), 3 deletions(-)
diff --git a/doc/guides/tools/comp
This patch fixes some minor problems like 'magic numbers',
spelling mistakes, enumes naming.
Signed-off-by: Artur Trybula
---
app/test-compress-perf/comp_perf_options.h | 10 --
app/test-compress-perf/comp_perf_options_parse.c | 6 +++---
app/test-compress-perf/comp_perf_test_comm
From: Tomasz Jozwiak
This patch adds a possibility to force controlled process termination
as a result of two signals: SIGTERM and SIGINT
Signed-off-by: Tomasz Jozwiak
Acked-by: Artur Trybula
---
app/test-compress-perf/comp_perf_options.h| 1 +
.../comp_perf_test_benchmark.c
This is a collection of patches around the ethernet address
manipulation routines in librte_net/rte_ether.
v9
add missing librte_net for new octoeonx2
v8
set rte_errno in rte_eth_unformat_addr
drop ether_address alignment patch. Bruce can handle deprecation
and sending the patches late
Formatting Ethernet address and getting a random value are
not in critical path so they should not be inlined.
Signed-off-by: Stephen Hemminger
Acked-by: Rami Rosen
Reviewed-by: Andrew Rybchenko
Acked-by: Olivier Matz
---
drivers/net/axgbe/Makefile | 2 +-
drivers/net/memif/Makefile
Make a function that can be used in place of eth_aton_r
to convert a string to rte_ether_addr. This function
allows both byte (xx:xx:xx:xx:xx:xx) and word (::)
format and has the same lack of error handling as the original.
This also allows ethdev to no longer have a hard dependency
on
Using bit operations like or and xor is faster than a loop
on all architectures. Really just explicit unrolling.
Similar cast to uint16 unaligned is already done in
other functions here.
Signed-off-by: Stephen Hemminger
Reviewed-by: Andrew Rybchenko
Acked-by: Olivier Matz
---
lib/librte_net/r
Use rte_eth_unformat_addr, so that ethdev can be built and work
without the cmdline library. The dependency on cmdline was
an arrangement of convenience anyway.
Signed-off-by: Stephen Hemminger
---
lib/Makefile | 1 -
lib/librte_ethdev/Makefile| 2 +-
lib/librte_ethd
The cmdline_parse_ether_addr does not need to be used everywhere
in testpmd. Can use rte_ether_unformat_addr instead.
As an added bonus it eliminates some code for copying.
Signed-off-by: Stephen Hemminger
Acked-by: Bernard Iremonger
---
app/test-pmd/cmdline_flow.c | 5 ++---
app/test-pmd/conf
Now that there is a version of ether_aton in rte_ether, it can
be used by the cmdline ethernet address parser.
Note: ether_aton_r can not be used in cmdline because
the old code would accept either bytes XX:XX:XX:XX:XX:XX
or words :: and we need to keep compatiablity.
Signed-off-by: S
Use rte_ether_unformat_addr rather than sscanf.
Signed-off-by: Stephen Hemminger
---
drivers/net/virtio/virtio_user/virtio_user_dev.c | 10 +++---
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/drivers/net/virtio/virtio_user/virtio_user_dev.c
b/drivers/net/virtio/virtio_user/
The cmdline library used to be the only way to parse a
mac address. Now there is rte_ether_unformat_addr.
Signed-off-by: Stephen Hemminger
---
drivers/net/bonding/Makefile| 2 +-
drivers/net/bonding/meson.build | 2 +-
drivers/net/bonding/rte_eth_bond_args.c | 6 +-
3 fil
Use rte_ether_unformat_addr rather than sscanf.
Signed-off-by: Stephen Hemminger
Acked-by: Gaetan Rivet
---
drivers/net/failsafe/failsafe_args.c | 8 ++--
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/drivers/net/failsafe/failsafe_args.c
b/drivers/net/failsafe/failsafe_args
Use rte_ether_unformat_addr rather than sscanf.
Signed-off-by: Stephen Hemminger
Acked-by: Matan Azrad
---
drivers/net/vdev_netvsc/vdev_netvsc.c | 10 +-
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/drivers/net/vdev_netvsc/vdev_netvsc.c
b/drivers/net/vdev_netvsc/vdev_ne
Use rte_ether_unformat_addr rather than sscanf.
Signed-off-by: Stephen Hemminger
---
drivers/net/memif/rte_eth_memif.c | 7 +--
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/drivers/net/memif/rte_eth_memif.c
b/drivers/net/memif/rte_eth_memif.c
index e9ddf6413597..00c9b396ab85
26/06/2019 17:23, Ali Alnubani:
> The old link redirected to https://www.dpdk.org/events/.
>
> Signed-off-by: Ali Alnubani
Applied, thanks
On Mon, Jul 8, 2019 at 4:25 PM wrote:
> From: Jerin Jacob
>
> Existing logic fails to select IOVA mode as VA
> if driver request to enable IOVA as VA.
>
> IOVA as VA has more strict requirement than other modes,
> so enabling positive logic for IOVA as VA selection.
>
> This patch also updates t
On 7/5/2019 7:47 AM, Ziyang Xuan wrote:
> Using spin lock to protect critical resources
> of sending mgmt messages. This will make high
> CPU usage for rte_delay_ms when sending mgmt
> messages frequently. We can use mutex to protect
> the critical resources and usleep to reduce CPU
> usage while k
Ack
Regards,
Liron
-Original Message-
From: Ferruh Yigit
Sent: Monday, July 8, 2019 19:12
To: Jerin Jacob Kollanukkaran ; Liron Himi
Cc: dev@dpdk.org; Yuri Chipchev
Subject: Re: [PATCH] net/mvneta: remove resources when port is closed
On 7/7/2019 11:25 AM, Jerin Jacob Kollanukkaran
On 7/8/2019 7:26 PM, Stephen Hemminger wrote:
> This is a collection of patches around the ethernet address
> manipulation routines in librte_net/rte_ether.
>
> v9
>add missing librte_net for new octoeonx2
> v8
>set rte_errno in rte_eth_unformat_addr
>drop ether_address alignment patch
See below,
Please send the email as text to avoid formatting issue.(No HTML)
From: David Marchand
Sent: Tuesday, July 9, 2019 12:09 AM
To: Jerin Jacob Kollanukkaran
Cc: dev ; Thomas Monjalon ; Ben Walker
; Burakov, Anatoly
Subject: [EXT] Re: [dpdk-dev] [PATCH] bus/pci: fix IOVA as VA mode se
Hi please find some comments below:
06/06/2019 13:59, Hari Kumar Vemula:
> +++ b/doc/guides/prog_guide/meson_ut.rst
> @@ -0,0 +1,151 @@
> +.. SPDX-License-Identifier: BSD-3-Clause
> +
Useless blank line.
> +Copyright(c) 2018-2019 Intel Corporation.
> +
> +.. _meson_unit_tests:
Useless anch
07/05/2019 08:51, Vipin Varghese:
> Usage option q is reflect how many port-queue pair can run per lcore.
> Updating usage field to refelct port-queue is done for one RX and TX
> only.
>
> Signed-off-by: Vipin Varghese
> ---
> +.. note::
> +
> +DPDK port-queue pair configured is only one for
26/06/2019 18:32, Ferruh Yigit:
> On 6/26/2019 4:20 PM, A.McLoughlin wrote:
> > The APIs in the rte_bus_vdev.h file were not part of the API
> > documentation. I added this header file to the doxygen config file with
> > the name vdev.
> >
> > Signed-off-by: A.McLoughlin
>
> Acked-by: Ferruh Yig
27/06/2019 15:58, A.McLoughlin:
> I modified the API config file to incorperate a search button into the
> API documentation page.
>
> Signed-off-by: A.McLoughlin
Applied, thanks
Thomas Monjalon writes:
> Hi please find some comments below:
>
> 06/06/2019 13:59, Hari Kumar Vemula:
>> +++ b/doc/guides/prog_guide/meson_ut.rst
>> @@ -0,0 +1,151 @@
>> +.. SPDX-License-Identifier: BSD-3-Clause
>> +
>
> Useless blank line.
>
>> +Copyright(c) 2018-2019 Intel Corporation.
>>
A new DPDK release candidate is ready for testing:
https://git.dpdk.org/dpdk/tag/?id=v19.08-rc1
During the last two months, we have merged 823 new patches.
The release notes so far:
http://doc.dpdk.org/guides/rel_notes/release_19_08.html
Please think about updating the release not
Huh, looks like I've been hitting "Reply" instead of the required "Reply all",
and the mailing list got dropped from the CC. Below is our conversation so far
(might be incomplete).
Kind regards,
DanielPharos
From: Daniel Pharos
Sent: 08 July 2019 22:50
To: Jerin Jacob Kollanukkaran
Subject: R
> On Jul 5, 2019, at 11:05 AM, Yongseok Koh wrote:
>
>
>
>> On Jul 5, 2019, at 6:54 AM, Adrien Mazarguil
>> wrote:
>>
>> On Thu, Jul 04, 2019 at 04:23:02PM -0700, Yongseok Koh wrote:
>>> A tag is a transient data which can be used during flow match. This can be
>>> used to store match resu
Thank, Ilya.
> -Original Message-
> From: Ilya Maximets [mailto:i.maxim...@samsung.com]
> Sent: Monday, July 08, 2019 7:38 PM
> To: Liu, Yong ; Bie, Tiwei ;
> maxime.coque...@redhat.com; dev@dpdk.org
> Subject: Re: [dpdk-dev] [RFC PATCH 02/13] add vhost packed ring fast enqueue
> function
HI Ferruh
OK. Thanks for your effort.
Best Regards,
-Original Message-
From: Yigit, Ferruh
Sent: Tuesday, July 9, 2019 12:01 AM
To: Pei, Andy ; dev@dpdk.org
Cc: Xu, Rosen
Subject: Re: [dpdk-dev] [PATCH v5 1/4] net/ipn3ke: add new register address
On 7/1/2019 11:36 AM, Andy Pei wrote:
>
Eilon Greenstein ";" Yohad Tor ";"
Raslan "rasl...@mellanox.com;" Jeff "jeffrey.tip...@microsoft.com;" Omar
Cardona ";" Khoa "k...@microsoft.com;" Shahed Shaikh
"shsha...@marvell.com;" Nareshkumar "nareshkumar@broadcom.com;" Satish
"sati...@chelsio.com;" Indranil "indra...@chelsio.com;" Ra
Attendees: (present)
-
Cathal
Pallavi
Ranjit
Harini
Haseeb
Thomas
Absent/apologies:
Eilon Greenstein
Yohad Tor
Raslan rasl...@mellanox.com
Bruce
Jeff jeffrey.tip...@microsoft.com;
Omar Cardona ;
Harini harini.ramakrish...@microsoft.com;
Khoa k...@microsoft.com;
S
Hi Wei,
Thanks for your point. I219 supports dual rx and tx queues, I will update the
fix.
BR,
Xiao
> -Original Message-
> From: Zhao1, Wei
> Sent: Monday, July 8, 2019 4:36 PM
> To: Zhang, Xiao ; dev@dpdk.org
> Cc: Zhang, Xiao
> Subject: RE: [dpdk-dev] [v2] net/e1000: i219 unit hang is
Unit hang may occur if multiple descriptors are available in the rings
during reset or close. This state can be detected by configure status
by bit 8 in register. If the bit is set and there are pending descriptors
in one of the rings, we must flush them before reset or close.
Signed-off-by: Xiao
Acked-by: Wei Zhao
> -Original Message-
> From: Zhang, Xiao
> Sent: Tuesday, July 9, 2019 8:23 PM
> To: dev@dpdk.org
> Cc: Zhao1, Wei ; Zhang, Xiao
> Subject: [v3] net/e1000: i219 unit hang issue fix on reset/close
>
> Unit hang may occur if multiple descriptors are available in the rin
Fixed error return value check and wrong error message.
Fixes: d76116a4678f ("net/ice: add generic flow API")
Signed-off-by: Qiming Yang
---
drivers/net/ice/ice_generic_flow.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ice/ice_generic_flow.c
b/drivers/n
On Mon, 19-07-08, 18:41, Ferruh Yigit wrote:
> On 7/2/2019 2:53 PM, Xiaoyu Min wrote:
> > This patch intend to support
> > action_raw_encap/decap [1] in a generic and convenient way.
> >
> > Two new commands - set raw_encap, set raw_decap are introduced just
> > like the other commands for encap/d
> >
> > >
> > > Compiler could generate non-atomic stores for whole table entry updating.
> > > This may cause incorrect nexthop to be returned, if the byte with
> > > valid flag is updated prior to the byte with next hot is updated.
> >^^
> -Original Message-
> From: Xiaoyu Min
> Sent: Friday, July 5, 2019 12:54
> To: Adrien Mazarguil ; Ori Kam
> ; Slava Ovsiienko ;
> John McNamara ; Marko Kovacevic
> ; Shahaf Shuler ;
> Yongseok Koh
> Cc: dev@dpdk.org
> Subject: [Suspected-Phishing][PATCH v7 3/4] net/mlx5: match GRE's key
> -Original Message-
> From: Xiaoyu Min
> Sent: Friday, July 5, 2019 12:54
> To: Adrien Mazarguil ; Ori Kam
> ; Slava Ovsiienko ;
> John McNamara ; Marko Kovacevic
> ; Thomas Monjalon
> ; Ferruh Yigit ; Andrew
> Rybchenko
> Cc: dev@dpdk.org
> Subject: [Suspected-Phishing][PATCH v7 1/4] et
> -Original Message-
> From: Xiaoyu Min
> Sent: Friday, July 5, 2019 12:54
> To: Adrien Mazarguil ; Ori Kam
> ; Slava Ovsiienko ;
> Wenzhuo Lu ; Jingjing Wu
> ; Bernard Iremonger
> ; John McNamara
> ; Marko Kovacevic
>
> Cc: dev@dpdk.org
> Subject: [Suspected-Phishing][PATCH v7 4/4] ap
> -Original Message-
> From: Xiaoyu Min
> Sent: Friday, July 5, 2019 12:54
> To: Adrien Mazarguil ; Ori Kam
> ; Slava Ovsiienko ;
> Shahaf Shuler ; Yongseok Koh
>
> Cc: dev@dpdk.org
> Subject: [Suspected-Phishing][PATCH v7 2/4] net/mlx5: support match GRE
> protocol on DR engine
>
> DR e
Hi Stephen
From: Stephen Hemminger
> On Mon, 8 Jul 2019 06:37:14 +
> Matan Azrad wrote:
>
> > Hi Stephen
> >
> > From: Stephen Hemminger
> > > Sent: Sunday, July 7, 2019 7:47 PM
> > > To: Matan Azrad
> > > Cc: anatoly.bura...@intel.com; dev@dpdk.org; Stephen Hemminger
> > >
> > > Subject:
Hi Adrien:
> -Original Message-
> From: Adrien Mazarguil [mailto:adrien.mazarg...@6wind.com]
> Sent: Thursday, July 4, 2019 10:09 PM
> To: Zhang, Qi Z
> Cc: Su, Simei ; Wu, Jingjing ;
> Xing, Beilei ; Yang, Qiming ;
> dev@dpdk.org
> Subject: Re: [dpdk-dev] [RFC] ethdev: support input set
Comments inline.
On Tue, Jul 9, 2019 at 8:58 AM Xiao Zhang wrote:
>
> Unit hang may occur if multiple descriptors are available in the rings
> during reset or close. This state can be detected by configure status
> by bit 8 in register. If the bit is set and there are pending descriptors
> in one
Add switch_mode argument for i40e PF to specify the specific FPGA that
i40e PF is connected to. i40e PF get link status update via the
connected FPGA.
Add bool switch_ethdev_support_flag to struct i40e_pf to specify if
there are switch_mode argues in cmd.
Add switch_ethdev to struct i40e_pf to trac
Currently mlx4/mlx5 support only Linux.
Signed-off-by: Thomas Monjalon
---
drivers/net/mlx4/meson.build | 11 +--
drivers/net/mlx5/meson.build | 10 +-
2 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/drivers/net/mlx4/meson.build b/drivers/net/mlx4/meson.build
inde
> From: Maxime Coquelin [mailto:maxime.coque...@redhat.com]
> Sent: Friday, July 5, 2019 4:47 PM
> To: Yu, Jin ; dev@dpdk.org
> Cc: Liu, Changpeng ; LinLi ;
> XunNi ; YuZhang ; Bie, Tiwei
>
> Subject: Re: [dpdk-dev] [PATCH] [v1]vhost: support inflight share memory
> protocol feature
>
> Hi Jin,
>
> -Original Message-
> From: Pei, Andy
> Sent: Monday, July 8, 2019 11:03 AM
> To: dev@dpdk.org
> Cc: Pei, Andy ; Zhang, Qi Z ; Wu,
> Jingjing ; Xing, Beilei ; Yigit,
> Ferruh ; Xu, Rosen ; Ye,
> Xiaolong ; Zhang, Roy Fan
> ; sta...@dpdk.org
> Subject: [PATCH v4] net/i40e: i40e get link
XSK_UMEM__DEFAULT_FRAME_SIZE has been changed to 4096 in kernel commit
123e8da1d330 (xsk: Change the default frame size to 4096 and allow
controlling it), but we still need to keep ETH_AF_XDP_FRAME_SIZE as 2048 to
fit most dpdk apps.
Signed-off-by: Xiaolong Ye
---
drivers/net/af_xdp/rte_eth_af_x
https://bugs.dpdk.org/show_bug.cgi?id=308
Bug ID: 308
Summary: Tap driver may leave some pending frame there but not
retrieve
Product: DPDK
Version: 18.11
Hardware: x86
OS: Linux
Status: CONFIRME
On Mon, Jul 8, 2019 at 10:03 AM Xiaolong Ye wrote:
> XSK_UMEM__DEFAULT_FRAME_SIZE has been changed to 4096 in kernel commit
> 123e8da1d330 (xsk: Change the default frame size to 4096 and allow
> controlling it), but we still need to keep ETH_AF_XDP_FRAME_SIZE as 2048 to
> fit most dpdk apps.
>
I
1 - 100 of 132 matches
Mail list logo