[dpdk-dev] [PATCH v4 0/2] app/testpmd implement VXLAN/NVGRE Encap/Decap

2018-06-21 Thread Nelio Laranjeiro
This series adds an easy and maintainable configuration version support for those two actions for 18.08 by using global variables in testpmd to store the necessary information for the tunnel encapsulation. Those variables are used in conjunction of RTE_FLOW_ACTION_{VXLAN,NVGRE}_ENCAP action to cre

[dpdk-dev] [PATCH v4 2/2] app/testpmd: add NVGRE encap/decap support

2018-06-21 Thread Nelio Laranjeiro
Due to the complex NVGRE_ENCAP flow action and based on the fact testpmd does not allocate memory, this patch adds a new command in testpmd to initialise a global structure containing the necessary information to make the outer layer of the packet. This same global structure will then be used by t

[dpdk-dev] [PATCH v4 1/2] app/testpmd: add VXLAN encap/decap support

2018-06-21 Thread Nelio Laranjeiro
Due to the complex VXLAN_ENCAP flow action and based on the fact testpmd does not allocate memory, this patch adds a new command in testpmd to initialise a global structure containing the necessary information to make the outer layer of the packet. This same global structure will then be used by t

[dpdk-dev] [PATCH v3] ethdev: add flow API to expand RSS flows

2018-06-21 Thread Nelio Laranjeiro
Introduce an helper for PMD to expand easily flows items list with RSS action into multiple flow items lists with priority information. For instance a user items list being "eth / end" with rss action types "ipv4-udp ipv6-udp end" needs to be expanded into three items lists: - eth - eth / ipv4

[dpdk-dev] [PATCH v2] net/mlx5: fix RSS level validation

2018-06-21 Thread Raslan Darawsheh
When setting the level in rss action it's checking for the value stored in the parser which is set to 0 by default. This change the check to be for the requested action instead. Fixes: d4a40518 ("net/mlx5: support tunnel RSS level") Cc: sta...@dpdk.org Signed-off-by: Raslan Darawsheh Acked-by:

Re: [dpdk-dev] [PATCH] ethdev: add new offload flag to keep CRC

2018-06-21 Thread Shahaf Shuler
Wednesday, June 20, 2018 7:13 PM. Ferruh Yigit: > Subject: Re: [dpdk-dev] [PATCH] ethdev: add new offload flag to keep CRC > > On 6/20/2018 2:44 PM, Shahaf Shuler wrote: > > > > Hi Ferruh, > > > > Tuesday, June 19, 2018 9:03 PM, Ferruh Yigit > >> Subject: [dpdk-dev] [PATCH] ethdev: add new offload

Re: [dpdk-dev] [PATCH v2 22/22] examples/devmgm_mp: add simple device management sample

2018-06-21 Thread Burakov, Anatoly
On 21-Jun-18 3:00 AM, Qi Zhang wrote: The sample code demonstrate device (ethdev only) management at multi-process envrionment. User can attach/detach a device on primary process and see it is synced on secondary process automatically, also user can lock a device to prevent it be detached or unlo

Re: [dpdk-dev] [PATCH v2 01/22] eal: introduce one device scan

2018-06-21 Thread Burakov, Anatoly
On 21-Jun-18 3:00 AM, Qi Zhang wrote: When hot plug a new device, it is not necessary to scan everything on the bus since the devname and devargs are already there. So new rte_bus ops "scan_one" is introduced, bus driver can implement this function to simplify the hotplug process. Signed-off-by:

Re: [dpdk-dev] [PATCH] bus/dpaa: fix build

2018-06-21 Thread Shreyansh Jain
On Wednesday 20 June 2018 07:39 PM, Thomas Monjalon wrote: The DPAA bus driver is defining some macros without prefix. So it can conflict with other libraries like libbsd: drivers/bus/dpaa/include/compat.h:53: error: "__packed" redefined /usr/include/bsd/sys/cdefs

Re: [dpdk-dev] [PATCH v2 03/22] ethdev: add function to release port in local process

2018-06-21 Thread Burakov, Anatoly
On 21-Jun-18 3:00 AM, Qi Zhang wrote: Add driver API rte_eth_release_port_private to support the requirement that an ethdev only be released on secondary process, so only local state be set to unused , share data will not be reset so primary process can still use it. Signed-off-by: Qi Zhang ---

Re: [dpdk-dev] [PATCH v2 03/22] ethdev: add function to release port in local process

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: Burakov, Anatoly > Sent: Thursday, June 21, 2018 4:06 PM > To: Zhang, Qi Z ; tho...@monjalon.net > Cc: Ananyev, Konstantin ; dev@dpdk.org; > Richardson, Bruce ; Yigit, Ferruh > ; Shelton, Benjamin H > ; Vangati, Narender > > Subject: Re: [PATCH v2 03/22] ethd

Re: [dpdk-dev] [PATCH v2 03/22] ethdev: add function to release port in local process

2018-06-21 Thread Thomas Monjalon
21/06/2018 10:06, Burakov, Anatoly: > On 21-Jun-18 3:00 AM, Qi Zhang wrote: > > Add driver API rte_eth_release_port_private to support the > > requirement that an ethdev only be released on secondary process, > > so only local state be set to unused , share data will not be > > reset so primary pro

Re: [dpdk-dev] [PATCH v2 1/3] gso: support UDP/IPv4 fragmentation

2018-06-21 Thread Wang, Xiao W
Hi, > -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Jiayu Hu > Sent: Sunday, June 17, 2018 11:13 AM > To: dev@dpdk.org > Cc: Ananyev, Konstantin ; Zhang, Yuwei1 > ; Iremonger, Bernard > ; Hu, Jiayu > Subject: [dpdk-dev] [PATCH v2 1/3] gso: support UDP/IPv4 frag

Re: [dpdk-dev] [dpdk-stable] [PATCH] bus/dpaa: fix compilation issue with meson build

2018-06-21 Thread Thomas Monjalon
05/06/2018 08:20, Shreyansh Jain: > On 6/4/2018 8:22 AM, Jerin Jacob wrote: > > ccache gcc -Idrivers/drivers@@tmp_rte_pmd_dpaa_sec@sta -Idrivers > > In file included from ../drivers/bus/dpaa/include/fsl_usd.h:11, > > from ../drivers/crypto/dpaa_sec/dpaa_sec.c:27: > > ../drivers/bu

Re: [dpdk-dev] [PATCH v2 1/3] gso: support UDP/IPv4 fragmentation

2018-06-21 Thread Hu, Jiayu
Hi Xiao, > -Original Message- > From: Wang, Xiao W > Sent: Thursday, June 21, 2018 4:25 PM > To: Hu, Jiayu ; dev@dpdk.org > Cc: Ananyev, Konstantin ; Zhang, Yuwei1 > ; Iremonger, Bernard > ; Hu, Jiayu > Subject: RE: [dpdk-dev] [PATCH v2 1/3] gso: support UDP/IPv4 > fragmentation > > Hi,

Re: [dpdk-dev] [PATCH] bus/dpaa: fix build

2018-06-21 Thread Thomas Monjalon
21/06/2018 09:58, Shreyansh Jain: > On Wednesday 20 June 2018 07:39 PM, Thomas Monjalon wrote: > > The DPAA bus driver is defining some macros without prefix. > > So it can conflict with other libraries like libbsd: > > > > drivers/bus/dpaa/include/compat.h:53: > > error: "__packed

Re: [dpdk-dev] [PATCH v2 04/22] ethdev: enable hotplug on multi-process

2018-06-21 Thread Burakov, Anatoly
On 21-Jun-18 3:00 AM, Qi Zhang wrote: We are going to introduce the solution to handle different hotplug cases in multi-process situation, it include below scenario: 1. Attach a share device from primary 2. Detach a share device from primary 3. Attach a share device from secondary 4. Detach a sh

Re: [dpdk-dev] [PATCH v2 05/22] ethdev: introduce device lock

2018-06-21 Thread Burakov, Anatoly
On 21-Jun-18 3:00 AM, Qi Zhang wrote: Introduce API rte_eth_dev_lock and rte_eth_dev_unlock to let application lock or unlock on specific ethdev, a locked device can't be detached, this help application to prevent unexpected device detaching, especially in multi-process environment. Also introdu

Re: [dpdk-dev] [PATCH v2 06/22] ethdev: support attach or detach share device from secondary

2018-06-21 Thread Burakov, Anatoly
On 21-Jun-18 3:00 AM, Qi Zhang wrote: This patch cover the multi-process hotplug case when a share device attach/detach request be issued from secondary process, the implementation references malloc_mp.c. device attach on secondary: a) secondary send async request to primary and wait on a condit

Re: [dpdk-dev] [PATCH v2 04/22] ethdev: enable hotplug on multi-process

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: Burakov, Anatoly > Sent: Thursday, June 21, 2018 4:37 PM > To: Zhang, Qi Z ; tho...@monjalon.net > Cc: Ananyev, Konstantin ; dev@dpdk.org; > Richardson, Bruce ; Yigit, Ferruh > ; Shelton, Benjamin H > ; Vangati, Narender > > Subject: Re: [PATCH v2 04/22] ethd

[dpdk-dev] [PATCH 2/2] doc: fixes the limitations for dpaa2 sec

2018-06-21 Thread Hemant Agrawal
Fixes: 37f96eb01bce ("crypto/dpaa2_sec: support scatter gather") Cc: sta...@dpdk.org Signed-off-by: Hemant Agrawal --- doc/guides/cryptodevs/dpaa2_sec.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/guides/cryptodevs/dpaa2_sec.rst b/doc/guides/cryptodevs/dpaa2_sec.rst index 3ea24c8..

[dpdk-dev] [PATCH 1/2] doc: fixes the limitations for dpaa sec

2018-06-21 Thread Hemant Agrawal
Fixes: a74af788c632 ("crypto/dpaa_sec: support scatter gather") Cc: sta...@dpdk.org Signed-off-by: Hemant Agrawal --- doc/guides/cryptodevs/dpaa_sec.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/guides/cryptodevs/dpaa_sec.rst b/doc/guides/cryptodevs/dpaa_sec.rst index c14d6d7..a628

Re: [dpdk-dev] [PATCH v2 05/22] ethdev: introduce device lock

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: Burakov, Anatoly > Sent: Thursday, June 21, 2018 4:51 PM > To: Zhang, Qi Z ; tho...@monjalon.net > Cc: Ananyev, Konstantin ; dev@dpdk.org; > Richardson, Bruce ; Yigit, Ferruh > ; Shelton, Benjamin H > ; Vangati, Narender > > Subject: Re: [PATCH v2 05/22] ethd

[dpdk-dev] [PATCH] raw/dpaa2_qdma: fix the IOVA as VA flag for driver

