From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: Fengguang Wu <fengguang.wu@intel.com>,
Steven Rostedt <srostedt@redhat.com>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: __update_max_tr: rcu_read_lock() used illegally while idle!
Date: Tue, 31 Jul 2012 07:41:59 -0700 [thread overview]
Message-ID: <20120731144159.GA2422@linux.vnet.ibm.com> (raw)
In-Reply-To: <1343742253.27983.47.camel@gandalf.stny.rr.com>
On Tue, Jul 31, 2012 at 09:44:13AM -0400, Steven Rostedt wrote:
> On Tue, 2012-07-31 at 20:10 +0800, Fengguang Wu wrote:
>
> > Another note: the above __update_max_tr back trace only appear accasionally.
> > The more typical error messages look like this:
> >
> > [ 16.195315] Running tests on trace events:
> > [ 16.196586] Testing event kfree_skb: [ 16.200404] ------------[ cut here ]------------
> > [ 16.201428] WARNING: at /c/wfg/linux/kernel/lockdep.c:3506 check_flags+0x125/0x154()
> > [ 16.203036] Hardware name: Bochs
> > [ 16.203763] Pid: 44, comm: rcu_torture_wri Not tainted 3.5.0+ #82
> > [ 16.205067] Call Trace:
> >
> > [ 16.205640] [<c102a9f8>] warn_slowpath_common+0x63/0x78
> > [ 16.206842] [<c10644ed>] ? check_flags+0x125/0x154
> > [ 16.207865] [<c102aaa7>] warn_slowpath_null+0x14/0x18
> > [ 16.208939] [<c10644ed>] check_flags+0x125/0x154
> > [ 16.210009] [<c106522b>] lock_is_held+0x28/0x82
> > [ 16.210023] [<c1031849>] ? _local_bh_enable_ip+0x9e/0x166
> > [ 16.210023] [<c107d0ac>] rcu_read_lock_held+0x26/0x2c
>
> This is caused by the function tracer. Every function can call this
> (even rcu_read_lock itself).
>
> We use a schedule rcu to reference a structure, and call
> rcu_dereference_raw() to get it.
>
> Perhaps we should just bypass the check?
>
> Hmm, looking at this again, perhaps it needs the
> rcu_dereference_sched()? When this was first added (3f379b03)
> rcu_dereference_raw was:
>
> #define rcu_dereference_raw(p) ({ \
> typeof(p) _________p1 = ACCESS_ONCE(p); \
> smp_read_barrier_depends(); \
> (_________p1); \
> })
>
> With no check. In fact, the check called the raw. Now it's reversed. I'm
> thinking that we need a way to not have a check. Function tracing is
> *extremely* invasive. As I said, this gets called *by* rcu_read_lock()!
> I'm not sure we want checks involved here.
???
#define rcu_dereference_raw(p) rcu_dereference_check(p, 1)
#define rcu_dereference_check(p, c) \
__rcu_dereference_check((p), rcu_read_lock_held() || (c), __rcu)
Which becomes "__rcu_dereference_check(p, 1, __rcu)":
#define __rcu_dereference_check(p, c, space) \
({ \
typeof(*p) *_________p1 = (typeof(*p)*__force )ACCESS_ONCE(p); \
rcu_lockdep_assert(c, "suspicious rcu_dereference_check()" \
" usage"); \
rcu_dereference_sparse(p, space); \
smp_read_barrier_depends(); \
((typeof(*p) __force __kernel *)(_________p1)); \
})
Which should therefore never trigger. So what is really happening here?
There is also an rcu_dereference_sched_check() as well as
rcu_dereference_sched(), so you could pass "1" in to that, but I would
hope that you are in an environment where rcu_dereference_sched_check()
would validate things correctly.
Thanx, Paul
> -- Steve
>
> > [ 16.210023] [<c107d59d>] ftrace_ops_list_func+0x82/0xca
> > [ 16.210023] [<c1050ce8>] ? sub_preempt_count+0x5/0xf1
> > [ 16.210023] [<c13e5699>] trace+0x13/0x1b
> > [ 16.210023] [<c10318ec>] ? _local_bh_enable_ip+0x141/0x166
> > [ 16.210023] [<c1050ced>] ? sub_preempt_count+0xa/0xf1
> > [ 16.210023] [<c1031849>] _local_bh_enable_ip+0x9e/0x166
> > [ 16.210023] [<c1077fea>] ? rcu_torture_writer+0xa1/0x1c5
> > [ 16.220592] [<c1031bc4>] local_bh_enable_ip+0xd/0xf
> > [ 16.220592] [<c13e3ff9>] _raw_spin_unlock_bh+0x34/0x37
> > [ 16.220592] [<c1077fea>] rcu_torture_writer+0xa1/0x1c5
> > [ 16.220592] [<c104544f>] kthread+0x6c/0x71
> > [ 16.220592] [<c1077f49>] ? rcu_torture_barrier_cbs+0x199/0x199
> > [ 16.220592] [<c10453e3>] ? insert_kthread_work+0xa8/0xa8
> > [ 16.220592] [<c13e5662>] kernel_thread_helper+0x6/0x10
> >
> > Thanks,
> > Fengguang
>
>
next prev parent reply other threads:[~2012-07-31 14:42 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-24 9:03 Fengguang Wu
2012-07-24 9:07 ` Testing tracer wakeup_rt: .. no entries found ..FAILED! Fengguang Wu
2012-07-25 1:31 ` Testing tracer wakeup: " Fengguang Wu
2012-07-30 15:45 ` Testing tracer wakeup_rt: " Steven Rostedt
2012-07-31 12:17 ` Fengguang Wu
2012-07-31 12:37 ` Avi Kivity
2012-07-31 12:43 ` Steven Rostedt
2012-07-31 12:50 ` Avi Kivity
2012-07-31 13:13 ` Steven Rostedt
2012-07-31 23:43 ` Fengguang Wu
2012-07-31 23:51 ` Steven Rostedt
2012-07-31 23:57 ` Paul E. McKenney
2012-08-01 0:09 ` Steven Rostedt
2012-08-01 0:18 ` Paul E. McKenney
2012-08-01 0:43 ` pci_get_subsys: GFP_KERNEL allocations with IRQs disabled Fengguang Wu
2012-08-22 2:50 ` Fengguang Wu
2012-08-22 7:49 ` Feng Tang
2012-08-22 13:02 ` Fengguang Wu
2012-08-22 18:02 ` Bjorn Helgaas
2012-08-23 5:45 ` Feng Tang
2012-08-23 7:45 ` [PATCH 1/2] PCI: Use local parameter pci_device_id for pci_get_subsys/class() Feng Tang
2012-09-08 1:00 ` Yinghai Lu
2012-09-08 1:32 ` Yinghai Lu
2012-09-08 1:59 ` Greg Kroah-Hartman
2012-09-08 13:42 ` Fengguang Wu
2012-09-08 15:30 ` Yinghai Lu
2012-09-08 15:34 ` Feng Tang
2012-09-08 18:40 ` Yinghai Lu
2012-09-08 21:06 ` Bjorn Helgaas
2012-08-23 7:45 ` [PATCH 2/2] PCI: Remove the obsolete no_pci_devices() check Feng Tang
2012-07-31 23:57 ` Testing tracer wakeup_rt: .. no entries found ..FAILED! Fengguang Wu
2012-08-07 13:29 ` Steven Rostedt
2012-08-07 13:32 ` Fengguang Wu
2012-08-21 15:16 ` [tip:perf/core] tracing: Fix wakeup_rt self test on virtual machines tip-bot for Steven Rostedt
2012-07-30 15:39 ` __update_max_tr: rcu_read_lock() used illegally while idle! Steven Rostedt
2012-07-31 12:05 ` Fengguang Wu
2012-07-31 12:10 ` Fengguang Wu
2012-07-31 13:44 ` Steven Rostedt
2012-07-31 14:41 ` Paul E. McKenney [this message]
2012-07-31 13:33 ` Steven Rostedt
2012-07-31 14:44 ` Paul E. McKenney
2012-07-31 14:51 ` Steven Rostedt
2012-07-31 14:56 ` Steven Rostedt
2012-07-31 15:18 ` Paul E. McKenney
2012-07-31 15:45 ` Steven Rostedt
2012-07-31 17:17 ` Paul E. McKenney
2012-07-31 17:24 ` Steven Rostedt
2012-07-31 17:44 ` Paul E. McKenney
2012-07-31 18:06 ` Steven Rostedt
2012-07-31 18:21 ` Paul E. McKenney
2012-07-31 15:00 ` 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=20120731144159.GA2422@linux.vnet.ibm.com \
--to=paulmck@linux.vnet.ibm.com \
--cc=fengguang.wu@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rostedt@goodmis.org \
--cc=srostedt@redhat.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
Powered by JetHome