Re: [dpdk-dev] [PATCH] lib/rcu: fix possible spurious thread unregister

2019-10-17 Thread David Marchand
On Wed, Sep 25, 2019 at 10:01 AM David Marchand wrote: > > On Mon, Sep 9, 2019 at 3:52 PM Ruifeng Wang wrote: > > > > Thread unregister returns success while unregister not been performed. > > This is due to incorrect thread registration status check. > > Fix this issue by correcting bitmap check

Re: [dpdk-dev] [PATCH] lib/rcu: fix possible spurious thread unregister

2019-09-25 Thread David Marchand
On Mon, Sep 9, 2019 at 3:52 PM Ruifeng Wang wrote: > > Thread unregister returns success while unregister not been performed. > This is due to incorrect thread registration status check. > Fix this issue by correcting bitmap check. > > Fixes: 64994b56cfd7 ("rcu: add RCU library supporting QSBR mec

Re: [dpdk-dev] [PATCH] lib/rcu: fix possible spurious thread unregister

2019-09-12 Thread Honnappa Nagarahalli
Thanks Ruifeng, looks good. > -Original Message- > From: Ruifeng Wang > Sent: Monday, September 9, 2019 8:52 AM > To: Honnappa Nagarahalli > Cc: dev@dpdk.org; Gavin Hu (Arm Technology China) ; > nd ; Ruifeng Wang (Arm Technology China) > ; sta...@dpdk.org > Subject: [PATCH] lib/rcu: fix

[dpdk-dev] [PATCH] lib/rcu: fix possible spurious thread unregister

2019-09-09 Thread Ruifeng Wang
Thread unregister returns success while unregister not been performed. This is due to incorrect thread registration status check. Fix this issue by correcting bitmap check. Fixes: 64994b56cfd7 ("rcu: add RCU library supporting QSBR mechanism") Cc: sta...@dpdk.org Signed-off-by: Ruifeng Wang Revi