@@ -2016,7 +2016,7 @@ void hrtimer_sleeper_start_expires(struct hrtimer_sleeper *sl,
2016
2016
* Make the enqueue delivery mode check work on RT. If the sleeper
2017
2017
* was initialized for hard interrupt delivery, force the mode bit.
2018
2018
* This is a special case for hrtimer_sleepers because
2019
- * __hrtimer_init_sleeper () determines the delivery mode on RT so the
2019
+ * __hrtimer_setup_sleeper () determines the delivery mode on RT so the
2020
2020
* fiddling with this decision is avoided at the call sites.
2021
2021
*/
2022
2022
if (IS_ENABLED (CONFIG_PREEMPT_RT ) && sl -> timer .is_hard )
@@ -2026,8 +2026,8 @@ void hrtimer_sleeper_start_expires(struct hrtimer_sleeper *sl,
2026
2026
}
2027
2027
EXPORT_SYMBOL_GPL (hrtimer_sleeper_start_expires );
2028
2028
2029
- static void __hrtimer_init_sleeper (struct hrtimer_sleeper * sl ,
2030
- clockid_t clock_id , enum hrtimer_mode mode )
2029
+ static void __hrtimer_setup_sleeper (struct hrtimer_sleeper * sl ,
2030
+ clockid_t clock_id , enum hrtimer_mode mode )
2031
2031
{
2032
2032
/*
2033
2033
* On PREEMPT_RT enabled kernels hrtimers which are not explicitly
@@ -2067,7 +2067,7 @@ void hrtimer_setup_sleeper_on_stack(struct hrtimer_sleeper *sl,
2067
2067
clockid_t clock_id , enum hrtimer_mode mode )
2068
2068
{
2069
2069
debug_init_on_stack (& sl -> timer , clock_id , mode );
2070
- __hrtimer_init_sleeper (sl , clock_id , mode );
2070
+ __hrtimer_setup_sleeper (sl , clock_id , mode );
2071
2071
}
2072
2072
EXPORT_SYMBOL_GPL (hrtimer_setup_sleeper_on_stack );
2073
2073
0 commit comments