Re: [dpdk-dev] CALL to eth PMD maintainers: complete closing of port

2019-04-27 Thread Matan Azrad
Hi Thomas vdev_netvsc has no close API - should I change something there? > From: Thomas Monjalon > Hi all, > > Since DPDK 18.11, the behaviour of the close operation is changed if > RTE_ETH_DEV_CLOSE_REMOVE is enabled in the driver: > port is released (i.e. totally freed and data erased) on

Re: [dpdk-dev] [PATCH] net/ixgbe: 10GBASE-T SFP+ copper support

2019-04-27 Thread Ido Goshen
> -Original Message- > From: Ananyev, Konstantin > Sent: Friday, April 26, 2019 3:13 PM > To: Ido Goshen ; Lu, Wenzhuo > > Cc: dev@dpdk.org > Subject: RE: [PATCH] net/ixgbe: 10GBASE-T SFP+ copper support > > > > > > > From: Ido Goshen > > > > > > > > 10BASE-T SFP+ copper transceiver

[dpdk-dev] [PATCH] net/i40e: remove useless check for queue number

2019-04-27 Thread Wei Zhao
There is no need to do such a check of queue number, so remove it. Fixes: ac8d22de2394 ("ethdev: flatten RSS configuration in flow API") Signed-off-by: Wei Zhao --- drivers/net/i40e/i40e_ethdev.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/

Re: [dpdk-dev] [PATCH v8 1/4] rcu: add RCU library supporting QSBR mechanism

2019-04-27 Thread Ruifeng Wang (Arm Technology China)
> -Original Message- > From: dev On Behalf Of Honnappa Nagarahalli > Sent: Friday, April 26, 2019 12:40 > To: konstantin.anan...@intel.com; step...@networkplumber.org; > paul...@linux.ibm.com; marko.kovace...@intel.com; dev@dpdk.org > Cc: Honnappa Nagarahalli ; Gavin Hu (Arm > Technology

[dpdk-dev] [PATCH v3] app/pdump: add exit_with_primary option support.

2019-04-27 Thread Suanming . Mou
When primary app exits, the residual running pdump will stop the primary app to restart. Add an exit_with_primary option to make pdump exit with primary. Suggested-by: Varghese, Vipin Suggested-by: Burakov, Anatoly Signed-off-by: Suanming.Mou --- app/pdump/main.c | 24

[dpdk-dev] [PATCH v2] app/pdump: add exit_with_primary option support.

2019-04-27 Thread Suanming . Mou
When primary app exits, the residual running pdump will stop the primary app to restart. Add an exit_with_primary option to make pdump exit with primary. Suggested-by: Varghese, Vipin Suggested-by: Burakov, Anatoly Signed-off-by: Suanming.Mou --- app/pdump/main.c | 26 +

Re: [dpdk-dev] [PATCH v2 1/2] doc: fix spelling errors reported by aspell

2019-04-27 Thread Rami Rosen
Hi John, Thanks for this patch set, it really makes DPDK documentation more refined. > -(for example the collectd plugin) should be run to begin querying the API. > +(for example the CollectD plugin) should be run to begin querying the API. I am not sure about this change to "CollectD". Actuall

[dpdk-dev] [PATCH] ethdev: add size and align to compose dma zone name strings

2019-04-27 Thread wangyunjian
From: Yunjian Wang The current dma zone name consists of the port_id, queue_id and ring_name. If a port_id is reused, a new nic maybe use same dma zone name. At this time, the zone size of the new driver is differnt. When the zone is reused, it may cause illegal access to memory. Signed-off-by:

[dpdk-dev] [PATCH] ethdev: add size and align to compose dma zone name strings

2019-04-27 Thread wangyunjian
From: Yunjian Wang The current dma zone name consists of the port_id, queue_id and ring_name. If a port_id is reused, a new nic maybe use same dma zone name. At this time, the zone size of the new driver is differnt. When the zone is reused, it may cause illegal access to memory. Signed-off-by: