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

2019-04-30 Thread Hemant Agrawal
> -Original Message- > Subject: Re: [dpdk-dev] [PATCH v8 1/4] rcu: add RCU library supporting QSBR > mechanism > Importance: High > > > Compiled DPDK as both static library and shared library. > > Ran UT on ARMv8 LS2088a DPAA2 platform, 3 to 8 core

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

2019-04-29 Thread Thomas Monjalon
> Compiled DPDK as both static library and shared library. > Ran UT on ARMv8 LS2088a DPAA2 platform, 3 to 8 cores were used, tests passed. > > Tested-by: Ruifeng Wang Hemant, did you have the opportunity to test it yourself?

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

2019-04-27 Thread Ruifeng Wang (Arm Technology China)
li ; Gavin Hu (Arm > Technology China) ; Dharmik Thakkar > ; Malvika Gupta > Subject: [dpdk-dev] [PATCH v8 1/4] rcu: add RCU library supporting QSBR > mechanism > > Add RCU library supporting quiescent state based memory reclamation > method. > This library helps identify the quiescent

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

2019-04-26 Thread Jerin Jacob Kollanukkaran
; gavin...@arm.com; > dharmik.thak...@arm.com; malvika.gu...@arm.com > Subject: [dpdk-dev] [PATCH v8 1/4] rcu: add RCU library supporting QSBR > mechanism > > Add RCU library supporting quiescent state based memory reclamation method. > This library helps identify the quiescent

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

2019-04-25 Thread Honnappa Nagarahalli
Add RCU library supporting quiescent state based memory reclamation method. This library helps identify the quiescent state of the reader threads so that the writers can free the memory associated with the lock less data structures. Signed-off-by: Honnappa Nagarahalli Reviewed-by: Steve Capper R