diff options
author | 2024-10-16 09:19:29 -0700 | |
---|---|---|
committer | 2024-10-23 18:00:17 +0200 | |
commit | 26ff1fb02991e1260481185bb5ccab1ee498d5e4 (patch) | |
tree | 3a72625c5f0bb15dff4bdc1117f6b545dbda980a /include/linux/rcutiny.h | |
parent | rcu/nocb: Fix rcuog wake-up from offline softirq (diff) | |
download | wireguard-linux-26ff1fb02991e1260481185bb5ccab1ee498d5e4.tar.xz wireguard-linux-26ff1fb02991e1260481185bb5ccab1ee498d5e4.zip |
rcu: Delete unused rcu_gp_might_be_stalled() function
The rcu_gp_might_be_stalled() function is no longer used, so this commit
removes it.
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Reviewed-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Signed-off-by: Frederic Weisbecker <frederic@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | include/linux/rcutiny.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/rcutiny.h b/include/linux/rcutiny.h index 0ee270b3f5ed..fe42315f667f 100644 --- a/include/linux/rcutiny.h +++ b/include/linux/rcutiny.h @@ -165,7 +165,6 @@ static inline bool rcu_inkernel_boot_has_ended(void) { return true; } static inline bool rcu_is_watching(void) { return true; } static inline void rcu_momentary_eqs(void) { } static inline void kfree_rcu_scheduler_running(void) { } -static inline bool rcu_gp_might_be_stalled(void) { return false; } /* Avoid RCU read-side critical sections leaking across. */ static inline void rcu_all_qs(void) { barrier(); } |