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

2019-04-28 Thread Paul E. McKenney
On Mon, Apr 22, 2019 at 11:31:28PM -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 v7 1/3] rcu: add RCU library supporting QSBR mechanism

2019-04-24 Thread Honnappa Nagarahalli
> > > > > > On Mon, Apr 22, 2019 at 11:31:28PM -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 th

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

2019-04-24 Thread Jerin Jacob Kollanukkaran
China) > ; Dharmik Thakkar ; > Malvika Gupta ; Honnappa Nagarahalli > ; bruce.richard...@intel.com; nd > ; tho...@monjalon.net; nd > Subject: Re: [dpdk-dev] [PATCH v7 1/3] rcu: add RCU library supporting QSBR > mechanism > > > > > On Mon, Apr 22, 2019 at 11:31:28

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

2019-04-24 Thread Ruifeng Wang (Arm Technology China)
rahalli ; Gavin Hu (Arm > Technology China) ; Dharmik Thakkar > ; Malvika Gupta > Subject: [dpdk-dev] [PATCH v7 1/3] rcu: add RCU library supporting QSBR > mechanism > *snip* > +int __rte_experimental > +rte_rcu_qsbr_thread_unregister(struct rte_rcu_qsbr *v, unsigned int >

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

2019-04-23 Thread Honnappa Nagarahalli
> > On Mon, Apr 22, 2019 at 11:31:28PM -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

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

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