Re: [dpdk-dev] [PATCH] mark experimental variables

2019-12-03 Thread Andrew Rybchenko
On 12/2/19 6:20 PM, David Marchand wrote: > So far, we did not pay attention to direct access to variables but they > are part of the API/ABI too and should be clearly identified. > > Introduce a __rte_experimental_var tag and mark existing exported > variables. > > Fixes: a4bcd61de82d ("buildtoo

[dpdk-dev] [PATCH 1/2] net/i40e: set fixed flag for exact link speed

2019-12-03 Thread Guinan Sun
Setting exact link speed makes sense if auto-negotiation is disabled. Fixed flag is required to disable auto-negotiation. Signed-off-by: Guinan Sun --- drivers/net/i40e/i40e_ethdev.c | 17 +++-- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/drivers/net/i40e/i40e_ethd

[dpdk-dev] [PATCH 0/2] drivers/net: set fixed flag for exact link speed

2019-12-03 Thread Guinan Sun
Setting exact link speed makes sense if auto-negotiation is disabled. Fixed flag is required to disable auto-negotiation. Guinan Sun (2): net/i40e: set fixed flag for exact link speed net/ixgbe: set fixed flag for exact link speed drivers/net/i40e/i40e_ethdev.c | 17 +++-- driv

[dpdk-dev] [PATCH 2/2] net/ixgbe: set fixed flag for exact link speed

2019-12-03 Thread Guinan Sun
Setting exact link speed makes sense if auto-negotiation is disabled. Fixed flag is required to disable auto-negotiation. Signed-off-by: Guinan Sun --- drivers/net/ixgbe/ixgbe_ethdev.c | 20 +++- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/drivers/net/ixgbe/ixg

Re: [dpdk-dev] [PATCH] kernel/linux: fix kernel dir for meson

2019-12-03 Thread Bruce Richardson
On Tue, Dec 03, 2019 at 01:33:19PM +0800, Ye Xiaolong wrote: > On 12/02, Bruce Richardson wrote: > >On Mon, Dec 02, 2019 at 07:34:54PM +0800, Ye Xiaolong wrote: > >> On 12/02, Igor Ryzhov wrote: > >> >We should at least install it into /lib/modules/kernel-version. For > >> >convenience, dpdk module

Re: [dpdk-dev] [PATCH] version: 20.02-rc0

2019-12-03 Thread Thomas Monjalon
02/12/2019 16:29, David Marchand: > On Mon, Dec 2, 2019 at 3:57 PM Thomas Monjalon wrote: > > > > Start a new release cycle with empty release notes. > > > > Signed-off-by: Thomas Monjalon > > > > --- a/VERSION > > +++ b/VERSION > > @@ -1 +1 @@ > > -19.11.0 > > +20.02-rc0 > > 20.02.0-rc0 ? > >

Re: [dpdk-dev] [PATCH v2] kernel/linux: fix kernel dir for meson

2019-12-03 Thread Bruce Richardson
On Tue, Dec 03, 2019 at 01:29:17PM +0800, Xiaolong Ye wrote: > kernel_dir option in meson build is equivalent to RTE_KERNELDIR in make > system, for cross-compilation case, users would specify it as local > kernel src dir like > > //target-arm_glibc/linux-arm/linux-4.19.81/ > > Current meson buil

Re: [dpdk-dev] [PATCH] net/pcap: truncate packet if it is too large

2019-12-03 Thread Ferruh Yigit
On 11/8/2019 2:33 AM, Zhike Wang wrote: > From: Zhike Wang > > Previously large packet would be dropped, instead now it is better to keep it > via truncating it. Looks reasonable, thanks. cc'ing Cian too, since he did some pcap work recently. > > Signed-off-by: Zhike Wang > --- > drivers/n

Re: [dpdk-dev] [dpdk-stable] [PATCH] net/bonding: do not inherit slave device configuration

2019-12-03 Thread Ferruh Yigit
On 11/19/2019 12:40 PM, Andrew Rybchenko wrote: > On 11/19/19 3:18 PM, Ferruh Yigit wrote: >> On 11/19/2019 9:03 AM, Andrew Rybchenko wrote: >>> Bonding device should control bonded devices configuration. >>> >>> Also avoid usage of slave's data->dev_conf. >>> >>> Fixes: 2efb58cbab6e ("bond: new li

Re: [dpdk-dev] [PATCH v3 0/7] Add ABI compatibility checks to the meson build

2019-12-03 Thread David Marchand
On Fri, Nov 29, 2019 at 10:09 PM Kevin Laatz wrote: > > With the recent changes made to stabilize ABI versioning in DPDK, it will > become increasingly important to check patches for ABI compatibility. We > propose adding the ABI compatibility checking to be done as part of the > build. > > The ad

[dpdk-dev] [PATCH v3] build: add dockerfile for building docker image

2019-12-03 Thread Abdul Halim
Adding a Dockerfile with Ubuntu bionic base image to build dpdk as shared library. This docker image could be used as base image to build and run dpdk applications in containers. Signed-off-by: Abdul Halim --- v2: * renamed Dockerfile name from Dockerfile.ubuntu to Dockerfile.bionic * added

Re: [dpdk-dev] [PATCH] app/testpmd: show mac addresses added to a port

2019-12-03 Thread Ferruh Yigit
On 11/25/2019 8:27 AM, Kalesh A P wrote: > From: Kalesh AP > > Patch adds a runtime function to display the unicast and > multicast MAC addresses added to a port. > > Syntax: > show port (port_id) macs|mcast_macs > > Usage: > testpmd> show port 0 macs > Number of MAC address added: 1 >

Re: [dpdk-dev] [PATCH] app/testpmd: show mac addresses added to a port

2019-12-03 Thread Ferruh Yigit
On 12/3/2019 11:59 AM, Ferruh Yigit wrote: > On 11/25/2019 8:27 AM, Kalesh A P wrote: >> From: Kalesh AP >> >> Patch adds a runtime function to display the unicast and >> multicast MAC addresses added to a port. >> >> Syntax: >> show port (port_id) macs|mcast_macs >> >> Usage: >> testpmd> sho

Re: [dpdk-dev] [PATCH v2] kernel/linux: fix kernel dir for meson

2019-12-03 Thread Ye Xiaolong
On 12/03, Bruce Richardson wrote: >On Tue, Dec 03, 2019 at 01:29:17PM +0800, Xiaolong Ye wrote: >> kernel_dir option in meson build is equivalent to RTE_KERNELDIR in make >> system, for cross-compilation case, users would specify it as local >> kernel src dir like >> >> //target-arm_glibc/linux-ar

Re: [dpdk-dev] [PATCH 2/9] net/hns3: get link state change through mailbox

2019-12-03 Thread Ferruh Yigit
On 12/2/2019 2:51 AM, Wei Hu (Xavier) wrote: > From: Hongbo Zheng > > When link down occurs, firmware adds the function of sending message > to PF driver through mailbox, hns3 PMD driver can recognize link state > change faster through the message. Hi Xavier, As far as I can see the 'link_updat

Re: [dpdk-dev] [PATCH 2/9] net/hns3: get link state change through mailbox

2019-12-03 Thread Ferruh Yigit
On 12/3/2019 1:16 PM, Ferruh Yigit wrote: > On 12/2/2019 2:51 AM, Wei Hu (Xavier) wrote: >> From: Hongbo Zheng >> >> When link down occurs, firmware adds the function of sending message >> to PF driver through mailbox, hns3 PMD driver can recognize link state >> change faster through the message.

Re: [dpdk-dev] [PATCH v2] kernel/linux: fix kernel dir for meson

2019-12-03 Thread Bruce Richardson
On Tue, Dec 03, 2019 at 08:33:22PM +0800, Ye Xiaolong wrote: > On 12/03, Bruce Richardson wrote: > >On Tue, Dec 03, 2019 at 01:29:17PM +0800, Xiaolong Ye wrote: > >> kernel_dir option in meson build is equivalent to RTE_KERNELDIR in make > >> system, for cross-compilation case, users would specify

Re: [dpdk-dev] [PATCH v2] kernel/linux: fix kernel dir for meson

2019-12-03 Thread Ye Xiaolong
On 12/03, Bruce Richardson wrote: >On Tue, Dec 03, 2019 at 08:33:22PM +0800, Ye Xiaolong wrote: >> On 12/03, Bruce Richardson wrote: >> >On Tue, Dec 03, 2019 at 01:29:17PM +0800, Xiaolong Ye wrote: >> >> kernel_dir option in meson build is equivalent to RTE_KERNELDIR in make >> >> system, for cross

Re: [dpdk-dev] [PATCH] service: don't walk out of bounds when checking services

2019-12-03 Thread Aaron Conole
David Marchand writes: > On Tue, Nov 26, 2019 at 3:56 PM Aaron Conole wrote: >> >> The service_valid call is used without properly bounds checking the >> input parameter. Almost all instances of the service_valid call are >> inside a for() loop that prevents excessive walks, but some of the >>

Re: [dpdk-dev] [PATCH] mark experimental variables

2019-12-03 Thread Neil Horman
On Mon, Dec 02, 2019 at 04:20:29PM +0100, David Marchand wrote: > So far, we did not pay attention to direct access to variables but they > are part of the API/ABI too and should be clearly identified. > > Introduce a __rte_experimental_var tag and mark existing exported > variables. > > Fixes: a

Re: [dpdk-dev] [PATCH v3 0/7] Add ABI compatibility checks to the meson build

2019-12-03 Thread Laatz, Kevin
On 03/12/2019 11:03, David Marchand wrote: On Fri, Nov 29, 2019 at 10:09 PM Kevin Laatz wrote: With the recent changes made to stabilize ABI versioning in DPDK, it will become increasingly important to check patches for ABI compatibility. We propose adding the ABI compatibility checking to be d

Re: [dpdk-dev] [PATCH v4 1/7] bus/fslmc: change to dynamic logging

2019-12-03 Thread Ferruh Yigit
On 4/2/2018 3:05 PM, Shreyansh Jain wrote: > Signed-off-by: Shreyansh Jain > Acked-by: Hemant Agrawal <...> > diff --git a/drivers/bus/fslmc/fslmc_bus.c b/drivers/bus/fslmc/fslmc_bus.c > index 5ee0beb85..4d29b53b1 100644 > --- a/drivers/bus/fslmc/fslmc_bus.c > +++ b/drivers/bus/fslmc/fslmc_bus.

[dpdk-dev] [PATCH v3] kernel/linux: fix kernel dir for meson

2019-12-03 Thread Xiaolong Ye
kernel_dir option in meson build is equivalent to RTE_KERNELDIR in make system, for cross-compilation case, users would specify it as local kernel src dir like //target-arm_glibc/linux-arm/linux-4.19.81/ Current meson build would fail to compile kernel module if user specify kernel_dir as above,

[dpdk-dev] [PATCH v2] service: don't walk out of bounds when checking services

2019-12-03 Thread Aaron Conole
The service_valid call is used without properly bounds checking the input parameter. Almost all instances of the service_valid call are inside a for() loop that prevents excessive walks, but some of the public APIs don't bounds check and will pass invalid arguments. Prevent this by using SERVICE_

Re: [dpdk-dev] [PATCH 0/7] net/mlx5: support for flow action on VLAN header

2019-12-03 Thread Hideyuki Yamashita
Hello Matan and Slava, Thanks for your quick response. How about the following? BR, Hideyuki Yamashita NTT TechnoCross > Hello Matan and Slava, > > Thanks for your quick response. > > 1. What you were saying is correct. > When I create flow with dst mac 10:22:33:44:55:66 instead of > 11:22:3

[dpdk-dev] [PATCH v2] vhost: add config change slave msg support

2019-12-03 Thread Li Feng
This msg is used to notify qemu that should get the config of backend. For example, vhost-user-blk uses this msg to notify guest os the compacity of backend has changed. Signed-off-by: Li Feng --- v2: * Fix a little log typo. lib/librte_vhost/vhost_user.c | 31 +++

[dpdk-dev] [PATCH v2] vhost: add config change slave msg support

2019-12-03 Thread Li Feng
This msg is used to notify qemu that should get the config of backend. For example, vhost-user-blk uses this msg to notify guest os the compacity of backend has changed. Signed-off-by: Li Feng --- v2: * Fix a little log typo. lib/librte_vhost/vhost_user.c | 31 +++

[dpdk-dev] [DPDK] net/virtio: packed ring notification data feature support

2019-12-03 Thread Cheng Jiang
This patch supports the feature that the driver passes extra data (besides identifying the virtqueue) in its device notifications. Signed-off-by: Cheng Jiang --- drivers/net/virtio/virtio_ethdev.h | 3 ++- drivers/net/virtio/virtio_pci.c| 15 ++- drivers/net/virtio/virtio_pci.h