From mboxrd@z Thu Jan 1 00:00:00 1970 From: paulmck@linux.vnet.ibm.com (Paul E. McKenney) Date: Fri, 3 Oct 2008 08:14:31 -0700 Subject: [ltt-dev] [PATCH] rcu: RCU-based detection of stalled CPUs for Classic RCU, fix In-Reply-To: <20081003084233.GA15637@elte.hu> References: <20081002003628.GA7877@linux.vnet.ibm.com> <20081002080726.GB17695@elte.hu> <20081002140507.GB6729@linux.vnet.ibm.com> <20081002151046.GB2473@Krystal> <20081002174318.GB7324@linux.vnet.ibm.com> <20081002185115.GA11047@Krystal> <20081002225537.GA6706@linux.vnet.ibm.com> <20081002230639.GA7522@linux.vnet.ibm.com> <20081003083947.GB7636@elte.hu> <20081003084233.GA15637@elte.hu> Message-ID: <20081003151431.GC6246@linux.vnet.ibm.com> On Fri, Oct 03, 2008 at 10:42:33AM +0200, Ingo Molnar wrote: > > -tip testing found a minor build bug - find the fix below. > > Ingo > > --------------------> > >From 2ec2b482b10a1ed3493c224f1893cddd3d33833b Mon Sep 17 00:00:00 2001 > From: Ingo Molnar > Date: Fri, 3 Oct 2008 10:41:00 +0200 > Subject: [PATCH] rcu: RCU-based detection of stalled CPUs for Classic RCU, fix > > fix the !CONFIG_RCU_CPU_STALL_DETECTOR path: > > kernel/rcuclassic.c: In function '__rcu_pending': > kernel/rcuclassic.c:609: error: too few arguments to function 'check_cpu_stall' > > Signed-off-by: Ingo Molnar > --- > kernel/rcuclassic.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/kernel/rcuclassic.c b/kernel/rcuclassic.c > index 0d07e6e..37f72e5 100644 > --- a/kernel/rcuclassic.c > +++ b/kernel/rcuclassic.c > @@ -239,7 +239,7 @@ static void record_gp_stall_check_time(struct rcu_ctrlblk *rcp) > { > } > > -static void check_cpu_stall(struct rcu_ctrlblk *rcp, struct rcu_data *rdp) > +static inline void check_cpu_stall(struct rcu_ctrlblk *rcp) > { > } I should have learned by now to test with all relevant config parameter combinations... My apologies for the hassle!!! Thanx, Paul