2018-06-21 Thread Hemant Agrawal
Fixes: b1ee472fed58 ("raw/dpaa2_qdma: introduce the DPAA2 QDMA driver") Cc: sta...@dpdk.org Signed-off-by: Hemant Agrawal --- drivers/raw/dpaa2_qdma/dpaa2_qdma.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/raw/dpaa2_qdma/dpaa2_qdma.c b/drivers/raw/dpaa2_qdma/dpaa2_qdma.c index 1

[dpdk-dev] [PATCH] usertools: fix build with gcc

2018-06-21 Thread Choonho Son
If developer does not define DESTDIR variable, dpdk-setup.sh fails to build with lack of environment variable Build complete [x86_64-native-linuxapp-gcc] Installation cannot run with T defined and DESTDIR undefined Choonho Son (1): usertools: fix build with gcc usertools/dpdk-setup.sh | 3 ++

[dpdk-dev] [PATCH] usertools: fix build with gcc

2018-06-21 Thread Choonho Son
dpdk-setup.sh fails to build with lack of environment variable Build complete [x86_64-native-linuxapp-gcc] Installation cannot run with T defined and DESTDIR undefined Signed-off-by: Choonho Son --- usertools/dpdk-setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/us

[dpdk-dev] [PATCH 01/10] bus/dpaa: fix phandle support for kernel 4.16

2018-06-21 Thread Hemant Agrawal
From: Alok Makhariya Fixes: 2183c6f69d7e ("bus/dpaa: add OF parser for device scanning") Cc: Shreyansh Jain Cc: sta...@dpdk.org Signed-off-by: Alok Makhariya --- drivers/bus/dpaa/base/fman/of.c | 5 + 1 file changed, 5 insertions(+) diff --git a/drivers/bus/dpaa/base/fman/of.c b/drivers/

[dpdk-dev] [PATCH 02/10] bus/dpaa: fix svr id fetch location

2018-06-21 Thread Hemant Agrawal
Otherwise the SVR may not be avilable for dpaa init. Fixes: 3b59b73dea08 ("bus/dpaa: update platform SoC value register routines") Cc: sta...@dpdk.org Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/dpaa_bus.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a

[dpdk-dev] [PATCH 05/10] bus/dpaa: make vdqcr configurable

2018-06-21 Thread Hemant Agrawal
From: Nipun Gupta This patch add support for configurable vdqcr exact flag. This boost the performance, however this can give side effects for some extra packet fetch. Which has been taken care in the patch as well. Signed-off-by: Nipun Gupta --- drivers/bus/dpaa/base/qbman/qman.c | 4 ++--

[dpdk-dev] [PATCH 06/10] net/dpaa: support default queue mode

2018-06-21 Thread Hemant Agrawal
In case DPAA FMAN configuration tool (FMC) is not available. System can still work with default queue. (1 queue per port). Signed-off-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_ethdev.c | 43 +- 1 file changed, 30 insertions(+), 13 deletions(-) diff --g

[dpdk-dev] [PATCH 03/10] bus/dpaa: optimize the fq callback routine

2018-06-21 Thread Hemant Agrawal
Avoid array of fq as packets are dq only from a single q. Signed-off-by: Sunil Kumar Kori Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/base/qbman/qman.c | 15 +++ drivers/net/dpaa/dpaa_rxtx.c | 2 +- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/drivers

[dpdk-dev] [PATCH 04/10] bus/dpaa: implement new of API to get MAC address

2018-06-21 Thread Hemant Agrawal
From: Akhil Goyal Signed-off-by: Akhil Goyal --- drivers/bus/dpaa/base/fman/of.c | 39 +++ drivers/bus/dpaa/include/of.h | 2 ++ drivers/bus/dpaa/rte_bus_dpaa_version.map | 8 +++ 3 files changed, 49 insertions(+) diff --git a/drivers/bus

[dpdk-dev] [PATCH 09/10] bus/dpaa: cleanup unnecessary global variables

2018-06-21 Thread Hemant Agrawal
Changes originally in the patch "drivers: cleanup unnecessary global variables" by Pavan. Signed-off-by: Pavan Nikhilesh Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/base/fman/netcfg_layer.c | 5 - drivers/bus/dpaa/base/qbman/bman_driver.c | 4 ++-- drivers/bus/dpaa/base/qbman/qman.c

[dpdk-dev] [PATCH 08/10] net/dpaa2: fix the prefetch Rx to honor nb pkts

2018-06-21 Thread Hemant Agrawal
This patch fix the prefetch rx routine to set the next prefetch request to the size of nb_pkts. This will assume that next request will ideally will be of same size. Fixes: 4bc5ab88dbd6 ("net/dpaa2: fix Tx only mode") Cc: sta...@dpdk.org Signed-off-by: Hemant Agrawal --- drivers/net/dpaa2/dpaa2

[dpdk-dev] [PATCH 07/10] net/dpaa: remove experimental tag from PMD APIs

2018-06-21 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_ethdev.c| 6 +++--- drivers/net/dpaa/dpaa_ethdev.h| 8 +--- drivers/net/dpaa/rte_pmd_dpaa.h | 5 + drivers/net/dpaa/rte_pmd_dpaa_version.map | 4 ++-- 4 files changed, 11 insertions(+), 12 deletions(

[dpdk-dev] [PATCH 10/10] bus/fslmc: cleanup unnecessary global variables

2018-06-21 Thread Hemant Agrawal
Changes originally in the patch "drivers: cleanup unnecessary global variables" by Pavan. Signed-off-by: Pavan Nikhilesh Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/qbman/qbman_portal.c | 3 +-- drivers/bus/fslmc/qbman/qbman_portal.h | 1 - 2 files changed, 1 insertion(+), 3 deletions(-

Re: [dpdk-dev] [PATCH] usertools: fix build with gcc

2018-06-21 Thread Bruce Richardson
On Thu, Jun 21, 2018 at 09:35:41AM +, Choonho Son wrote: > dpdk-setup.sh fails to build with lack of environment variable > > Build complete [x86_64-native-linuxapp-gcc] > Installation cannot run with T defined and DESTDIR undefined > > Signed-off-by: Choonho Son > --- > usertools/dpdk-setu

Re: [dpdk-dev] [PATCH 1/1] ena: fix SIGFPE with 0 rx queues

2018-06-21 Thread Marcin Wojtas
+ Ferruh and Michal 2018-06-20 18:32 GMT+02:00 Daria Kolistratova : > When he number of rx queues is 0 > (what can be when application does not receive) > failed with SIGFPE. > Fixed adding zero check before division. > > Signed-off-by: Daria Kolistratova > --- > drivers/net/ena/ena_ethdev.c |

Re: [dpdk-dev] [PATCH v2] net/mlx5: fix error number handling

2018-06-21 Thread Shahaf Shuler
Wednesday, June 20, 2018 10:03 AM, Nélio Laranjeiro: > Subject: Re: [PATCH v2] net/mlx5: fix error number handling > > On Tue, Jun 19, 2018 at 04:13:13PM -0700, Yongseok Koh wrote: > > rte_errno should be saved only if error has occurred because rte_errno > > could have garbage value. > > > > Fixe

Re: [dpdk-dev] [PATCH v2] net/mlx5: clean-up developer logs

2018-06-21 Thread Shahaf Shuler
Tuesday, June 5, 2018 11:45 AM, Nelio Laranjeiro: > Subject: [dpdk-dev] [PATCH v2] net/mlx5: clean-up developer logs > > Split maintainers logs from user logs. > > A lot of debug logs are present providing internal information on how the > PMD works to users. Such logs should not be available fo

[dpdk-dev] [Bug 63] AWS ENA driver does not work with zero rx queues.

2018-06-21 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=63 Bug ID: 63 Summary: AWS ENA driver does not work with zero rx queues. Product: DPDK Version: 18.02 Hardware: All OS: Other Status: CONFIRMED Severity: major

Re: [dpdk-dev] [PATCH 1/1] ena: fix SIGFPE with 0 rx queues

2018-06-21 Thread Michał Krawczyk
Hi Daria, I couldn't find the patch in the patchwork or the mailing list, so sorry for late response. 2018-06-21 12:14 GMT+02:00 Marcin Wojtas : > + Ferruh and Michal > > 2018-06-20 18:32 GMT+02:00 Daria Kolistratova : >> When he number of rx queues is 0 Typo (missing 't' letter) >> (what can

Re: [dpdk-dev] [PATCH] maintainers: update subtree committers

2018-06-21 Thread Thomas Monjalon
20/06/2018 12:37, Ferruh Yigit: > From: Helin Zhang > > For subtree of dpdk-next-net-intel, Qi Zhang has agreed to take > the committer role, to replace Helin Zhang. Also Beilei Xing has > agreed to be the backup committer of the subtree. > > Signed-off-by: Helin Zhang Applied, thanks all for

[dpdk-dev] [PATCH v2] ethdev: add new offload flag to keep CRC

2018-06-21 Thread Ferruh Yigit
DEV_RX_OFFLOAD_KEEP_CRC offload flag is added. PMDs that support keeping CRC should advertise this offload capability. DEV_RX_OFFLOAD_CRC_STRIP flag will remain one more release default behavior in PMDs are to keep the CRC until this flag removed Until DEV_RX_OFFLOAD_CRC_STRIP flag is removed: -

Re: [dpdk-dev] [PATCH v2 20/22] net/tap: enable port detach on secondary process

2018-06-21 Thread Wiles, Keith
> On Jun 20, 2018, at 9:00 PM, Qi Zhang wrote: > > Previously, detach port on secondary process will mess primary > process and cause same device can't be attached again, by take > advantage of rte_eth_release_port_private, we can support this > with minor change. > > Signed-off-by: Qi Zhang

Re: [dpdk-dev] [PATCH 1/6] cryptodev: replace bus specific struct with generic dev

2018-06-21 Thread Akhil Goyal
On 6/9/2018 3:32 AM, Pablo de Lara wrote: Structure rte_cryptodev_info has currently PCI device information ("struct rte_pci_device") in it. This information is not generic to all devices, so this gets replaced with the generic "rte_device" structure, compatible with all crypto devices. Signe

Re: [dpdk-dev] [PATCH v2 06/22] ethdev: support attach or detach share device from secondary

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: Burakov, Anatoly > Sent: Thursday, June 21, 2018 5:06 PM > To: Zhang, Qi Z ; tho...@monjalon.net > Cc: Ananyev, Konstantin ; dev@dpdk.org; > Richardson, Bruce ; Yigit, Ferruh > ; Shelton, Benjamin H > ; Vangati, Narender > > Subject: Re: [PATCH v2 06/22] ethd

Re: [dpdk-dev] [PATCH 4/6] cryptodev: remove queue start/stop functions

2018-06-21 Thread Akhil Goyal
On 6/9/2018 3:32 AM, Pablo de Lara wrote: Removed cryptodev queue start/stop functions, as they were marked deprecated in 18.05, since they were not implemented by any driver. Signed-off-by: Pablo de Lara Acked-by: Akhil Goyal

Re: [dpdk-dev] [PATCH v2 3/3] net/pcap: support pcap files and ifaces mix

2018-06-21 Thread Ferruh Yigit
On 6/21/2018 1:24 PM, ido goshen wrote: > Suggested-by: Ferruh Yigit > > Signed-off-by: ido goshen <...> > +static uint16_t > +eth_pcap_tx_mux(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts) > +{ > + struct pcap_tx_queue *tx_queue = queue; > + if (tx_queue->dumper) > +

Re: [dpdk-dev] [PATCH v2 06/22] ethdev: support attach or detach share device from secondary

2018-06-21 Thread Burakov, Anatoly
On 21-Jun-18 1:50 PM, Zhang, Qi Z wrote: -Original Message- From: Burakov, Anatoly Sent: Thursday, June 21, 2018 5:06 PM To: Zhang, Qi Z ; tho...@monjalon.net Cc: Ananyev, Konstantin ; dev@dpdk.org; Richardson, Bruce ; Yigit, Ferruh ; Shelton, Benjamin H ; Vangati, Narender Subject: R

Re: [dpdk-dev] [PATCH 5/6] cryptodev: remove old get session size functions

2018-06-21 Thread Akhil Goyal
Hi Pablo, On 6/9/2018 3:32 AM, Pablo de Lara wrote: Removed rte_cryptodev_get_header_session_size and rte_cryptodev_get_private_session_size functions, as they have been substituted with functions specific for symmetric operations, with _sym_ word after "rte_cryptodev_". Signed-off-by: Pablo d

Re: [dpdk-dev] [PATCH 2/6] cryptodev: remove max number of sessions per queue

2018-06-21 Thread Akhil Goyal
On 6/9/2018 3:32 AM, Pablo de Lara wrote: The cryptodev info structure currently contains the maximum number of sessions that can be used in a queue pair. This is only set in DPAA_SEC PMD, and since it is calculated based on the maximum number of sessions (which is not used anymore), this field c

[dpdk-dev] [PATCH v2 4/8] examples/vm_power: allow greater than 64 cores

2018-06-21 Thread David Hunt
To facilitate more info per core, change the global_cpu_mask from a uint64_t to an array. This also removes the limit on 64 cores, allocing the aray at run-time based on the number of cores found in the system. Signed-off-by: David Hunt --- examples/vm_power_manager/power_manager.c | 115 +++

[dpdk-dev] [PATCH v2 6/8] examples/vm_power: add port-list to command line

2018-06-21 Thread David Hunt
add in the long form of -p, which is --port-list Signed-off-by: David Hunt --- examples/vm_power_manager/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/vm_power_manager/main.c b/examples/vm_power_manager/main.c index 4c6b5a990..4088861f1 100644 --- a/examples/vm_power_manage

[dpdk-dev] [PATCH v2 0/8] examples/vm_power: 100% Busy Polling

2018-06-21 Thread David Hunt
This patch set adds the capability to do out-of-band power monitoring on a system. It uses a thread to monitor the branch counters in the targeted cores, and calculates the branch ratio if the running code. If the branch ratop is low (0.01), then the code is most likely running in a tight poll loo

[dpdk-dev] [PATCH v2 3/8] examples/vm_power: add oob monitoring functions

2018-06-21 Thread David Hunt
This patch introduces the out-of-band (oob) core monitoring functions. The functions are similar to the channel manager functions. There are function to add and remove cores from the list of cores being monitored. There is a function to initialise the monitor setup, run the monitor thread, and exi

[dpdk-dev] [PATCH v2 1/8] examples/vm_power: add check for port count

2018-06-21 Thread David Hunt
If we don't pass any ports to the app, we don't need to create any mempools, and we don't need to init any ports. Signed-off-by: David Hunt --- examples/vm_power_manager/main.c | 81 +--- 1 file changed, 43 insertions(+), 38 deletions(-) diff --git a/examples/vm_powe

[dpdk-dev] [PATCH v2 7/8] examples/vm_power: add branch ratio policy type

2018-06-21 Thread David Hunt
Add the capability for the vm_power_manager to receive a policy of type BRANCH_RATIO. This will add any vcpus in the policy to the oob monitoring thread. Signed-off-by: David Hunt --- examples/vm_power_manager/channel_monitor.c | 23 +++-- lib/librte_power/channel_commands.h

[dpdk-dev] [PATCH v2 2/8] examples/vm_power: add core list parameter

2018-06-21 Thread David Hunt
Add in the '-l' command line parameter (also --core-list) So the user can now pass --corelist=4,6,8-10 and it will expand out to 4,6,8,9,10 using the parse function provided in parse.c (parse_set). This list of cores is then used to enable out-of-band monitoring to scale up and down these cores ba

[dpdk-dev] [PATCH v2 5/8] examples/vm_power: add thread for oob core monitor

2018-06-21 Thread David Hunt
Change the app to now require three cores, as the third core will be used to run the oob montoring thread. Signed-off-by: David Hunt --- examples/vm_power_manager/main.c | 37 +--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/examples/vm_power_manage

[dpdk-dev] [PATCH v2 8/8] examples/vm_power: add cli args to guest app

2018-06-21 Thread David Hunt
Add new command line arguments to the guest app to make testing and validation of the policy usage easier. These arguments are mainly around setting up the power management policy that is sent from the guest vm to to the vm_power_manager in the host New command line parameters:

Re: [dpdk-dev] [PATCH 1/2] examples/ipsec-secgw: fix bypass rule processing for outbound port

2018-06-21 Thread Akhil Goyal
On 6/5/2018 7:46 PM, Konstantin Ananyev wrote: For outbound ports BYPASS rule is erroneously treated as PROTECT one with SA idx zero. Fixes: 2a5106af132b ("examples/ipsec-secgw: fix corner case for SPI value") Signed-off-by: Konstantin Ananyev --- Acked-by: Akhil Goyal

Re: [dpdk-dev] [PATCH v3] net/ixgbe: fix crash on detach

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Pablo de Lara > Sent: Thursday, May 31, 2018 5:53 PM > To: Lu, Wenzhuo ; Ananyev, Konstantin > > Cc: dev@dpdk.org; De Lara Guarch, Pablo ; > sta...@dpdk.org > Subject: [dpdk-dev] [PATCH v3] net/ixgbe: fix crash

Re: [dpdk-dev] [PATCH 2/2] examples/ipsec-secgw: fix portmask option parsing

2018-06-21 Thread Akhil Goyal
Hi Konstantin, On 6/5/2018 7:46 PM, Konstantin Ananyev wrote: parse_portmask() returns both portmask value and possible error code as 32-bit integer. That causes some confusion for callers. Split error code and portmask value into two distinct variables. Also allows to run the app with unprotect

Re: [dpdk-dev] [PATCH v2] net/ixgbe: add query rule stats support for FDIR

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Lu, Wenzhuo > Sent: Thursday, June 14, 2018 8:36 AM > To: Zhao1, Wei ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2] net/ixgbe: add query rule stats support for > FDIR > > Hi, > > > --

Re: [dpdk-dev] [PATCH v2 1/2] service: add mechanism for quiescing a service

2018-06-21 Thread Eads, Gage
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Monday, June 18, 2018 5:14 PM > To: Eads, Gage > Cc: dev@dpdk.org; jerin.ja...@caviumnetworks.com; Van Haaren, Harry > ; Richardson, Bruce > ; Rao, Nikhil ; Carrillo, > Erik > G ; Gujjar, Abhinandan S >

Re: [dpdk-dev] [PATCH v2] net/ixgbe: add support for VLAN in IP mode FDIR

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Lu, Wenzhuo > Sent: Thursday, June 14, 2018 8:38 AM > To: Zhao1, Wei ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2] net/ixgbe: add support for VLAN in IP mode > FDIR > > Hi, > > > ---

Re: [dpdk-dev] [PATCH v2] net/ixgbe: fix tunnel id format error for FDIR

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Lu, Wenzhuo > Sent: Thursday, June 14, 2018 8:39 AM > To: Zhao1, Wei ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2] net/ixgbe: fix tunnel id format error for > FDIR > > Hi, > > >

Re: [dpdk-dev] [PATCH] lib/cryptodev: remove RTE_LIBRTE_CRYPTODEV_DEBUG

2018-06-21 Thread Akhil Goyal
Hi Jananee, On 6/12/2018 12:08 PM, Jananee Parthasarathy wrote: For librte_cryptodev dynamic logging, conditional compilation of debug logs would not be required anymore. I believe this shall also be removed from config/common_base and lib/librte_eal/common/include/rte_dev.h as nobody is usin

Re: [dpdk-dev] [PATCH v3] net/ixgbe: fix tunnel type set error for FDIR

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Lu, Wenzhuo > Sent: Friday, June 15, 2018 8:50 AM > To: Zhao1, Wei ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v3] net/ixgbe: fix tunnel type set error for > FDIR > > Hi, > > > > ---

Re: [dpdk-dev] [PATCH v5] net/ixgbe: fix mask bits register set error for FDIR

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Lu, Wenzhuo > Sent: Tuesday, June 19, 2018 8:57 AM > To: Zhao1, Wei ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v5] net/ixgbe: fix mask bits register set error > for FDIR > > Hi, > >

Re: [dpdk-dev] [PATCH] lib/cryptodev: remove RTE_LIBRTE_CRYPTODEV_DEBUG

2018-06-21 Thread Akhil Goyal
Please remove lib from subject also. On 6/21/2018 7:41 PM, Akhil Goyal wrote: Hi Jananee, On 6/12/2018 12:08 PM, Jananee Parthasarathy wrote: For librte_cryptodev dynamic logging, conditional compilation of debug logs would not be required anymore. I believe this shall also be removed from

