From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
To: Cong Wang <xiyou.wangcong@gmail.com>
Cc: Fengguang Wu <fengguang.wu@intel.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: BUG: tracer_alloc_buffers returned with preemption imbalance
Date: Sun, 24 Jun 2012 20:57:33 -0700 [thread overview]
Message-ID: <20120625035733.GU2516@linux.vnet.ibm.com> (raw)
In-Reply-To: <CAM_iQpW-vtnHUOBoROueui-FCrw9zB4U3vwy=PnEOLXP713WWw@mail.gmail.com>
On Sun, Jun 24, 2012 at 04:37:28PM +0800, Cong Wang wrote:
> On Sun, Jun 24, 2012 at 1:48 AM, Fengguang Wu <fengguang.wu@intel.com> wrote:
> >> > static inline int rcu_blocking_is_gp(void)
> >> > {
> >> > might_sleep(); /* Check for RCU read-side critical section. */
> >> > + preempt_disable();
> >> > return num_online_cpus() <= 1;
> >> > + preempt_enable();
> >> > }
> >>
> >> Thank you! I have no idea how a preempt_disable() causes that badness
> >> to happen, but this commit is not yet critically important, so I will
> >> drop it.
> >
> > preempt_enable() becomes dead code because of the return statement?
> > I wonder why gcc didn't issue a warning (or I failed to catch it)...
> >
>
> gcc has an option -Wunreachable-code, but we don't enable it
> when building kernel, nor it will be enabled with -Wall. If we enable it,
> we will have many false-positives as we have lots of debugging code
> which is not reachable unless we enable some debugging option.
>
> However, when I test it manually with the following code:
>
> ~% cat /tmp/unreachable.c
> int main(void)
> {
> int a = 0;
> a++;
> return ++a;
> a++;
> }
> ~% gcc -Wunreachable-code -O0 -c /tmp/unreachable.c
>
> gcc still doesn't give me any warning for the last line of the code,
> gcc optimizes it out silently, I am wondering if this is a gcc bug.
But in my case, the trailing preempt_enable() should not have been
optimized away, right? Wouldn't it be more like the following?
int a = 0;
int main(void)
{
a++;
return ++a;
a++;
}
Hmmm... But this -still- doesn't emit any warnings.
Thanx, Paul
next prev parent reply other threads:[~2012-06-25 3:58 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-23 10:12 BUG: tracer_alloc_buffers returned with preemption imbalance Fengguang Wu
2012-06-23 17:01 ` Paul E. McKenney
2012-06-23 17:48 ` Fengguang Wu
2012-06-23 20:11 ` Paul E. McKenney
2012-06-24 8:37 ` Cong Wang
2012-06-25 3:57 ` Paul E. McKenney [this message]
2012-06-25 9:10 ` David Rientjes
2012-06-25 13:20 ` Paul E. McKenney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120625035733.GU2516@linux.vnet.ibm.com \
--to=paulmck@linux.vnet.ibm.com \
--cc=fengguang.wu@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=xiyou.wangcong@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox