[dpdk-dev] [Bug 178] l2fwd application does not work with option '-q'

2019-05-05 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=178 Vipin Varghese (vipin.vargh...@intel.com) changed: What|Removed |Added Status|CONFIRMED |RESOLVED Resol

[dpdk-dev] [Bug 182] make doc-guides-pdf fails with error 'make[3]: latexmk: Command not found'

2019-05-05 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=182 Vipin Varghese (vipin.vargh...@intel.com) changed: What|Removed |Added Status|CONFIRMED |RESOLVED Resol

[dpdk-dev] [PATCH] doc: remove redudant information from guide

2019-05-05 Thread Vipin Varghese
Remove redudant information from section 'Performance issue isolation'. Reword for packet capture header. Signed-off-by: Vipin Varghese --- doc/guides/howto/debug_troubleshoot.rst | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/doc/guides/howto/debug_troubleshoot.rst

Re: [dpdk-dev] [PATCH] net/iavf: enable more link speed

2019-05-05 Thread Zhang, Qi Z
> -Original Message- > From: Zhao1, Wei > Sent: Sunday, May 5, 2019 10:50 AM > To: Zhang, Qi Z ; Lu, Wenzhuo > Cc: Stillwell Jr, Paul M ; dev@dpdk.org; > sta...@dpdk.org > Subject: RE: [PATCH] net/iavf: enable more link speed > > Acked-by: Wei Zhao > > > > -Original Message-

Re: [dpdk-dev] [PATCH] net/fm10k: support Rx queue count API

2019-05-05 Thread Zhang, Qi Z
> -Original Message- > From: Wang, Xiao W > Sent: Wednesday, April 24, 2019 3:52 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org; Yigit, Ferruh ; Wang, Xiao W > > Subject: [PATCH] net/fm10k: support Rx queue count API > > Some application, e.g. the l3fwd-power sample uses rte_eth_rx_queue_cou

Re: [dpdk-dev] [PATCH] net/ice: fix EEPROM range check

2019-05-05 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Xiao Wang > Sent: Sunday, May 5, 2019 1:48 PM > To: Lu, Wenzhuo > Cc: dev@dpdk.org; Yang, Qiming ; Rong, Leyi > ; Wang, Xiao W ; > sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] net/ice: fix EEPROM range check >

Re: [dpdk-dev] [PATCH] net/i40e: add new device id for X710/XXV710 of IPN3KE

2019-05-05 Thread Zhang, Qi Z
> -Original Message- > From: Xu, Rosen > Sent: Sunday, May 5, 2019 11:27 AM > To: dev@dpdk.org > Cc: Yigit, Ferruh ; Zhang, Qi Z > ; > Xing, Beilei ; Wu, Jingjing ; > Zhang, Tianfei ; Wei, Dan ; Xu, > Rosen ; Pei, Andy ; Yang, Qiming > ; Chen, Santos > Subject: [PATCH] net/i40e: add ne

Re: [dpdk-dev] [PATCH] net/ice: minor code cleanups

2019-05-05 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Xiao Wang > Sent: Sunday, May 5, 2019 1:45 PM > To: Lu, Wenzhuo > Cc: dev@dpdk.org; Yang, Qiming ; Wang, Xiao W > > Subject: [dpdk-dev] [PATCH] net/ice: minor code cleanups > > This patch is a cleanup on comme

[dpdk-dev] [PATCH] power: fix struct cache line-alignment issues

2019-05-05 Thread Mattias Rönnblom
The ACPI and PState CPU frequency scaling drivers used the __rte_cache_aligned attribute without including rte_memory.h, which turns what looks as the declaration of a cache line-aligned struct into a non-aligned struct declaration and the definition of an instance of the struct. Fixes: e6c6dc0f96

[dpdk-dev] [PATCH v3 0/4] net/mlx5: code cleanup in rx and tx files

2019-05-05 Thread Dekel Peled
During work on Rx feature I did some cleanup actions. This series includes those changes divided by their type. --- v2: Change 2nd patch type to "fix". v3: Apply minor code-review comment on 2nd patch. Add Acked-by in all patches. --- Dekel Peled (4): net/mlx5: remove unused functions net

[dpdk-dev] [PATCH v3 2/4] net/mlx5: fix missing validation of null pointer

2019-05-05 Thread Dekel Peled
Function mlx5_rxq_ibv_release() is called in several places. Before each call except one, the input parameter is validated to make sure it is not null. This patch adds the validation where it is missing. It also changes a priv_ prefix, left in a comment, to mlx5_ prefix. Fixes: af4f09f28294 ("net

[dpdk-dev] [PATCH v3 1/4] net/mlx5: remove unused functions

2019-05-05 Thread Dekel Peled
Functions implemented but never called: mlx5_rxq_ibv_releasable() mlx5_rxq_cleanup() mlx5_txq_ibv_releasable() Function declared but not implemented: rxq_alloc_mprq_buf() This patch removes these functions from code and header file. Signed-off-by: Dekel Peled Acked-by: Shahaf Shuler Acked-by:

[dpdk-dev] [PATCH v3 4/4] net/mlx5: move locally used functions to static

2019-05-05 Thread Dekel Peled
Multiple functions were declared in header file mlx5_rxtx.h, inplemented in mlx5_rxq.c, and called only in mlx5_rxq.c. This patch moves all these functions declarations into mlx5_rxq.c, as static functions. Some functions implementation was copied higher in the file to precede the functions calls.

[dpdk-dev] [PATCH v3 3/4] net/mlx5: fix description of function return value

2019-05-05 Thread Dekel Peled
Return value of function mlx5_rxq_releasable() was not described correctly in function description. This patch updates the description to correctly describe the optional return values. Fixes: a6d83b6a9209 ("net/mlx5: standardize on negative errno values") cc: sta...@dpdk.org Signed-off-by: Dekel

[dpdk-dev] [PATCH v3] net/mlx5: fix init with zero Rx queues

2019-05-05 Thread Dekel Peled
Recent patch [1] added, at the end of mlx5_dev_configure(), a call to mlx5_proc_priv_init(), initializing process_private data of eth_dev. This call is not reached if PMD is started with zero Rx queues. In this case mlx5_dev_configure() returns earlier due to the check: if (rxqs_n == priv->

Re: [dpdk-dev] [PATCH v8] app/pdump: add pudmp exits with primary support

2019-05-05 Thread Suanming . Mou
On 2019/5/5 17:42, Thomas Monjalon wrote: Yes, either to wait one week, or fake the 19.08 release notes template to do your patch on top. Thanks.  I think it will be updated when 19.08 started.

Re: [dpdk-dev] [PATCH v8] app/pdump: add pudmp exits with primary support

2019-05-05 Thread Thomas Monjalon
05/05/2019 03:20, Suanming. Mou: > On 2019/5/5 5:17, Thomas Monjalon wrote: > > Hi, > > > > 03/05/2019 07:48, Suanming. Mou: > >> When primary app exits, the residual running pdump will stop the > >> primary app to restart. Add pdump exits with primary support. > > Sorry I fail to parse this senten

[dpdk-dev] [PATCH v4] vhost: support inflight share memory protocol feature

2019-05-05 Thread Li Lin
From: Li Lin 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 throu