Re: [dpdk-dev] [PATCH v2] examples/flow_filtering: add rte_fdir_conf initialization

2018-07-21 Thread Ori Kam
> -Original Message- > From: Rosen Xu [mailto:rosen...@intel.com] > Sent: Saturday, July 21, 2018 10:50 AM > To: dev@dpdk.org > Cc: rosen...@intel.com; ferruh.yi...@intel.com; Ori Kam > ; walter.e.gilm...@intel.com; qi.z.zh...@intel.com; > sta...@dpdk.org > Subject: [PATCH v2] examples/f

[dpdk-dev] Patch compilation failure

2018-07-21 Thread Fu, Qiaobin
Dear DPDK developers, When I submitted a DPDK patch (http://patchwork.dpdk.org/patch/43090/), however, there is a compilation issue (http://mails.dpdk.org/archives/test-report/2018-July/060307.html). When I tried to compile it in our local machine using the Target: x86_64-native-linuxapp-gcc-s

[dpdk-dev] [PATCH v3 5/5] doc: add ZLIB PMD guide

2018-07-21 Thread Shally Verma
Add zlib pmd feature support and user guide with build and run instructions Signed-off-by: Sunila Sahu Signed-off-by: Shally Verma Signed-off-by: Ashish Gupta --- MAINTAINERS | 2 + doc/guides/compressdevs/features/zlib.ini | 11 + doc/guides/compressdevs/ind

[dpdk-dev] [PATCH v3 4/5] compress/zlib: support burst enqueue/dequeue

2018-07-21 Thread Shally Verma
From: Sunila Sahu Signed-off-by: Sunila Sahu Signed-off-by: Shally Verma Signed-off-by: Ashish Gupta --- drivers/compress/zlib/zlib_pmd.c | 254 ++- 1 file changed, 253 insertions(+), 1 deletion(-) diff --git a/drivers/compress/zlib/zlib_pmd.c b/drivers/co

[dpdk-dev] [PATCH v3 3/5] compress/zlib: create private xform

2018-07-21 Thread Shally Verma
From: Sunila Sahu Create non-shareable private xform for stateless operation processing Signed-off-by: Sunila Sahu Signed-off-by: Shally Verma Signed-off-by: Ashish Gupta --- drivers/compress/zlib/zlib_pmd.c | 93 drivers/compress/zlib/zlib_pmd_ops.c

[dpdk-dev] [PATCH v3 2/5] compress/zlib: add device PMD ops

2018-07-21 Thread Shally Verma
From: Ashish Gupta Implement device configure and queue pair setup PMD ops Signed-off-by: Sunila Sahu Signed-off-by: Shally Verma Signed-off-by: Ashish Gupta --- drivers/compress/zlib/Makefile | 1 + drivers/compress/zlib/meson.build| 2 +- drivers/compress/zlib/zlib_pm

[dpdk-dev] [PATCH v3 0/5] compress: add ZLIB compression PMD

2018-07-21 Thread Shally Verma
This patch series add software zlib library (http://zlib.net/) based compression PMD in DPDK compress drivers. Application must need to install zlib prior to enabling this PMD to avail compression/decompression services. Currently driver only tested for deflate, stateless compression and decompres

[dpdk-dev] [PATCH v3 1/5] compress/zlib: add ZLIB PMD

2018-07-21 Thread Shally Verma
From: Ashish Gupta Add initial PMD setup routines in compressdev framework. ZLIB PMD appears as virtual compression device. User would need to install zlib prior to enabling this PMD. Signed-off-by: Sunila Sahu Signed-off-by: Shally Verma Signed-off-by: Ashish Gupta --- MAINTAINERS

[dpdk-dev] [PATCH v2] test: add unit tests for metrics library

2018-07-21 Thread Hari kumar Vemula
From: Hari Kumar Vemula Unit testcases are added for metrics library. Signed-off-by: Hari Kumar Vemula Reviewed-by: Reshma Pattan Reviewed-by: Remy Horton --- v2: Removal of overstated array size based testcases as suggested --- test/test/Makefile | 2 + test/test/test_metrics.c | 30

Re: [dpdk-dev] Does lthread_cond_wait need a mutex?

2018-07-21 Thread Wiles, Keith
> On Jul 20, 2018, at 8:32 PM, wubenq...@ruijie.com.cn wrote: > > Hi~ > I would be appreciate it if you could provide your lthread code for me. > And I found that DPDK lthreads does not provide lthread_cond_timedwait API > which I am looking for. > Thanks. I took the lthread code and

Re: [dpdk-dev] [PATCH v3] net/tap: add queues when attaching from secondary process

2018-07-21 Thread Wiles, Keith
> On Jul 20, 2018, at 4:51 PM, Thomas Monjalon wrote: > > 20/07/2018 17:35, Wiles, Keith: >>> On Jul 20, 2018, at 4:15 AM, Thomas Monjalon wrote: >>> + /* FIXME: handle replies.nb_received > 1 */ >> >> I am not a big fan of having TODO or FIXME comments in the code. > > What don't you lik

[dpdk-dev] [Bug 74] PMD: i40e_dcb_init_configure(): default dcb config fails. err = -53, aq_err = 3

2018-07-21 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=74 Bug ID: 74 Summary: PMD: i40e_dcb_init_configure(): default dcb config fails. err = -53, aq_err = 3 Product: DPDK Version: 16.07 Hardware: x86 OS: Other S

[dpdk-dev] [PATCH v2] examples/flow_filtering: add rte_fdir_conf initialization

2018-07-21 Thread Rosen Xu
Rte_fdir_conf of rte_eth_conf should be initialized before port initialization. It is a workaround solution when work with Intel I40e. Fixes: 4a3ef59a10c8 ("examples/flow_filtering: add simple demo of flow API") Cc: sta...@dpdk.org Signed-off-by: Rosen Xu v2 updates: === - Take more te