mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-01 00:58:39 +02:00 
			
		
		
		
	tracing: Fix irqsoff and wakeup latency tracers when using function graph
The function graph tracer has become generic so that kretprobes and BPF
can use it along with function graph tracing itself. Some of the
infrastructure was specific for function graph tracing such as recording
the calltime and return time of the functions. Calling the clock code on a
high volume function does add overhead. The calculation of the calltime
was removed from the generic code and placed into the function graph
tracer itself so that the other users did not incur this overhead as they
did not need that timestamp.
The calltime field was still kept in the generic return entry structure
and the function graph return entry callback filled it as that structure
was passed to other code.
But this broke both irqsoff and wakeup latency tracer as they still
depended on the trace structure containing the calltime when the option
display-graph is set as it used some of those same functions that the
function graph tracer used. But now the calltime was not set and was just
zero. This caused the calculation of the function time to be the absolute
value of the return timestamp and not the length of the function.
 # cd /sys/kernel/tracing
 # echo 1 > options/display-graph
 # echo irqsoff > current_tracer
The tracers went from:
 #   REL TIME      CPU  TASK/PID       ||||     DURATION                  FUNCTION CALLS
 #      |          |     |    |        ||||      |   |                     |   |   |   |
        0 us |   4)    <idle>-0    |  d..1. |   0.000 us    |  irqentry_enter();
        3 us |   4)    <idle>-0    |  d..2. |               |  irq_enter_rcu() {
        4 us |   4)    <idle>-0    |  d..2. |   0.431 us    |    preempt_count_add();
        5 us |   4)    <idle>-0    |  d.h2. |               |    tick_irq_enter() {
        5 us |   4)    <idle>-0    |  d.h2. |   0.433 us    |      tick_check_oneshot_broadcast_this_cpu();
        6 us |   4)    <idle>-0    |  d.h2. |   2.426 us    |      ktime_get();
        9 us |   4)    <idle>-0    |  d.h2. |               |      tick_nohz_stop_idle() {
       10 us |   4)    <idle>-0    |  d.h2. |   0.398 us    |        nr_iowait_cpu();
       11 us |   4)    <idle>-0    |  d.h1. |   1.903 us    |      }
       11 us |   4)    <idle>-0    |  d.h2. |               |      tick_do_update_jiffies64() {
       12 us |   4)    <idle>-0    |  d.h2. |               |        _raw_spin_lock() {
       12 us |   4)    <idle>-0    |  d.h2. |   0.360 us    |          preempt_count_add();
       13 us |   4)    <idle>-0    |  d.h3. |   0.354 us    |          do_raw_spin_lock();
       14 us |   4)    <idle>-0    |  d.h2. |   2.207 us    |        }
       15 us |   4)    <idle>-0    |  d.h3. |   0.428 us    |        calc_global_load();
       16 us |   4)    <idle>-0    |  d.h3. |               |        _raw_spin_unlock() {
       16 us |   4)    <idle>-0    |  d.h3. |   0.380 us    |          do_raw_spin_unlock();
       17 us |   4)    <idle>-0    |  d.h3. |   0.334 us    |          preempt_count_sub();
       18 us |   4)    <idle>-0    |  d.h1. |   1.768 us    |        }
       18 us |   4)    <idle>-0    |  d.h2. |               |        update_wall_time() {
      [..]
To:
 #   REL TIME      CPU  TASK/PID       ||||     DURATION                  FUNCTION CALLS
 #      |          |     |    |        ||||      |   |                     |   |   |   |
        0 us |   5)    <idle>-0    |  d.s2. |   0.000 us    |  _raw_spin_lock_irqsave();
        0 us |   5)    <idle>-0    |  d.s3. |   312159583 us |      preempt_count_add();
        2 us |   5)    <idle>-0    |  d.s4. |   312159585 us |      do_raw_spin_lock();
        3 us |   5)    <idle>-0    |  d.s4. |               |      _raw_spin_unlock() {
        3 us |   5)    <idle>-0    |  d.s4. |   312159586 us |        do_raw_spin_unlock();
        4 us |   5)    <idle>-0    |  d.s4. |   312159587 us |        preempt_count_sub();
        4 us |   5)    <idle>-0    |  d.s2. |   312159587 us |      }
        5 us |   5)    <idle>-0    |  d.s3. |               |      _raw_spin_lock() {
        5 us |   5)    <idle>-0    |  d.s3. |   312159588 us |        preempt_count_add();
        6 us |   5)    <idle>-0    |  d.s4. |   312159589 us |        do_raw_spin_lock();
        7 us |   5)    <idle>-0    |  d.s3. |   312159590 us |      }
        8 us |   5)    <idle>-0    |  d.s4. |   312159591 us |      calc_wheel_index();
        9 us |   5)    <idle>-0    |  d.s4. |               |      enqueue_timer() {
        9 us |   5)    <idle>-0    |  d.s4. |               |        wake_up_nohz_cpu() {
       11 us |   5)    <idle>-0    |  d.s4. |               |          native_smp_send_reschedule() {
       11 us |   5)    <idle>-0    |  d.s4. |   312171987 us |            default_send_IPI_single_phys();
    12408 us |   5)    <idle>-0    |  d.s3. |   312171990 us |          }
    12408 us |   5)    <idle>-0    |  d.s3. |   312171991 us |        }
    12409 us |   5)    <idle>-0    |  d.s3. |   312171991 us |      }
