File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -3077,7 +3077,7 @@ Notice that we lost the sys_nanosleep.
3077
3077
# cat set_ftrace_filter
3078
3078
hrtimer_run_queues
3079
3079
hrtimer_run_pending
3080
- hrtimer_init
3080
+ hrtimer_setup
3081
3081
hrtimer_cancel
3082
3082
hrtimer_try_to_cancel
3083
3083
hrtimer_forward
@@ -3115,7 +3115,7 @@ Again, now we want to append.
3115
3115
# cat set_ftrace_filter
3116
3116
hrtimer_run_queues
3117
3117
hrtimer_run_pending
3118
- hrtimer_init
3118
+ hrtimer_setup
3119
3119
hrtimer_cancel
3120
3120
hrtimer_try_to_cancel
3121
3121
hrtimer_forward
Original file line number Diff line number Diff line change @@ -185,12 +185,12 @@ TRACE_EVENT(timer_base_idle,
185
185
{ HRTIMER_MODE_REL_PINNED_HARD, "REL|PINNED|HARD" })
186
186
187
187
/**
188
- * hrtimer_init - called when the hrtimer is initialized
188
+ * hrtimer_setup - called when the hrtimer is initialized
189
189
* @hrtimer: pointer to struct hrtimer
190
190
* @clockid: the hrtimers clock
191
191
* @mode: the hrtimers mode
192
192
*/
193
- TRACE_EVENT (hrtimer_init ,
193
+ TRACE_EVENT (hrtimer_setup ,
194
194
195
195
TP_PROTO (struct hrtimer * hrtimer , clockid_t clockid ,
196
196
enum hrtimer_mode mode ),
Original file line number Diff line number Diff line change @@ -468,14 +468,14 @@ static inline void debug_hrtimer_deactivate(struct hrtimer *timer) { }
468
468
static inline void debug_setup (struct hrtimer * timer , clockid_t clockid , enum hrtimer_mode mode )
469
469
{
470
470
debug_hrtimer_init (timer );
471
- trace_hrtimer_init (timer , clockid , mode );
471
+ trace_hrtimer_setup (timer , clockid , mode );
472
472
}
473
473
474
474
static inline void debug_setup_on_stack (struct hrtimer * timer , clockid_t clockid ,
475
475
enum hrtimer_mode mode )
476
476
{
477
477
debug_hrtimer_init_on_stack (timer );
478
- trace_hrtimer_init (timer , clockid , mode );
478
+ trace_hrtimer_setup (timer , clockid , mode );
479
479
}
480
480
481
481
static inline void debug_activate (struct hrtimer * timer ,
Original file line number Diff line number Diff line change 6
6
set -e
7
7
8
8
syscall=" landlock_add_rule"
9
- non_syscall=" timer:hrtimer_init ,timer:hrtimer_start"
9
+ non_syscall=" timer:hrtimer_setup ,timer:hrtimer_start"
10
10
11
11
TESTPROG=" perf test -w landlock"
12
12
You can’t perform that action at this time.
0 commit comments