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

2019-04-02 Thread Ananyev, Konstantin
> > > 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

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

2019-04-02 Thread Ananyev, Konstantin
> 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:

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

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