commit | e551f34c55b3b5bee4c51a2e5dbdb1309d10db7c | [log] [tgz] |
---|---|---|
author | Tejun Heo <tj@kernel.org> | Tue Jan 10 12:24:12 2023 -1000 |
committer | Tejun Heo <tj@kernel.org> | Wed Apr 12 13:51:55 2023 -1000 |
tree | 72468857c714f4d1c4ea1cbe944a2ce6e564b260 | |
parent | dd3c963ada3dd2c5bb62d0128cc2d90dbcfc5a13 [diff] |
blkcg: Drop unnecessary RCU read [un]locks from blkg_conf_prep/finish() Now that all RCU flavors have been combined either holding a spin lock, disabling irq or disabling preemption implies RCU read lock, so there's no need to use rcu_read_[un]lock() explicitly while holding queue_lock. This shouldn't cause any behavior changes. v2: Description updated. Leave __acquires/release on queue_lock alone. Signed-off-by: Tejun Heo <tj@kernel.org>