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

2019-04-15 Thread Honnappa Nagarahalli
> > > > > > > > > > > On Wed, Apr 10, 2019 at 06:20:04AM -0500, Honnappa Nagarahalli > > > wrote: > > > > > > Add RCU library supporting quiescent state based memory > > > > > > reclamation > > > > > method. > > > > > > This library helps identify the quiescent state of the reader > > > > > > thre

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

2019-04-15 Thread Ananyev, Konstantin
> > > > > > > > On Wed, Apr 10, 2019 at 06:20:04AM -0500, Honnappa Nagarahalli > > wrote: > > > > > Add RCU library supporting quiescent state based memory > > > > > reclamation > > > > method. > > > > > This library helps identify the quiescent state of the reader > > > > > threads so that the w

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

2019-04-12 Thread Honnappa Nagarahalli
> > > > > > On Wed, Apr 10, 2019 at 06:20:04AM -0500, Honnappa Nagarahalli > wrote: > > > > 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

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

2019-04-12 Thread Paul E. McKenney
On Thu, Apr 11, 2019 at 04:35:04AM +, Honnappa Nagarahalli wrote: > Hi Paul, > Thank you for your feedback. > > > -Original Message- > > From: Paul E. McKenney > > Sent: Wednesday, April 10, 2019 1:15 PM > > To: Honnappa Nagarahalli > > Cc: konstantin.anan...@intel.com; step...

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

2019-04-11 Thread Paul E. McKenney
On Wed, Apr 10, 2019 at 06:20:04AM -0500, Honnappa Nagarahalli wrote: > 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 >

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

2019-04-10 Thread Honnappa Nagarahalli
Hi Paul, Thank you for your feedback. > -Original Message- > From: Paul E. McKenney > Sent: Wednesday, April 10, 2019 1:15 PM > To: Honnappa Nagarahalli > Cc: konstantin.anan...@intel.com; step...@networkplumber.org; > marko.kovace...@intel.com; dev@dpdk.org; Gavin Hu (Arm Techno

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

2019-04-10 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