On Mon, Sep 10, 2018 at 02:18:17PM +0800, Tiwei Bie wrote:
On Mon, Sep 10, 2018 at 06:02:19AM +, Gavin Hu (Arm Technology China) wrote:
> -Original Message-
> From: dev On Behalf Of Jens Freimann
> Sent: Friday, September 7, 2018 2:20 AM
> To: dev@dpdk.org
> Cc: tiwei@intel.co
On Mon, Sep 10, 2018 at 05:22:43AM +, Gavin Hu (Arm Technology China) wrote:
The following 1.1 new defines should be added in this patch or the parent patch.
VIRTIO_F_IO_BARRIER
VIRTIO_F_SR_IOV
I think I should rename this patch to "add packed virtqueue defines"
instead. Above defines shoul
Allow queue- and device-level configuration for and retrieval of
contextual information from a DSW event device.
Signed-off-by: Mattias Rönnblom
---
drivers/event/dsw/dsw_evdev.c | 87 +++
drivers/event/dsw/dsw_evdev.h | 28 +++
2 files changed, 115 insert
This patch contains the Meson and GNU Make build system extensions
required for the Distributed Event Device, and also the initialization
code for the driver itself.
Signed-off-by: Mattias Rönnblom
---
config/common_base| 5 ++
drivers/event/Makefile
v3:
* Fixed incorrect headline prefixes.
* Removed dummy dsw_event_schedule() function.
* Removed redundant output buffer flush.
v2:
* Added support for Meson builds.
* Eventdev 'xstats' support is now mandatory.
* Added check in dsw_probe() to allow secondary processes.
* rte_event_dev_stop() now
Allow port setup and release in the DSW event device.
Signed-off-by: Mattias Rönnblom
---
drivers/event/dsw/dsw_evdev.c | 60 +++
drivers/event/dsw/dsw_evdev.h | 28
2 files changed, 88 insertions(+)
diff --git a/drivers/event/dsw/dsw_evdev.c b/d
Added support for linking and unlinking ports to queues in a DSW event
device.
Signed-off-by: Mattias Rönnblom
---
drivers/event/dsw/dsw_evdev.c | 67 +++
drivers/event/dsw/dsw_evdev.h | 1 +
2 files changed, 68 insertions(+)
diff --git a/drivers/event/dsw/dsw_e
The DSW event device port now attempts to estimate its load (i.e. how
busy it is). This is required for load balancing to work (although
load balancing is not included in this patch), and may also be useful
for debugging purposes.
Signed-off-by: Mattias Rönnblom
---
drivers/event/dsw/dsw_evdev.c
With this patch, the DSW event device will (optionally) sort the event
burst before giving it to the application. The sorting will primarily
be on queue id, and secondary on flow id.
The sorting is an attempt to optimize data and instruction cache usage
for the application, at the cost of addition
The DSW event device is documented in DPDK Programmer's Guide.
Signed-off-by: Mattias Rönnblom
---
doc/guides/eventdevs/dsw.rst | 97 ++
doc/guides/eventdevs/index.rst | 1 +
2 files changed, 98 insertions(+)
create mode 100644 doc/guides/eventdevs/dsw.rst
di
With this patch, the DSW event device can be started and stopped,
and also supports scheduling events between ports.
Signed-off-by: Mattias Rönnblom
---
drivers/event/dsw/Makefile| 2 +-
drivers/event/dsw/dsw_evdev.c | 125
drivers/event/dsw/dsw_evdev.h | 56 ++
drivers/e
The DSW event device will now attempt to migrate (move) flows between
ports in order to balance the load.
Signed-off-by: Mattias Rönnblom
---
drivers/event/dsw/dsw_evdev.c | 27 ++
drivers/event/dsw/dsw_evdev.h | 80
drivers/event/dsw/dsw_event.c | 735 +-
On Tue, Sep 04, 2018 at 11:12:56AM +0100, Ferruh Yigit wrote:
> Removed DEV_RX_OFFLOAD_CRC_STRIP offload flag.
> Without any specific Rx offload flag, default behavior by PMDs is to
> strip CRC.
>
> PMDs that support keeping CRC should advertise DEV_RX_OFFLOAD_KEEP_CRC
> Rx offload capability.
>
The DSW event device now implements the 'xstats' interface and a
number of port- and device-level counters.
Signed-off-by: Mattias Rönnblom
---
drivers/event/dsw/Makefile | 3 +-
drivers/event/dsw/dsw_evdev.c | 5 +-
drivers/event/dsw/dsw_evdev.h | 19 +++
drivers/event/dsw/dsw_event.
Hi,
Please, do not merge this patch. I need to check and readapt this patch. A
version 2 will be sent later.
Thanks,
--
Julien Meunier
> -Original Message-
> From: Wang, Xiao W
> Sent: Tuesday, September 11, 2018 3:52 AM
> To: Meunier, Julien (Nokia - FR/Paris-Saclay) ;
> Zhang, Qi Z
> -Original Message-
> From: Luca Boccassi
> Sent: Tuesday, September 11, 2018 1:34 AM
> To: dev@dpdk.org
> Cc: keith.wi...@intel.com; roy.fan.zh...@intel.com; jingjing...@intel.com;
> wenzhuo...@intel.com; Mody, Rasesh ; Patil,
> Harish ; Shaikh, Shahed
> ; amr.mokh...@intel.com; Thotton,
Hi Kevin,
On 27/6/2018 6:33 PM, Kevin Traynor wrote:
On 06/26/2018 12:40 PM, Radu Nicolau wrote:
From: Liang Ma
1. Abstract
--snip--
2.2 There are two phases to establish the power management system:
a.Initialization/Training phase. There is no traffic pass-through,
th
On 09/03/2018 12:12 PM, Ilya Maximets wrote:
There are a lot of cases where vhost-user massage handling
could fail and end up in a fully not recoverable state. For
example, allocation failures of shadow used ring and batched
copy array are not recoverable and leads to the segmentation
faults l
Hi Nikolay,
On 07/19/2018 09:13 PM, Nikolay Nikolaev wrote:
vhost: vhost_user.c code cleanup
This patchesries introduce a set of code redesigns in vhost_user.c.
The goal is to unify and simplify vhost-user message handling. The
patches do not intend to introduce any functional changes.
v2 cha
The strncpy function has long been deemed unsafe for use,
in favor of strlcpy or snprintf.
While snprintf is standard and strlcpy is still largely available,
they both have issues regarding error checking and performance.
Both will force reading the source buffer past the requested size
if the in
> -Original Message-
> From: Yang, Ziye
> Sent: Tuesday, September 11, 2018 2:28 AM
> To: dev@dpdk.org
> Cc: Ananyev, Konstantin ; Ziye Yang
>
> Subject: [PATCH v7] linuxapp, eal: Fix the memory leak issue of logid
>
> From: Ziye Yang
>
> This patch is used to fix the memory leak is
> -Original Message-
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Gaetan Rivet
> Sent: Tuesday, September 11, 2018 1:04 PM
> To: dev@dpdk.org
> Cc: Gaetan Rivet
> Subject: [dpdk-dev] [PATCH v1] eal: add strscpy function
>
> The strncpy function has long been deemed unsafe for
Hi,
Sorry about the spam but this patch was not intended to send to DPDK just yet.
I need further polish it and splits into a patchset as the v2 of
http://patchwork.dpdk.org/patch/43919/
So I marked this patch as rejected in patchwork.
Regards,
Fan
> -Original Message-
> From: dev [mail
On 9/10/2018 4:52 PM, Cian Ferriter wrote:
> The MAC addresses are generated in a similar manner as in the TAP PMD,
> where the address is based on the number of PCAP ports created.
>
> This is useful for the purposes of debugging DPDK applications using
> PCAP devices instead of real devices wher
On 09/05/2018 06:28 AM, Tiwei Bie wrote:
Deadlock can occur when allocating memory if a vhost-kernel
based virtio-user device is in use. To fix the deadlock,
we will take memory hotplug lock explicitly in virtio-user
when necessary, and always call the _thread_unsafe memory
functions.
Bugzill
On 09/05/2018 06:28 AM, Tiwei Bie wrote:
Recently some memory APIs were introduced to allow users to
get the file descriptor and offset for each memory segment.
We can leverage those APIs to get rid of the /proc magic on
memory table preparation in vhost-user backend.
Signed-off-by: Tiwei Bie
> -Original Message-
> From: Xing, Beilei
> Sent: Tuesday, September 11, 2018 11:36 AM
> To: Zhang, Qi Z
> Cc: dev@dpdk.org
> Subject: [PATCH v3] net/i40e: add alarm handler
>
> This patch adds alarm handler, and then i40e PF will use alarm handler instead
> of interrupt handler when devi
On Mon, Sep 10, 2018 at 09:04:07PM +0100, Luca Boccassi wrote:
> The library is called librte_pmd_lio, so rename the map file and set
> the name in the meson file so that the built library names with meson
> and legacy makefiles are the same
>
> Fixes: bad475c03fee ("net/liquidio: add to meson bui
On Mon, Sep 10, 2018 at 09:04:10PM +0100, Luca Boccassi wrote:
> The library is called librte_pmd_thunderx_nicvf, so rename the map file
> and set the name in the meson file so that the built library names with
> meson and legacy makefiles are the same
>
> Fixes: 7f615033d64f ("drivers/net: build
On Tue, 2018-09-11 at 14:06 +0100, Bruce Richardson wrote:
> On Mon, Sep 10, 2018 at 09:04:07PM +0100, Luca Boccassi wrote:
> > The library is called librte_pmd_lio, so rename the map file and
> > set
> > the name in the meson file so that the built library names with
> > meson
> > and legacy makef
On 09/05/2018 06:28 AM, Tiwei Bie wrote:
It's possible to have much more hugepage backed memory regions
than what vhost-kernel supports due to the memory hotplug, which
may cause problems. A better solution is to have the virtio-user
pass all the memory ranges reserved by DPDK to vhost-kernel.
On 09/05/2018 06:28 AM, Tiwei Bie wrote:
This series consists of some fixes and improvements for virtio-user's
memory table preparation.
This series supersedes below patches:
https://patches.dpdk.org/patch/43807/
https://patches.dpdk.org/patch/43918/
The second patch in this series depends o
On Tue, Sep 11, 2018 at 02:09:30PM +0100, Luca Boccassi wrote:
> On Tue, 2018-09-11 at 14:06 +0100, Bruce Richardson wrote:
> > On Mon, Sep 10, 2018 at 09:04:07PM +0100, Luca Boccassi wrote:
> > > The library is called librte_pmd_lio, so rename the map file and
> > > set
> > > the name in the meson
On Tue, Sep 11, 2018 at 02:09:30PM +0100, Luca Boccassi wrote:
> On Tue, 2018-09-11 at 14:06 +0100, Bruce Richardson wrote:
> > On Mon, Sep 10, 2018 at 09:04:07PM +0100, Luca Boccassi wrote:
> > > The library is called librte_pmd_lio, so rename the map file and
> > > set
> > > the name in the meson
On Tue, 2018-09-11 at 14:30 +0100, Bruce Richardson wrote:
> On Tue, Sep 11, 2018 at 02:09:30PM +0100, Luca Boccassi wrote:
> > On Tue, 2018-09-11 at 14:06 +0100, Bruce Richardson wrote:
> > > On Mon, Sep 10, 2018 at 09:04:07PM +0100, Luca Boccassi wrote:
> > > > The library is called librte_pmd_li
On Tue, 2018-09-11 at 14:32 +0100, Bruce Richardson wrote:
> On Tue, Sep 11, 2018 at 02:09:30PM +0100, Luca Boccassi wrote:
> > On Tue, 2018-09-11 at 14:06 +0100, Bruce Richardson wrote:
> > > On Mon, Sep 10, 2018 at 09:04:07PM +0100, Luca Boccassi wrote:
> > > > The library is called librte_pmd_li
Ziye Yang writes:
> From: Ziye Yang
>
> This patch is used to fix the memory leak issue of logid.
> We use the ASAN test in SPDK when intergrating DPDK and
> find this memory leak issue.
>
> By the way, we also fix several missed function call of
> rte_atomic32_clear.
This part I don't understa
On Tue, Sep 11, 2018 at 02:41:36PM +0100, Luca Boccassi wrote:
> On Tue, 2018-09-11 at 14:32 +0100, Bruce Richardson wrote:
> > On Tue, Sep 11, 2018 at 02:09:30PM +0100, Luca Boccassi wrote:
> > > On Tue, 2018-09-11 at 14:06 +0100, Bruce Richardson wrote:
> > > > On Mon, Sep 10, 2018 at 09:04:07PM
> -Original Message-
> From: Aaron Conole [mailto:acon...@redhat.com]
> Sent: Tuesday, September 11, 2018 2:47 PM
> To: Yang, Ziye
> Cc: dev@dpdk.org; Ananyev, Konstantin ; Ziye
> Yang
> Subject: Re: [dpdk-dev] [PATCH v7] linuxapp, eal: Fix the memory leak issue
> of logid
>
> Ziye
This patch series adds the flow API support
for the softnic.
This patch set also introduce a new cli command
to provide mapping of flow group and direction
to softnic pipeline and table.
v2: added missing code to patch #9/10
reworded commit titles.
Reshma Pattan (15):
net/softnic: add infrastr
Add rte_flow infra structure for flow api support.
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
drivers/net/softnic/rte_eth_softnic_internals.h | 17 +
1 file changed, 17 insertions(+)
diff --git a/drivers/net/softnic/rte_eth_softnic_internals.h
b/driver
Added mapping support from rte flow attributes
to softnic pipeline and table.
So added flow attribute map set and get functions
definition to new file rte_eth_sofnic_flow.c.
Added pmd flow internals with ingress and egress
flow attribute maps.
Signed-off-by: Cristian Dumitrescu
Signed-off-by: R
Added new cli by which user can specify to softnic
which rte flow group and direction has to mapped to
which pipeline and table.
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
drivers/net/softnic/rte_eth_softnic_cli.c | 81 +++
1 file changed, 81
Change dev_name, action_profile_name and key_mask
from char* type to arary type of structures
softnic_port_in_params, softnic_port_out_params
and softnic_table_hash_params.
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
drivers/net/softnic/rte_eth_softnic_cli.c | 34 +
Added utility function to freeup the
pipeline tables.
Added utility functions to find the pipeline
output port.
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
drivers/net/softnic/rte_eth_softnic_internals.h | 13 ++
drivers/net/softnic/rte_eth_softnic_pipeline.c | 57
Add utility function to get the rte_eth_dev from
a given softnic.
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
drivers/net/softnic/rte_eth_softnic_internals.h | 17 +
1 file changed, 17 insertions(+)
diff --git a/drivers/net/softnic/rte_eth_softnic_intern
Support for validating and mapping rte flow rule with
ACL table match is added.
As part of this support below utility functions
been added
flow_rule_match_get()
flow_rule_match_acl_get()
flow_item_skip_disabled_protos()
flow_item_proto_preprocess()
flow_item_is_proto()
flow_item_raw_preprocess()
Start adding flow api operations.
Started with flow validate api support by adding
below basic infrastructure.
flow_pipeline_table_get()
pmd_flow_validate()
Additional flow validate changes will be
added in next patches.
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
dri
Support for validating and mapping flow rule with HASH
table match is added.
As part of this, below helper functions are added.
flow_rule_match_hash_get()
hash_key_mask_is_same()
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
drivers/net/softnic/rte_eth_softnic_flow.c | 20
Added flow protocol parsing for IPV4/IPV6 and
TCP/UDP/SCTP for ACL table rule match.
Added below helper functions for doing the same.
port_mask_to_range()
ipv6_mask_to_depth()
ipv4_mask_to_depth()
mask_to_depth()
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
drivers/net/s
pmd_flow_create API is added to support
rte flow create.
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
drivers/net/softnic/rte_eth_softnic_flow.c | 174 +
1 file changed, 174 insertions(+)
diff --git a/drivers/net/softnic/rte_eth_softnic_flow.c
Added validation and mapping of flow rule action
with table action profile.
Added flow_rule_action_get() to do the same.
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
drivers/net/softnic/rte_eth_softnic_flow.c | 350 +
1 file changed, 350 inser
Added pmd_flow_query() API, for flow query
support.
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
drivers/net/softnic/rte_eth_softnic_flow.c | 55 ++
1 file changed, 55 insertions(+)
diff --git a/drivers/net/softnic/rte_eth_softnic_flow.c
b/dr
pmd_flow_destroy() API is added to destroy the
created flow.
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
drivers/net/softnic/rte_eth_softnic_flow.c | 39 ++
1 file changed, 39 insertions(+)
diff --git a/drivers/net/softnic/rte_eth_softnic_flo
Added support for parsing raw flow item.
flow_item_raw_preprocess() is added for the same.
Signed-off-by: Cristian Dumitrescu
Signed-off-by: Reshma Pattan
---
drivers/net/softnic/rte_eth_softnic_flow.c | 108 +
1 file changed, 108 insertions(+)
diff --git a/drivers/
The strncpy function has long been deemed unsafe for use,
in favor of strlcpy or snprintf.
While snprintf is standard and strlcpy is still largely available,
they both have issues regarding error checking and performance.
Both will force reading the source buffer past the requested size
if the in
"Ananyev, Konstantin" writes:
>> -Original Message-
>> From: Aaron Conole [mailto:acon...@redhat.com]
>> Sent: Tuesday, September 11, 2018 2:47 PM
>> To: Yang, Ziye
>> Cc: dev@dpdk.org; Ananyev, Konstantin
>> ; Ziye Yang
>> Subject: Re: [dpdk-dev] [PATCH v7] linuxapp, eal: Fix the memor
On 9/10/2018 5:55 PM, Juhamatti Kuusisaari wrote:
> At the moment, PCAP interfaces use dummy MAC by default. This change
> adds support for selecting PCAP physical interface MAC with phy_mac=1
> devarg. This allows to setup packet flows using the physical interface
> MAC.
>
> Signed-off-by: Juhama
On Tue, 2018-09-11 at 15:06 +0100, Bruce Richardson wrote:
> On Tue, Sep 11, 2018 at 02:41:36PM +0100, Luca Boccassi wrote:
> > On Tue, 2018-09-11 at 14:32 +0100, Bruce Richardson wrote:
> > > On Tue, Sep 11, 2018 at 02:09:30PM +0100, Luca Boccassi wrote:
> > > > On Tue, 2018-09-11 at 14:06 +0100,
Use same autoconf generation mechanism as the MLX4/5 PMDs
Signed-off-by: Luca Boccassi
---
drivers/net/meson.build | 1 +
drivers/net/tap/meson.build | 41 +
2 files changed, 42 insertions(+)
create mode 100644 drivers/net/tap/meson.build
diff --git a/d
Signed-off-by: Luca Boccassi
---
drivers/net/avf/base/meson.build | 20
drivers/net/avf/meson.build | 15 +++
drivers/net/meson.build | 1 +
3 files changed, 36 insertions(+)
create mode 100644 drivers/net/avf/base/meson.build
create mode 100644 d
Signed-off-by: Luca Boccassi
---
drivers/net/meson.build | 1 +
drivers/net/vdev_netvsc/meson.build | 19 +++
2 files changed, 20 insertions(+)
create mode 100644 drivers/net/vdev_netvsc/meson.build
diff --git a/drivers/net/meson.build b/drivers/net/meson.build
inde
So that it can be used from Meson as well
Signed-off-by: Luca Boccassi
---
drivers/event/opdl/Makefile | 2 +-
...md_evdev_opdl_version.map => rte_pmd_opdl_event_version.map} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
rename drivers/event/opdl/{rte_p
Signed-off-by: Luca Boccassi
---
drivers/event/meson.build | 2 +-
drivers/event/opdl/meson.build | 11 +++
2 files changed, 12 insertions(+), 1 deletion(-)
create mode 100644 drivers/event/opdl/meson.build
diff --git a/drivers/event/meson.build b/drivers/event/meson.build
index e
Signed-off-by: Luca Boccassi
Acked-by: Shahed Shaikh
---
config/rte_config.h | 3 ++
drivers/net/meson.build | 2 +-
drivers/net/qede/base/meson.build | 57 +++
drivers/net/qede/meson.build | 12 +++
4 files changed, 73 insertions(+)
Signed-off-by: Luca Boccassi
---
drivers/baseband/meson.build | 7 +++
drivers/baseband/null/meson.build | 7 +++
drivers/meson.build | 1 +
3 files changed, 15 insertions(+)
create mode 100644 drivers/baseband/meson.build
create mode 100644 drivers/baseband/null/meso
Signed-off-by: Luca Boccassi
---
drivers/crypto/meson.build | 2 +-
drivers/crypto/scheduler/meson.build | 19 +++
2 files changed, 20 insertions(+), 1 deletion(-)
create mode 100644 drivers/crypto/scheduler/meson.build
diff --git a/drivers/crypto/meson.build b/driver
Signed-off-by: Luca Boccassi
---
drivers/net/meson.build | 4 +++-
drivers/net/vmxnet3/meson.build | 18 ++
2 files changed, 21 insertions(+), 1 deletion(-)
create mode 100644 drivers/net/vmxnet3/meson.build
diff --git a/drivers/net/meson.build b/drivers/net/meson.build
Signed-off-by: Bruce Richardson
---
NOTE: this patch depends upon:
http://patches.dpdk.org/project/dpdk/list/?series=1232
doc/api/meson.build| 3 ++-
doc/guides/meson.build | 16
doc/meson.build| 11 +++
3 files changed, 29 insertions(+), 1 deletion(-)
crea
Hi Gavin,
> -Original Message-
> From: dev [mailto:dev-boun...@dpdk.org]
> Sent: Monday, August 27, 2018 10:33 AM
> To: dev@dpdk.org
> Cc: n...@arm.com; gavin...@arm.com
> Subject: [dpdk-dev] [PATCH] app/testpmd: Optimize membuf pool allocation
>
> By default, testpmd will create membuf p
On Fri, 7 Sep 2018 18:21:39 +0300
Igor Russkikh wrote:
> +#CFLAGS_BASE_DRIVER = -Wno-unused-parameter -Wno-unused-value
> +CFLAGS_BASE_DRIVER += -Wno-strict-aliasing -Wno-format-extra-args
Can't you fix your code to get rid of these errors?
On Fri, 7 Sep 2018 18:21:42 +0300
Igor Russkikh wrote:
> +/* register address for bitfield imr_rx{r}_en */
> + static u32 itr_imr_rxren_adr[32] = {
> + 0x2100U, 0x2100U, 0x2104U, 0x2104U,
> + 0x2108U, 0x2108U, 0x210CU, 0x000
On Fri, 7 Sep 2018 18:21:43 +0300
Igor Russkikh wrote:
> +/*
> + * aQuantia Corporation Network Driver
> + * Copyright (C) 2014-2017 aQuantia Corporation. All rights reserved
> + *
> + * This program is free software; you can redistribute it and/or modify it
> + * under the terms and conditions
On Fri, 7 Sep 2018 18:21:43 +0300
Igor Russkikh wrote:
> +
> +#define pif_rpf_rss_ipv4_hdr_only_i (1 << 4)//calc hash only in IPv4
> header, regardless of presence of TCP
> +#define pif_rpf_rss_ipv4_tcp_hdr_only_i (1 << 3)//calc hash only if TCP
> header and IPv4
> +#define pif_rpf
On Fri, 7 Sep 2018 18:21:55 +0300
Igor Russkikh wrote:
> +
> +static int
> +atl_dev_xstats_get_names(struct rte_eth_dev *dev __rte_unused, struct
> rte_eth_xstat_name *xstats_names, unsigned int size)
> +{
> + unsigned int i;
> +
Please break really long lines at between 80 and 100 charact
Proposal:
In compressdev, move the responsibility for appending data in the destination
mbuf from the application to the PMD.
Why:
Compression operations are all out-of-place and the output size is unknown.
Source and destination mbufs are passed to the PMDs.
There's no problem with the src, but t
On 09/07/2018 04:13 PM, Eric Zhang wrote:
On 09/07/2018 05:26 AM, Burakov, Anatoly wrote:
On 06-Sep-18 8:34 AM, Jerin Jacob wrote:
-Original Message-
Date: Tue, 4 Sep 2018 23:40:36 -0400
From: Eric Zhang
To: santosh ,
hemant.agra...@nxp.com,
Gaëtan Rivet , "Burakov, Anatoly"
Signed-off-by: Tomasz Cel
---
doc/guides/cryptodevs/features/qat.ini | 3 +++
doc/guides/cryptodevs/qat.rst | 1 +
2 files changed, 4 insertions(+)
diff --git a/doc/guides/cryptodevs/features/qat.ini
b/doc/guides/cryptodevs/features/qat.ini
index 29d865e..a37a1a1 100644
--- a/doc/guide
> On Sep 2, 2018, at 6:55 AM, Ori Kam wrote:
>
> Signed-off-by: Ori Kam
> ---
Acked-by: Yongseok Koh
Thanks
> drivers/net/mlx5/mlx5.c | 4
> drivers/net/mlx5/mlx5.h | 1 +
> 2 files changed, 5 insertions(+)
>
> diff --git a/drivers/net/mlx5/mlx5.c b/drivers/net/mlx5/mlx5.c
> index 30d4
> On Sep 9, 2018, at 10:45 PM, David Marchand wrote:
>
> Add some basic checks on the segments offset and length metadata:
> always funny to have a < 0 tailroom cast to uint16_t ;-).
>
> Signed-off-by: David Marchand
> ---
> lib/librte_mbuf/rte_mbuf.c | 5 +
> 1 file changed, 5 insertions(
https://bugs.dpdk.org/show_bug.cgi?id=90
Bug ID: 90
Summary: DPDK Installation fails on Centos
Product: DPDK
Version: 17.02
Hardware: x86
OS: Other
Status: CONFIRMED
Severity: major
Priority: Nor
On Tue, 2018-09-11 at 17:13 +0100, Bruce Richardson wrote:
> Signed-off-by: Bruce Richardson
> ---
> NOTE: this patch depends upon:
> http://patches.dpdk.org/project/dpdk/list/?series=1232
Just a reminder that's v2, and the patch won't apply cleanly on the
latest revision
> doc/api/meson.build
This will make it possible to generate the file in the same way from
Meson as well.
Signed-off-by: Luca Boccassi
Acked-by: Bruce Richardson
---
v2: simplified script by using exec > file
v4: add acked-by
doc/api/generate_examples.sh | 12
mk/rte.sdkdoc.mk | 5 +
2
Signed-off-by: Luca Boccassi
Acked-by: Bruce Richardson
---
v2: made doxygen dependency optional, skip doxygen build when not found
v3: made doxygen dependency mandatory if enable_docs is true, add
alternative doc target that prints "doxygen not found" when doxygen
is not found and enable
make showversion will print 18.11.0-rc0 but Meson sets 18.11-rc0,
causing among other things a difference in the generated documentation.
Fixes: 76b9d9de5c7d ("version: 18.11-rc0")
Signed-off-by: Luca Boccassi
Acked-by: Thomas Monjalon
Acked-by: Bruce Richardson
---
v3: add acked-by
meson.bu
This will allow the same config file to be used from Meson.
The result has been verified to be identical via diffoscope.
Signed-off-by: Luca Boccassi
Acked-by: Bruce Richardson
---
v2: reordered generated fields as requested
v4: add acked-by
doc/api/doxy-api.conf| 87 --
Hi All,
So I implemented the "write to /sys/devices/virtual/net/*/carrier"
method to change the link status, but there is one more minor thing
that I wanted to point out about this approach. The problem is that
you cannot read or write the '/sys/devices/virtual/net/*/carrier' file
while the inter
On Tue, 2018-09-11 at 21:36 +0100, Luca Boccassi wrote:
> On Tue, 2018-09-11 at 17:13 +0100, Bruce Richardson wrote:
> > Signed-off-by: Bruce Richardson
> > ---
> > NOTE: this patch depends upon:
> > http://patches.dpdk.org/project/dpdk/list/?series=1232
>
> Just a reminder that's v2, and the pat
On Tue, 11 Sep 2018 18:45:49 -0300
Dan Gora wrote:
> Hi All,
>
> So I implemented the "write to /sys/devices/virtual/net/*/carrier"
> method to change the link status, but there is one more minor thing
> that I wanted to point out about this approach. The problem is that
> you cannot read or wr
On Tue, Sep 11, 2018 at 6:52 PM, Stephen Hemminger
wrote:
> The carrier state has no meaning when device is down, at least for physical
> devices. Because often the PHY is powered off when the device is marked down.
The thing that caught my attention is that when you mark a kernel
ethernet device
Hi All,
The following patches are to add support for DPDK applications to be
able to change the carrier state of Linux network interfaces in the
KNI kernel module.
The carrier state is changed by writing to the Linux /sys file:
/sys/devices/virtual/net//carrier, where is the KNI
interface name.
Add a new API function to KNI, rte_kni_update_link() to allow DPDK
applications to update the link status for KNI network interfaces in
the linux kernel.
Signed-off-by: Dan Gora
---
lib/librte_kni/rte_kni.c | 57
lib/librte_kni/rte_kni.h | 18
On Tue, 11 Sep 2018 19:07:47 -0300
Dan Gora wrote:
> On Tue, Sep 11, 2018 at 6:52 PM, Stephen Hemminger
> wrote:
> > The carrier state has no meaning when device is down, at least for physical
> > devices. Because often the PHY is powered off when the device is marked
> > down.
>
> The thing
Sorry all.. I totally goofed up with git-send-email..
Please ignore this message.
On Tue, Sep 11, 2018 at 8:14 PM, Dan Gora wrote:
> Add a new API function to KNI, rte_kni_update_link() to allow DPDK
> applications to update the link status for KNI network interfaces in
> the linux kernel.
>
Hi All,
The following patches are to add support for DPDK applications to be
able to change the carrier state of Linux network interfaces in the
KNI kernel module.
The carrier state is changed by writing to the Linux /sys file:
/sys/devices/virtual/net//carrier, where is the KNI
interface name.
Add a new API function to KNI, rte_kni_update_link() to allow DPDK
applications to update the link status for KNI network interfaces in
the linux kernel.
Signed-off-by: Dan Gora
---
lib/librte_kni/rte_kni.c | 57
lib/librte_kni/rte_kni.h | 18
Set the carrier state to 'off' when the interface is instantiated
or when it is marked 'up' or 'down'. This is necessary to set the
interface to a known operational state until the carrier state is
changed with rte_kni_update_link().
Signed-off-by: Dan Gora
---
kernel/linux/kni/kni_misc.c | 2 +
From: Ziye Yang
This patch is used to fix the memory leak issue of logid.
We use the ASAN test in SPDK when intergrating DPDK and
find this memory leak issue.
Signed-off-by: Ziye Yang
---
lib/librte_eal/linuxapp/eal/eal.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --gi
By default, testpmd will create membuf pool for all NUMA nodes and
ignore EAL configuration.
Count the number of available NUMA according to EAL core mask or core
list configuration. Optimized by only creating membuf pool for those
nodes.
Fixes: c9cafcc ("app/testpmd: fix mempool creation by sock
Hi Bernard,
Thanks for you comments. I have updated the patch. Please review it.
Thanks,
Phil Yang
> -Original Message-
> From: dev On Behalf Of Iremonger, Bernard
> Sent: Wednesday, September 12, 2018 12:23 AM
> To: dev ; dev@dpdk.org
> Cc: nd ; Gavin Hu (Arm Technology China)
> Subje
1 - 100 of 108 matches
Mail list logo