提交 06e79976 编写于 作者: P Paul E. McKenney 提交者: Ingo Molnar

rcu: Remove lockdep annotations from RCU's _notrace() API members

The lockdep annotations rcu_read_acquire() and rcu_read_release()
might lead to infinite looping if called from lockdep.  So this patch
removes them.  Formal repost of http://lkml.org/lkml/2009/8/25/309
on the strength of Lai Jiangshan's review.
Suggested-by: NLai Jiangshan <laijs@cn.fujitsu.com>
Suggested-by: NMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Reviewed-by: NLai Jiangshan <laijs@cn.fujitsu.com>
Signed-off-by: NPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: dipankar@in.ibm.com
Cc: akpm@linux-foundation.org
Cc: josht@linux.vnet.ibm.com
Cc: dvhltc@us.ibm.com
Cc: niv@us.ibm.com
Cc: peterz@infradead.org
Cc: rostedt@goodmis.org
LKML-Reference: <20090826015337.GA18904@linux.vnet.ibm.com>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 c935a331
...@@ -195,7 +195,6 @@ static inline notrace void rcu_read_lock_sched_notrace(void) ...@@ -195,7 +195,6 @@ static inline notrace void rcu_read_lock_sched_notrace(void)
{ {
preempt_disable_notrace(); preempt_disable_notrace();
__acquire(RCU_SCHED); __acquire(RCU_SCHED);
rcu_read_acquire();
} }
/* /*
...@@ -211,7 +210,6 @@ static inline void rcu_read_unlock_sched(void) ...@@ -211,7 +210,6 @@ static inline void rcu_read_unlock_sched(void)
} }
static inline notrace void rcu_read_unlock_sched_notrace(void) static inline notrace void rcu_read_unlock_sched_notrace(void)
{ {
rcu_read_release();
__release(RCU_SCHED); __release(RCU_SCHED);
preempt_enable_notrace(); preempt_enable_notrace();
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册