Re: [dpdk-dev] [PATCH] net/i40e: fix shifts of 32-bit value

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: Xing, Beilei > Sent: Wednesday, May 23, 2018 3:47 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org; Guo, Jia > Subject: [PATCH] net/i40e: fix shifts of 32-bit value > > Cppcheck reports following error, > (error) Shifting 32-bit value by 36 bits is undefined behavi

Re: [dpdk-dev] [PATCH 2/2] doc: fixes the limitations for dpaa2 sec

2018-06-21 Thread Akhil Goyal
On 6/21/2018 2:43 PM, Hemant Agrawal wrote: Fixes: 37f96eb01bce ("crypto/dpaa2_sec: support scatter gather") Cc: sta...@dpdk.org Signed-off-by: Hemant Agrawal --- Acked-by: Akhil Goyal

[dpdk-dev] [PATCH v3 0/2] Improve service stop support

2018-06-21 Thread Gage Eads
Existing service functions allow us to stop a service, but doing so doesn't guarantee that the service has finished running on a service core. This patch set introduces a function, rte_service_may_be_active(), to check whether a stopped service is truly stopped. This is needed for flows that modif

Re: [dpdk-dev] [PATCH 1/2] doc: fixes the limitations for dpaa sec

2018-06-21 Thread Akhil Goyal
On 6/21/2018 2:43 PM, Hemant Agrawal wrote: Fixes: a74af788c632 ("crypto/dpaa_sec: support scatter gather") Cc: sta...@dpdk.org Signed-off-by: Hemant Agrawal --- Acked-by: Akhil Goyal

[dpdk-dev] [PATCH v3 1/2] service: add mechanism for quiescing a service

2018-06-21 Thread Gage Eads
Existing service functions allow us to stop a service, but doing so doesn't guarantee that the service has finished running on a service core. This commit introduces rte_service_may_be_active(), which returns whether the service may be executing on one or more lcores currently, or definitely is not

[dpdk-dev] [PATCH v3 2/2] event/sw: support device stop flush callback

2018-06-21 Thread Gage Eads
This commit also adds a flush callback test to the sw eventdev's selftest suite. Signed-off-by: Gage Eads Acked-by: Harry van Haaren --- drivers/event/sw/sw_evdev.c | 114 ++- drivers/event/sw/sw_evdev_selftest.c | 81 - 2 files

Re: [dpdk-dev] [PATCH 0/2] net/i40e: print real global changes

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: Zhang, Qi Z > Sent: Friday, June 15, 2018 9:55 PM > To: Xing, Beilei > Cc: dev@dpdk.org > Subject: RE: [PATCH 0/2] net/i40e: print real global changes > > > > > -Original Message- > > From: Xing, Beilei > > Sent: Thursday, June 7, 2018 10:40 AM >

Re: [dpdk-dev] [PATCH 1/2] cryptodev: add min headroom and tailroom requirement

2018-06-21 Thread Akhil Goyal
On 6/19/2018 11:56 AM, Anoob Joseph wrote: Enabling crypto devs to specify the minimum headroom and tailroom it expects in the mbuf. For net PMDs, standard headroom has to be honoured by applications, which is not strictly followed for crypto devs. This prevents crypto devs from using free spa

Re: [dpdk-dev] [PATCH] app/testpmd: fix VLAN tci mask set error for FDIR

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Lu, Wenzhuo > Sent: Tuesday, June 12, 2018 9:12 AM > To: Zhao1, Wei ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] app/testpmd: fix VLAN tci mask set error for > FDIR > > Hi, > > > -

Re: [dpdk-dev] [PATCH v2 0/8] examples/vm_power: 100% Busy Polling

2018-06-21 Thread Radu Nicolau
On 6/21/2018 2:24 PM, David Hunt wrote: This patch set adds the capability to do out-of-band power monitoring on a system. It uses a thread to monitor the branch counters in the targeted cores, and calculates the branch ratio if the running code. If the branch ratop is low (0.01), then the cod

Re: [dpdk-dev] [PATCH v3] net/i40e: workaround for Fortville performance

2018-06-21 Thread Zhang, Qi Z
> -Original Message- > From: Zhang, Qi Z > Sent: Friday, June 15, 2018 10:07 PM > To: Wang, Haiyue ; dev@dpdk.org > Cc: Wu, Jingjing ; Yang, Qiming > ; sta...@dpdk.org > Subject: RE: [PATCH v3] net/i40e: workaround for Fortville performance > > > > > -Original Message- > > Fro

Re: [dpdk-dev] [PATCH 4/7] vhost: translate iovas at vectors fill time

