Skip to content
Commit 9243e543 authored by Steven Rostedt (Google)'s avatar Steven Rostedt (Google)
Browse files

tracefs/eventfs: Use list_for_each_srcu() in dcache_dir_open_wrapper()



The eventfs files list is protected by SRCU. In earlier iterations it was
protected with just RCU, but because it needed to also call sleepable
code, it had to be switch to SRCU. The dcache_dir_open_wrapper()
list_for_each_rcu() was missed and did not get converted over to
list_for_each_srcu(). That needs to be fixed.

Link: https://lore.kernel.org/linux-trace-kernel/20230911120053.ca82f545e7f46ea753deda18@kernel.org/
Link: https://lore.kernel.org/linux-trace-kernel/20230911200654.71ce927c@gandalf.local.home

Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Ajay Kaher <akaher@vmware.com>
Cc: "Paul E. McKenney" <paulmck@kernel.org>
Reported-by: default avatarMasami Hiramatsu (Google) <mhiramat@kernel.org>
Fixes: 63940449

 ("eventfs: Implement eventfs lookup, read, open functions")
Signed-off-by: default avatarSteven Rostedt (Google) <rostedt@goodmis.org>
parent 62663b84
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment