Re: [PATCH v2] rcu: Change return type of rcu_spawn_one_boost_kthread()

2019-06-30 Thread Byungchul Park
On Sun, Jun 30, 2019 at 12:38:34PM -0700, Paul E. McKenney wrote: > On Fri, Jun 28, 2019 at 11:43:39AM +0900, Byungchul Park wrote: > > On Thu, Jun 27, 2019 at 01:57:03PM -0700, Paul E. McKenney wrote: > > > On Thu, Jun 27, 2019 at 09:42:40AM -0400, Joel Fernandes wrote: > > > > On Thu, Jun 27,

Re: [PATCH v2] rcu: Change return type of rcu_spawn_one_boost_kthread()

2019-06-30 Thread Paul E. McKenney
On Fri, Jun 28, 2019 at 11:43:39AM +0900, Byungchul Park wrote: > On Thu, Jun 27, 2019 at 01:57:03PM -0700, Paul E. McKenney wrote: > > On Thu, Jun 27, 2019 at 09:42:40AM -0400, Joel Fernandes wrote: > > > On Thu, Jun 27, 2019 at 04:07:46PM +0900, Byungchul Park wrote: > > > > Hello, > > > > > >

Re: [PATCH v2] rcu: Change return type of rcu_spawn_one_boost_kthread()

2019-06-27 Thread Byungchul Park
t; > > > > > > Thanks, > > > Byungchul > > > > > > Changes from v1 > > > -. WARN_ON_ONCE() on failing to create rcu_boost_kthread. > > > -. Changed title and commit message a bit. > > > > > > ---8<---

Re: [PATCH v2] rcu: Change return type of rcu_spawn_one_boost_kthread()

2019-06-27 Thread Paul E. McKenney
. > > -. Changed title and commit message a bit. > > > > ---8<--- > > From 7100fcf82202f063f70f45def208ea5198412f5a Mon Sep 17 00:00:00 2001 > > From: Byungchul Park > > Date: Thu, 27 Jun 2019 15:58:10 +0900 > > Subject: [PATCH v2] rcu: Change return type of rcu

Re: [PATCH v2] rcu: Change return type of rcu_spawn_one_boost_kthread()

2019-06-27 Thread Joel Fernandes
rom v1 > -. WARN_ON_ONCE() on failing to create rcu_boost_kthread. > -. Changed title and commit message a bit. > > ---8<--- > From 7100fcf82202f063f70f45def208ea5198412f5a Mon Sep 17 00:00:00 2001 > From: Byungchul Park > Date: Thu, 27 Jun 2019 15:58:10 +09

[PATCH v2] rcu: Change return type of rcu_spawn_one_boost_kthread()

2019-06-27 Thread Byungchul Park
1 From: Byungchul Park Date: Thu, 27 Jun 2019 15:58:10 +0900 Subject: [PATCH v2] rcu: Change return type of rcu_spawn_one_boost_kthread() The return value of rcu_spawn_one_boost_kthread() is not used any longer. Change return type of that function from int to void. Signed-off-by: Byungchu