Re: [dpdk-dev] [PATCH v2] eventdev: promote adapter functions as stable

2019-04-21 Thread Gujjar, Abhinandan S
> -Original Message- > From: jer...@marvell.com > Sent: Friday, April 19, 2019 5:41 PM > To: dev@dpdk.org; Thomas Monjalon ; Jerin Jacob > ; Mattias Rönnblom ; > Van Haaren, Harry ; Gujjar, Abhinandan S > ; Rao, Nikhil ; Carrillo, > Erik G > Cc: pbhagavat...@marvell.com; hemant.agra...

Re: [dpdk-dev] [PATCH v6 0/3] lib/rcu: add RCU library supporting QSBR mechanism

2019-04-21 Thread Thomas Monjalon
17/04/2019 06:13, Honnappa Nagarahalli: > Dharmik Thakkar (1): > test/rcu_qsbr: add API and functional tests > > Honnappa Nagarahalli (2): > rcu: add RCU library supporting QSBR mechanism > doc/rcu: add lib_rcu documentation Sorry I cannot merge this library in DPDK 19.05-rc2 because of sev

Re: [dpdk-dev] [PATCH] eal: promote some experimental functions as stable

2019-04-21 Thread Thomas Monjalon
18/04/2019 12:02, Kevin Traynor: > On 18/04/2019 01:30, Thomas Monjalon wrote: > > The function rte_eal_cleanup() was introduced more than one year ago, > > in DPDK 18.02. It is no longer experimental, allowing > > pdump, proc-info and hotplug_mp apps to not need any experimental API. > > > > The

Re: [dpdk-dev] [RFC v2 2/2] eal: introduce random generator function with upper bound

2019-04-21 Thread Mattias Rönnblom
On 2019-04-20 23:08, Wiles, Keith wrote: +uint64_t __rte_experimental +rte_rand_max(uint64_t upper_bound) +{ + uint8_t zeros; + uint64_t mask = ~((uint64_t)0); + uint64_t res; + + if (upper_bound < 2) + return 0; + + zeros = __builtin_clzll(upper_bound

Re: [dpdk-dev] [PATCH v6 00/11] al: replace calls to rte_panic and refrain from new instances

2019-04-21 Thread Arnon Warshavsky
> > > What happened to this patchset? > > This is definitely an improvement. We must remove rte_panic from libs. > Arnon, are you still available to rebase this patchset in preparation > of 19.08? Or someone else? > > What are the required API breakages? I see one in ethdev which requires > a depre

Re: [dpdk-dev] [PATCH v6 00/11] al: replace calls to rte_panic and refrain from new instances

2019-04-21 Thread Thomas Monjalon
21/04/2019 21:16, Arnon Warshavsky: > Hi, > I should be able to address this for 19.08, at least the straight forward > parts. > I need to touch base again with this patchset later this week, > to see what changed since then, and see what deprecation notices are > required. > I would like to addres

Re: [dpdk-dev] [PATCH v6 0/3] use IPv4 addresses reserved for testing

2019-04-21 Thread Thomas Monjalon
10/04/2019 19:41, Stephen Hemminger: > Stephen Hemminger (3): > app/testpmd: add ability to set Tx IP and UDP parameters > examples/l3fwd: use reserved IPv4/IPv6 addresses > examples/l3fwd: format the IP addresses for printing Applied, thanks

[dpdk-dev] [PATCH] net/iavf: fix stats reset

2019-04-21 Thread Qiming Yang
stats_reset has been missed when support stats in iavf driver. This patch add statistics reset function. Fixes: f4a41a6953af ("net/avf: support stats") Cc: sta...@dpdk.org Signed-off-by: Qiming Yang --- drivers/net/iavf/iavf.h| 6 drivers/net/iavf/iavf_ethdev.c | 75 ++

Re: [dpdk-dev] [RFC v2 2/2] eal: introduce random generator function with upper bound

2019-04-21 Thread Wiles, Keith
Sent from my iPhone > On Apr 21, 2019, at 2:05 PM, Mattias Rönnblom > wrote: > > On 2019-04-20 23:08, Wiles, Keith wrote: > >>> +uint64_t __rte_experimental >>> +rte_rand_max(uint64_t upper_bound) >>> +{ >>> +uint8_t zeros; >>> +uint64_t mask = ~((uint64_t)0); >>> +uint64_t res;

[dpdk-dev] [PATCH v4] kni: add IOVA va support for kni

2019-04-21 Thread kirankumark
From: Kiran Kumar K With current KNI implementation kernel module will work only in IOVA=PA mode. This patch will add support for kernel module to work with IOVA=VA mode. The idea is to get the physical address from iova address using api iommu_iova_to_phys. Using this API, we will get the physi

Re: [dpdk-dev] [PATCH v2] eventdev: promote adapter functions as stable

2019-04-21 Thread Hemant Agrawal
Acked-by: Hemant Agrawal

[dpdk-dev] [PATCH v5] kni: add IOVA va support for kni

2019-04-21 Thread kirankumark
From: Kiran Kumar K With current KNI implementation kernel module will work only in IOVA=PA mode. This patch will add support for kernel module to work with IOVA=VA mode. The idea is to get the physical address from iova address using api iommu_iova_to_phys. Using this API, we will get the physi

Re: [dpdk-dev] [PATCH v4 1/2] examples/ipsec-secgw: fix 1st packet dropped for inline crypto

2019-04-21 Thread Akhil Goyal
Hi Bernard, > > Hi Akhil, > > > > > Subject: RE: [PATCH v4 1/2] examples/ipsec-secgw: fix 1st packet dropped > > for inline crypto > > > > > + if (sa->type == > > RTE_SECURITY_ACTION_TYPE_LOOKASIDE_PROTOCOL) { > > > + ctx = (struct rte_security_ctx *) > > > +

Re: [dpdk-dev] [PATCH] net/ice: fix coverity issues

2019-04-21 Thread Yang, Qiming
-Original Message- From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Wenzhuo Lu Sent: Thursday, April 18, 2019 9:31 AM To: dev@dpdk.org Cc: Lu, Wenzhuo ; sta...@dpdk.org Subject: [dpdk-dev] [PATCH] net/ice: fix coverity issues Fix the issues reported by Coverity check, "Null-checking