Where the calculation of the time for each function was the return time
minus zero and not the time of when the function returned.
Have these tracers also save the calltime in the fgraph data section and
retrieve it again on the return to get the correct timings again.
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Link: https://lore.kernel.org/20250113183124.61767419@gandalf.local.home
Fixes: f1f36e22be ("ftrace: Have calltime be saved in the fgraph storage")
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
			
			
This commit is contained in:
		
							parent
							
								
									5bc55a333a
								
							
						
					
					
						commit
						a485ea9e3e
					
				
					 2 changed files with 28 additions and 0 deletions
				
			
		|  | @ -182,6 +182,7 @@ static int irqsoff_graph_entry(struct ftrace_graph_ent *trace, | ||||||
| 	struct trace_array_cpu *data; | 	struct trace_array_cpu *data; | ||||||
| 	unsigned long flags; | 	unsigned long flags; | ||||||
| 	unsigned int trace_ctx; | 	unsigned int trace_ctx; | ||||||
|  | 	u64 *calltime; | ||||||
| 	int ret; | 	int ret; | ||||||
| 
 | 
 | ||||||
| 	if (ftrace_graph_ignore_func(gops, trace)) | 	if (ftrace_graph_ignore_func(gops, trace)) | ||||||
|  | @ -199,6 +200,12 @@ static int irqsoff_graph_entry(struct ftrace_graph_ent *trace, | ||||||
| 	if (!func_prolog_dec(tr, &data, &flags)) | 	if (!func_prolog_dec(tr, &data, &flags)) | ||||||
| 		return 0; | 		return 0; | ||||||
| 
 | 
 | ||||||
|  | 	calltime = fgraph_reserve_data(gops->idx, sizeof(*calltime)); | ||||||
|  | 	if (!calltime) | ||||||
|  | 		return 0; | ||||||
|  | 
 | ||||||
|  | 	*calltime = trace_clock_local(); | ||||||
|  | 
 | ||||||
| 	trace_ctx = tracing_gen_ctx_flags(flags); | 	trace_ctx = tracing_gen_ctx_flags(flags); | ||||||
| 	ret = __trace_graph_entry(tr, trace, trace_ctx); | 	ret = __trace_graph_entry(tr, trace, trace_ctx); | ||||||
| 	atomic_dec(&data->disabled); | 	atomic_dec(&data->disabled); | ||||||
|  | @ -213,12 +220,19 @@ static void irqsoff_graph_return(struct ftrace_graph_ret *trace, | ||||||
| 	struct trace_array_cpu *data; | 	struct trace_array_cpu *data; | ||||||
| 	unsigned long flags; | 	unsigned long flags; | ||||||
| 	unsigned int trace_ctx; | 	unsigned int trace_ctx; | ||||||
|  | 	u64 *calltime; | ||||||
|  | 	int size; | ||||||
| 
 | 
 | ||||||
| 	ftrace_graph_addr_finish(gops, trace); | 	ftrace_graph_addr_finish(gops, trace); | ||||||
| 
 | 
 | ||||||
| 	if (!func_prolog_dec(tr, &data, &flags)) | 	if (!func_prolog_dec(tr, &data, &flags)) | ||||||
| 		return; | 		return; | ||||||
| 
 | 
 | ||||||
|  | 	calltime = fgraph_retrieve_data(gops->idx, &size); | ||||||
|  | 	if (!calltime) | ||||||
|  | 		return; | ||||||
|  | 	trace->calltime = *calltime; | ||||||
|  | 
 | ||||||
| 	trace_ctx = tracing_gen_ctx_flags(flags); | 	trace_ctx = tracing_gen_ctx_flags(flags); | ||||||
| 	__trace_graph_return(tr, trace, trace_ctx); | 	__trace_graph_return(tr, trace, trace_ctx); | ||||||
| 	atomic_dec(&data->disabled); | 	atomic_dec(&data->disabled); | ||||||
|  |  | ||||||
|  | @ -118,6 +118,7 @@ static int wakeup_graph_entry(struct ftrace_graph_ent *trace, | ||||||
| 	struct trace_array *tr = wakeup_trace; | 	struct trace_array *tr = wakeup_trace; | ||||||
| 	struct trace_array_cpu *data; | 	struct trace_array_cpu *data; | ||||||
| 	unsigned int trace_ctx; | 	unsigned int trace_ctx; | ||||||
|  | 	u64 *calltime; | ||||||
| 	int ret = 0; | 	int ret = 0; | ||||||
| 
 | 
 | ||||||
| 	if (ftrace_graph_ignore_func(gops, trace)) | 	if (ftrace_graph_ignore_func(gops, trace)) | ||||||
|  | @ -135,6 +136,12 @@ static int wakeup_graph_entry(struct ftrace_graph_ent *trace, | ||||||
| 	if (!func_prolog_preempt_disable(tr, &data, &trace_ctx)) | 	if (!func_prolog_preempt_disable(tr, &data, &trace_ctx)) | ||||||
| 		return 0; | 		return 0; | ||||||
| 
 | 
 | ||||||
|  | 	calltime = fgraph_reserve_data(gops->idx, sizeof(*calltime)); | ||||||
|  | 	if (!calltime) | ||||||
|  | 		return 0; | ||||||
|  | 
 | ||||||
|  | 	*calltime = trace_clock_local(); | ||||||
|  | 
 | ||||||
| 	ret = __trace_graph_entry(tr, trace, trace_ctx); | 	ret = __trace_graph_entry(tr, trace, trace_ctx); | ||||||
| 	atomic_dec(&data->disabled); | 	atomic_dec(&data->disabled); | ||||||
| 	preempt_enable_notrace(); | 	preempt_enable_notrace(); | ||||||
|  | @ -148,12 +155,19 @@ static void wakeup_graph_return(struct ftrace_graph_ret *trace, | ||||||
| 	struct trace_array *tr = wakeup_trace; | 	struct trace_array *tr = wakeup_trace; | ||||||
| 	struct trace_array_cpu *data; | 	struct trace_array_cpu *data; | ||||||
| 	unsigned int trace_ctx; | 	unsigned int trace_ctx; | ||||||
|  | 	u64 *calltime; | ||||||
|  | 	int size; | ||||||
| 
 | 
 | ||||||
| 	ftrace_graph_addr_finish(gops, trace); | 	ftrace_graph_addr_finish(gops, trace); | ||||||
| 
 | 
 | ||||||
| 	if (!func_prolog_preempt_disable(tr, &data, &trace_ctx)) | 	if (!func_prolog_preempt_disable(tr, &data, &trace_ctx)) | ||||||
| 		return; | 		return; | ||||||
| 
 | 
 | ||||||
|  | 	calltime = fgraph_retrieve_data(gops->idx, &size); | ||||||
|  | 	if (!calltime) | ||||||
|  | 		return; | ||||||
|  | 	trace->calltime = *calltime; | ||||||
|  | 
 | ||||||
| 	__trace_graph_return(tr, trace, trace_ctx); | 	__trace_graph_return(tr, trace, trace_ctx); | ||||||
| 	atomic_dec(&data->disabled); | 	atomic_dec(&data->disabled); | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 Steven Rostedt
						Steven Rostedt