2018-06-21 Thread Maxime Coquelin
On 06/08/2018 12:39 PM, Maxime Coquelin wrote: @@ -584,7 +578,8 @@ virtio_dev_rx(struct virtio_net *dev, uint16_t queue_id, vq->last_avail_idx + num_buffers); if (copy_mbuf_to_desc(dev, vq, pkts[pkt_idx], - buf_vec,

[dpdk-dev] patch for dpdk-devbind.py support ipv6

2018-06-21 Thread Yaron Illouz
Hi dpdk-devbind.py support only ipv4 interface, when run with -s parameter which is status, it display all ipv6 interface as non Active It set interface as Active according to "ip -o route" output Here is a change that can support ipv6 @@ -269,6 +269,18 @@ # filter out all lines for 169.25

Re: [dpdk-dev] [PATCH 2/2] examples/ipsec-secgw: fix portmask option parsing

2018-06-21 Thread Ananyev, Konstantin
Hi Akhil, > -Original Message- > From: Akhil Goyal [mailto:akhil.go...@nxp.com] > Sent: Thursday, June 21, 2018 2:49 PM > To: Ananyev, Konstantin ; dev@dpdk.org > Cc: Nicolau, Radu > Subject: Re: [dpdk-dev] [PATCH 2/2] examples/ipsec-secgw: fix portmask option > parsing > > Hi Konstanti

[dpdk-dev] [PATCH] docs: add default that all fixes are backported

2018-06-21 Thread Kevin Traynor
Set the starting point that all commits on master branch with Fixes tag are backported to relevant stable/LTS branches. Of course there will be exceptions that will crop up from time to time that need discussion, so also add a sentence for that. This is to ensure that there is consistency between

Re: [dpdk-dev] [PATCH] docs: add default that all fixes are backported

2018-06-21 Thread Luca Boccassi
On Thu, 2018-06-21 at 17:00 +0100, Kevin Traynor wrote: > Set the starting point that all commits on master branch > with Fixes tag are backported to relevant stable/LTS branches. > > Of course there will be exceptions that will crop up from time > to time that need discussion, so also add a sente

Re: [dpdk-dev] [PATCH] docs: add default that all fixes are backported

2018-06-21 Thread Ferruh Yigit
On 6/21/2018 5:00 PM, Kevin Traynor wrote: > Set the starting point that all commits on master branch > with Fixes tag are backported to relevant stable/LTS branches. > > Of course there will be exceptions that will crop up from time > to time that need discussion, so also add a sentence for that.

Re: [dpdk-dev] [PATCH] examples: fix RSS hash function configuration

2018-06-21 Thread Pavan Nikhilesh
Hi Ferruh, On Wed, Jun 20, 2018 at 04:01:22PM +0100, Ferruh Yigit wrote: > ethdev layer introduced checks for application requested RSS hash > functions and returns error for ones unsupported by hardware > > This check breaks some sample applications which blindly configures > RSS hash functions w

[dpdk-dev] [PATCH] net/thunderx: fix build with gcc optimization on

2018-06-21 Thread Ferruh Yigit
build error gcc version 6.3.1 20161221 (Red Hat 6.3.1-1), with EXTRA_CFLAGS="-O3": .../drivers/net/thunderx/nicvf_ethdev.c:907:9: error: ‘txq’ may be used uninitialized in this function [-Werror=maybe-uninitialized] if (txq->pool_free == nicvf_single_pool_free_xmited_buffers) ~~~^~~~

Re: [dpdk-dev] [PATCH] examples: fix RSS hash function configuration

2018-06-21 Thread Ferruh Yigit
On 6/21/2018 5:54 PM, Pavan Nikhilesh wrote: > Hi Ferruh, > > On Wed, Jun 20, 2018 at 04:01:22PM +0100, Ferruh Yigit wrote: >> ethdev layer introduced checks for application requested RSS hash >> functions and returns error for ones unsupported by hardware >> >> This check breaks some sample appli

Re: [dpdk-dev] [PATCH] docs: add default that all fixes are backported

2018-06-21 Thread Aaron Conole
Kevin Traynor writes: > Set the starting point that all commits on master branch > with Fixes tag are backported to relevant stable/LTS branches. > > Of course there will be exceptions that will crop up from time > to time that need discussion, so also add a sentence for that. > > This is to ensu

[dpdk-dev] [PATCH v2 3/3] net/pcap: support pcap files and ifaces mix

2018-06-21 Thread ido goshen
Suggested-by: Ferruh Yigit Signed-off-by: ido goshen --- drivers/net/pcap/rte_eth_pcap.c | 82 + 1 file changed, 50 insertions(+), 32 deletions(-) diff --git a/drivers/net/pcap/rte_eth_pcap.c b/drivers/net/pcap/rte_eth_pcap.c index b21930b..33c5366 10064

Re: [dpdk-dev] [PATCH v2 2/2] net/pcap: duplicate code consolidation

2018-06-21 Thread Ido Goshen
Although there's no functional need for them I considered keeping it for maintainability reasons: 1. Keep the call flow more aligned with pcap (file) that has separated open_rx_pcap()/open_tx_pcap() 2. If in future there'll rise a need for different functionality between rx and tx then it will b

[dpdk-dev] netvsc PMD driver update plan

2018-06-21 Thread Stephen Hemminger
I have some updates to the netvsc driver that use external mbuf's and fix a couple of bugs. Would you rather: * new (V11) version consolidating those * sequence of patches against V10 * hold off until V10 is merged.

[dpdk-dev] [PATCH v2] net/i40e: remove VF interrupt handler

2018-06-21 Thread Qi Zhang
For i40evf, internal rx interrupt and adminq interrupt share the same source, that cause a lot cpu cycles be wasted on interrupt handler on rx path. This is complained by customers which require low latency (when set I40E_ITR_INTERVAL to small value), but have to be sufferred by tremendous interrup

[dpdk-dev] [Bug 64] Bound_promisc_opt:After the confounding mode is turned off, the port can receive data.

2018-06-21 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=64 Bug ID: 64 Summary: Bound_promisc_opt:After the confounding mode is turned off, the port can receive data. Product: DPDK Version: 18.05 Hardware: x86 OS: Linux

[dpdk-dev] [PATCH] vhost: fix potential null pointer dereference

2018-06-21 Thread Tiwei Bie
Coverity issue: 293097 Fixes: d90cf7d111ac ("vhost: support host notifier") Signed-off-by: Tiwei Bie --- lib/librte_vhost/vhost_user.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_vhost/vhost_user.c b/lib/librte_vhost/vhost_user.c index 26cfebec0..bea6a0428 100644 --- a/lib/l

[dpdk-dev] [PATCH v3 0/3] Support UDP/IPv4 GSO

2018-06-21 Thread Jiayu Hu
With the support of UDP Fragmentation Offload (UFO) and TCP Segmentation Offload (TSO) in virtio, VMs can exchange large UDP and TCP packets exceeding MTU between each other, which can greatly reduce per-packet processing overheads. When the destination of the large TCP and UDP packets is crossing

  1   2   >