2008-05-12 21:20:42 +02:00
|
|
|
/*
|
2009-02-17 07:10:02 +01:00
|
|
|
* trace irqs off critical timings
|
2008-05-12 21:20:42 +02:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
|
|
|
|
* Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
|
|
|
|
*
|
|
|
|
* From code in the latency_tracer, that is:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004-2006 Ingo Molnar
|
|
|
|
* Copyright (C) 2004 William Lee Irwin III
|
|
|
|
*/
|
|
|
|
#include <linux/kallsyms.h>
|
|
|
|
#include <linux/debugfs.h>
|
|
|
|
#include <linux/uaccess.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/ftrace.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
|
|
|
|
#include "trace.h"
|
|
|
|
|
|
|
|
static struct trace_array *irqsoff_trace __read_mostly;
|
|
|
|
static int tracer_enabled __read_mostly;
|
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
static DEFINE_PER_CPU(int, tracing_cpu);
|
|
|
|
|
2008-05-12 21:20:44 +02:00
|
|
|
static DEFINE_SPINLOCK(max_trace_lock);
|
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
enum {
|
|
|
|
TRACER_IRQS_OFF = (1 << 1),
|
|
|
|
TRACER_PREEMPT_OFF = (1 << 2),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int trace_type __read_mostly;
|
|
|
|
|
2009-03-05 04:15:30 +01:00
|
|
|
static int save_lat_flag;
|
|
|
|
|
2010-04-02 19:01:22 +02:00
|
|
|
static void stop_irqsoff_tracer(struct trace_array *tr, int graph);
|
|
|
|
static int start_irqsoff_tracer(struct trace_array *tr, int graph);
|
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
#ifdef CONFIG_PREEMPT_TRACER
|
2008-05-12 21:20:51 +02:00
|
|
|
static inline int
|
2008-05-12 21:20:42 +02:00
|
|
|
preempt_trace(void)
|
|
|
|
{
|
|
|
|
return ((trace_type & TRACER_PREEMPT_OFF) && preempt_count());
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
# define preempt_trace() (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_IRQSOFF_TRACER
|
2008-05-12 21:20:51 +02:00
|
|
|
static inline int
|
2008-05-12 21:20:42 +02:00
|
|
|
irq_trace(void)
|
|
|
|
{
|
|
|
|
return ((trace_type & TRACER_IRQS_OFF) &&
|
|
|
|
irqs_disabled());
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
# define irq_trace() (0)
|
|
|
|
#endif
|
|
|
|
|
2010-04-02 19:01:22 +02:00
|
|
|
#define TRACE_DISPLAY_GRAPH 1
|
|
|
|
|
|
|
|
static struct tracer_opt trace_opts[] = {
|
|
|
|
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
|
|
|
|
/* display latency trace as call graph */
|
|
|
|
{ TRACER_OPT(display-graph, TRACE_DISPLAY_GRAPH) },
|
|
|
|
#endif
|
|
|
|
{ } /* Empty entry */
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct tracer_flags tracer_flags = {
|
|
|
|
.val = 0,
|
|
|
|
.opts = trace_opts,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define is_graph() (tracer_flags.val & TRACE_DISPLAY_GRAPH)
|
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
/*
|
|
|
|
* Sequence count - we record it when starting a measurement and
|
|
|
|
* skip the latency if the sequence has changed - some other section
|
|
|
|
* did a maximum and could disturb our measurement with serial console
|
|
|
|
* printouts, etc. Truly coinciding maximum latencies should be rare
|
|
|
|
* and what happens together happens separately as well, so this doesnt
|
|
|
|
* decrease the validity of the maximum found:
|
|
|
|
*/
|
|
|
|
static __cacheline_aligned_in_smp unsigned long max_sequence;
|
|
|
|
|
2008-10-07 01:06:12 +02:00
|
|
|
#ifdef CONFIG_FUNCTION_TRACER
|
2008-05-12 21:20:42 +02:00
|
|
|
/*
|
2010-10-06 01:41:43 +02:00
|
|
|
* Prologue for the preempt and irqs off function tracers.
|
|
|
|
*
|
|
|
|
* Returns 1 if it is OK to continue, and data->disabled is
|
|
|
|
* incremented.
|
|
|
|
* 0 if the trace is to be ignored, and data->disabled
|
|
|
|
* is kept the same.
|
|
|
|
*
|
|
|
|
* Note, this function is also used outside this ifdef but
|
|
|
|
* inside the #ifdef of the function graph tracer below.
|
|
|
|
* This is OK, since the function graph tracer is
|
|
|
|
* dependent on the function tracer.
|
2008-05-12 21:20:42 +02:00
|
|
|
*/
|
2010-10-06 01:41:43 +02:00
|
|
|
static int func_prolog_dec(struct trace_array *tr,
|
|
|
|
struct trace_array_cpu **data,
|
|
|
|
unsigned long *flags)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
|
|
|
long disabled;
|
|
|
|
int cpu;
|
|
|
|
|
2008-05-12 21:20:44 +02:00
|
|
|
/*
|
|
|
|
* Does not matter if we preempt. We test the flags
|
|
|
|
* afterward, to see if irqs are disabled or not.
|
|
|
|
* If we preempt and get a false positive, the flags
|
|
|
|
* test will fail.
|
|
|
|
*/
|
|
|
|
cpu = raw_smp_processor_id();
|
|
|
|
if (likely(!per_cpu(tracing_cpu, cpu)))
|
2010-10-06 01:41:43 +02:00
|
|
|
return 0;
|
2008-05-12 21:20:42 +02:00
|
|
|
|
2010-10-06 01:41:43 +02:00
|
|
|
local_save_flags(*flags);
|
2008-05-12 21:20:44 +02:00
|
|
|
/* slight chance to get a false positive on tracing_cpu */
|
2010-10-06 01:41:43 +02:00
|
|
|
if (!irqs_disabled_flags(*flags))
|
|
|
|
return 0;
|
2008-05-12 21:20:42 +02:00
|
|
|
|
2010-10-06 01:41:43 +02:00
|
|
|
*data = tr->data[cpu];
|
|
|
|
disabled = atomic_inc_return(&(*data)->disabled);
|
2008-05-12 21:20:42 +02:00
|
|
|
|
|
|
|
if (likely(disabled == 1))
|
2010-10-06 01:41:43 +02:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
atomic_dec(&(*data)->disabled);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* irqsoff uses its own tracer function to keep the overhead down:
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
irqsoff_tracer_call(unsigned long ip, unsigned long parent_ip)
|
|
|
|
{
|
|
|
|
struct trace_array *tr = irqsoff_trace;
|
|
|
|
struct trace_array_cpu *data;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
if (!func_prolog_dec(tr, &data, &flags))
|
|
|
|
return;
|
|
|
|
|
|
|
|
trace_function(tr, ip, parent_ip, flags, preempt_count());
|
2008-05-12 21:20:42 +02:00
|
|
|
|
|
|
|
atomic_dec(&data->disabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ftrace_ops trace_ops __read_mostly =
|
|
|
|
{
|
|
|
|
.func = irqsoff_tracer_call,
|
|
|
|
};
|
2008-10-07 01:06:12 +02:00
|
|
|
#endif /* CONFIG_FUNCTION_TRACER */
|
2008-05-12 21:20:42 +02:00
|
|
|
|
2010-04-02 19:01:22 +02:00
|
|
|
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
|
|
|
|
static int irqsoff_set_flag(u32 old_flags, u32 bit, int set)
|
|
|
|
{
|
|
|
|
int cpu;
|
|
|
|
|
|
|
|
if (!(bit & TRACE_DISPLAY_GRAPH))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (!(is_graph() ^ set))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
stop_irqsoff_tracer(irqsoff_trace, !set);
|
|
|
|
|
|
|
|
for_each_possible_cpu(cpu)
|
|
|
|
per_cpu(tracing_cpu, cpu) = 0;
|
|
|
|
|
|
|
|
tracing_max_latency = 0;
|
|
|
|
tracing_reset_online_cpus(irqsoff_trace);
|
|
|
|
|
|
|
|
return start_irqsoff_tracer(irqsoff_trace, set);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int irqsoff_graph_entry(struct ftrace_graph_ent *trace)
|
|
|
|
{
|
|
|
|
struct trace_array *tr = irqsoff_trace;
|
|
|
|
struct trace_array_cpu *data;
|
|
|
|
unsigned long flags;
|
|
|
|
int ret;
|
|
|
|
int pc;
|
|
|
|
|
2010-10-06 01:41:43 +02:00
|
|
|
if (!func_prolog_dec(tr, &data, &flags))
|
2010-04-02 19:01:22 +02:00
|
|
|
return 0;
|
|
|
|
|
2010-10-06 01:41:43 +02:00
|
|
|
pc = preempt_count();
|
|
|
|
ret = __trace_graph_entry(tr, trace, flags, pc);
|
2010-04-02 19:01:22 +02:00
|
|
|
atomic_dec(&data->disabled);
|
2010-10-06 01:41:43 +02:00
|
|
|
|
2010-04-02 19:01:22 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void irqsoff_graph_return(struct ftrace_graph_ret *trace)
|
|
|
|
{
|
|
|
|
struct trace_array *tr = irqsoff_trace;
|
|
|
|
struct trace_array_cpu *data;
|
|
|
|
unsigned long flags;
|
|
|
|
int pc;
|
|
|
|
|
2010-10-06 01:41:43 +02:00
|
|
|
if (!func_prolog_dec(tr, &data, &flags))
|
2010-04-02 19:01:22 +02:00
|
|
|
return;
|
|
|
|
|
2010-10-06 01:41:43 +02:00
|
|
|
pc = preempt_count();
|
|
|
|
__trace_graph_return(tr, trace, flags, pc);
|
2010-04-02 19:01:22 +02:00
|
|
|
atomic_dec(&data->disabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void irqsoff_trace_open(struct trace_iterator *iter)
|
|
|
|
{
|
|
|
|
if (is_graph())
|
|
|
|
graph_trace_open(iter);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void irqsoff_trace_close(struct trace_iterator *iter)
|
|
|
|
{
|
|
|
|
if (iter->private)
|
|
|
|
graph_trace_close(iter);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GRAPH_TRACER_FLAGS (TRACE_GRAPH_PRINT_CPU | \
|
|
|
|
TRACE_GRAPH_PRINT_PROC)
|
|
|
|
|
|
|
|
static enum print_line_t irqsoff_print_line(struct trace_iterator *iter)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* In graph mode call the graph tracer output function,
|
|
|
|
* otherwise go with the TRACE_FN event handler
|
|
|
|
*/
|
|
|
|
if (is_graph())
|
2010-09-23 14:00:52 +02:00
|
|
|
return print_graph_function_flags(iter, GRAPH_TRACER_FLAGS);
|
2010-04-02 19:01:22 +02:00
|
|
|
|
|
|
|
return TRACE_TYPE_UNHANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void irqsoff_print_header(struct seq_file *s)
|
|
|
|
{
|
2010-09-23 14:00:52 +02:00
|
|
|
if (is_graph())
|
|
|
|
print_graph_headers_flags(s, GRAPH_TRACER_FLAGS);
|
|
|
|
else
|
2010-04-02 19:01:22 +02:00
|
|
|
trace_default_header(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
__trace_function(struct trace_array *tr,
|
|
|
|
unsigned long ip, unsigned long parent_ip,
|
|
|
|
unsigned long flags, int pc)
|
|
|
|
{
|
2010-09-23 14:00:52 +02:00
|
|
|
if (is_graph())
|
|
|
|
trace_graph_function(tr, ip, parent_ip, flags, pc);
|
|
|
|
else
|
2010-04-02 19:01:22 +02:00
|
|
|
trace_function(tr, ip, parent_ip, flags, pc);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
#define __trace_function trace_function
|
|
|
|
|
|
|
|
static int irqsoff_set_flag(u32 old_flags, u32 bit, int set)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int irqsoff_graph_entry(struct ftrace_graph_ent *trace)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static enum print_line_t irqsoff_print_line(struct trace_iterator *iter)
|
|
|
|
{
|
|
|
|
return TRACE_TYPE_UNHANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void irqsoff_graph_return(struct ftrace_graph_ret *trace) { }
|
|
|
|
static void irqsoff_print_header(struct seq_file *s) { }
|
|
|
|
static void irqsoff_trace_open(struct trace_iterator *iter) { }
|
|
|
|
static void irqsoff_trace_close(struct trace_iterator *iter) { }
|
|
|
|
#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
|
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
/*
|
|
|
|
* Should this new latency be reported/recorded?
|
|
|
|
*/
|
2008-05-12 21:20:51 +02:00
|
|
|
static int report_latency(cycle_t delta)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
|
|
|
if (tracing_thresh) {
|
|
|
|
if (delta < tracing_thresh)
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
if (delta <= tracing_max_latency)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-05-12 21:20:51 +02:00
|
|
|
static void
|
2008-05-12 21:20:42 +02:00
|
|
|
check_critical_timing(struct trace_array *tr,
|
|
|
|
struct trace_array_cpu *data,
|
|
|
|
unsigned long parent_ip,
|
|
|
|
int cpu)
|
|
|
|
{
|
2008-05-12 21:20:44 +02:00
|
|
|
cycle_t T0, T1, delta;
|
2008-05-12 21:20:42 +02:00
|
|
|
unsigned long flags;
|
2008-10-01 19:14:09 +02:00
|
|
|
int pc;
|
2008-05-12 21:20:42 +02:00
|
|
|
|
|
|
|
T0 = data->preempt_timestamp;
|
2008-05-12 21:20:46 +02:00
|
|
|
T1 = ftrace_now(cpu);
|
2008-05-12 21:20:42 +02:00
|
|
|
delta = T1-T0;
|
|
|
|
|
|
|
|
local_save_flags(flags);
|
|
|
|
|
2008-10-03 01:23:04 +02:00
|
|
|
pc = preempt_count();
|
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
if (!report_latency(delta))
|
|
|
|
goto out;
|
|
|
|
|
2008-05-12 21:20:45 +02:00
|
|
|
spin_lock_irqsave(&max_trace_lock, flags);
|
2008-05-12 21:20:42 +02:00
|
|
|
|
2008-05-12 21:20:44 +02:00
|
|
|
/* check if we are still the max latency */
|
|
|
|
if (!report_latency(delta))
|
|
|
|
goto out_unlock;
|
|
|
|
|
2010-04-02 19:01:22 +02:00
|
|
|
__trace_function(tr, CALLER_ADDR0, parent_ip, flags, pc);
|
2009-12-11 17:54:51 +01:00
|
|
|
/* Skip 5 functions to get to the irq/preempt enable function */
|
|
|
|
__trace_stack(tr, flags, 5, pc);
|
2008-05-12 21:20:42 +02:00
|
|
|
|
|
|
|
if (data->critical_sequence != max_sequence)
|
2008-05-12 21:20:44 +02:00
|
|
|
goto out_unlock;
|
2008-05-12 21:20:42 +02:00
|
|
|
|
|
|
|
data->critical_end = parent_ip;
|
|
|
|
|
2009-09-13 01:43:07 +02:00
|
|
|
if (likely(!is_tracing_stopped())) {
|
|
|
|
tracing_max_latency = delta;
|
|
|
|
update_max_tr_single(tr, current, cpu);
|
|
|
|
}
|
2008-05-12 21:20:42 +02:00
|
|
|
|
|
|
|
max_sequence++;
|
|
|
|
|
2008-05-12 21:20:44 +02:00
|
|
|
out_unlock:
|
2008-05-12 21:20:45 +02:00
|
|
|
spin_unlock_irqrestore(&max_trace_lock, flags);
|
2008-05-12 21:20:44 +02:00
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
out:
|
|
|
|
data->critical_sequence = max_sequence;
|
2008-05-12 21:20:46 +02:00
|
|
|
data->preempt_timestamp = ftrace_now(cpu);
|
2010-04-02 19:01:22 +02:00
|
|
|
__trace_function(tr, CALLER_ADDR0, parent_ip, flags, pc);
|
2008-05-12 21:20:42 +02:00
|
|
|
}
|
|
|
|
|
2008-05-12 21:20:51 +02:00
|
|
|
static inline void
|
2008-05-12 21:20:42 +02:00
|
|
|
start_critical_timing(unsigned long ip, unsigned long parent_ip)
|
|
|
|
{
|
|
|
|
int cpu;
|
|
|
|
struct trace_array *tr = irqsoff_trace;
|
|
|
|
struct trace_array_cpu *data;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
if (likely(!tracer_enabled))
|
|
|
|
return;
|
|
|
|
|
2008-05-12 21:20:55 +02:00
|
|
|
cpu = raw_smp_processor_id();
|
|
|
|
|
|
|
|
if (per_cpu(tracing_cpu, cpu))
|
2008-05-12 21:20:42 +02:00
|
|
|
return;
|
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
data = tr->data[cpu];
|
|
|
|
|
2008-05-12 21:20:55 +02:00
|
|
|
if (unlikely(!data) || atomic_read(&data->disabled))
|
2008-05-12 21:20:42 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
atomic_inc(&data->disabled);
|
|
|
|
|
|
|
|
data->critical_sequence = max_sequence;
|
2008-05-12 21:20:46 +02:00
|
|
|
data->preempt_timestamp = ftrace_now(cpu);
|
2008-05-12 21:20:42 +02:00
|
|
|
data->critical_start = parent_ip ? : ip;
|
2008-05-12 21:20:42 +02:00
|
|
|
|
|
|
|
local_save_flags(flags);
|
2008-05-12 21:20:42 +02:00
|
|
|
|
2010-04-02 19:01:22 +02:00
|
|
|
__trace_function(tr, ip, parent_ip, flags, preempt_count());
|
2008-05-12 21:20:42 +02:00
|
|
|
|
2008-05-12 21:20:55 +02:00
|
|
|
per_cpu(tracing_cpu, cpu) = 1;
|
2008-05-12 21:20:42 +02:00
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
atomic_dec(&data->disabled);
|
|
|
|
}
|
|
|
|
|
2008-05-12 21:20:51 +02:00
|
|
|
static inline void
|
2008-05-12 21:20:42 +02:00
|
|
|
stop_critical_timing(unsigned long ip, unsigned long parent_ip)
|
|
|
|
{
|
|
|
|
int cpu;
|
|
|
|
struct trace_array *tr = irqsoff_trace;
|
|
|
|
struct trace_array_cpu *data;
|
|
|
|
unsigned long flags;
|
|
|
|
|
2008-05-12 21:20:55 +02:00
|
|
|
cpu = raw_smp_processor_id();
|
2008-05-12 21:20:42 +02:00
|
|
|
/* Always clear the tracing cpu on stopping the trace */
|
2008-05-12 21:20:55 +02:00
|
|
|
if (unlikely(per_cpu(tracing_cpu, cpu)))
|
|
|
|
per_cpu(tracing_cpu, cpu) = 0;
|
2008-05-12 21:20:42 +02:00
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!tracer_enabled)
|
2008-05-12 21:20:42 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
data = tr->data[cpu];
|
|
|
|
|
2008-09-30 05:02:41 +02:00
|
|
|
if (unlikely(!data) ||
|
2008-05-12 21:20:42 +02:00
|
|
|
!data->critical_start || atomic_read(&data->disabled))
|
|
|
|
return;
|
|
|
|
|
|
|
|
atomic_inc(&data->disabled);
|
2008-05-12 21:20:55 +02:00
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
local_save_flags(flags);
|
2010-04-02 19:01:22 +02:00
|
|
|
__trace_function(tr, ip, parent_ip, flags, preempt_count());
|
2008-05-12 21:20:42 +02:00
|
|
|
check_critical_timing(tr, data, parent_ip ? : ip, cpu);
|
2008-05-12 21:20:42 +02:00
|
|
|
data->critical_start = 0;
|
|
|
|
atomic_dec(&data->disabled);
|
|
|
|
}
|
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
/* start and stop critical timings used to for stoppage (in idle) */
|
2008-05-12 21:20:51 +02:00
|
|
|
void start_critical_timings(void)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
2008-05-12 21:20:42 +02:00
|
|
|
if (preempt_trace() || irq_trace())
|
2008-05-12 21:20:42 +02:00
|
|
|
start_critical_timing(CALLER_ADDR0, CALLER_ADDR1);
|
|
|
|
}
|
2008-07-26 15:09:47 +02:00
|
|
|
EXPORT_SYMBOL_GPL(start_critical_timings);
|
2008-05-12 21:20:42 +02:00
|
|
|
|
2008-05-12 21:20:51 +02:00
|
|
|
void stop_critical_timings(void)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
2008-05-12 21:20:42 +02:00
|
|
|
if (preempt_trace() || irq_trace())
|
2008-05-12 21:20:42 +02:00
|
|
|
stop_critical_timing(CALLER_ADDR0, CALLER_ADDR1);
|
|
|
|
}
|
2008-07-26 15:09:47 +02:00
|
|
|
EXPORT_SYMBOL_GPL(stop_critical_timings);
|
2008-05-12 21:20:42 +02:00
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
#ifdef CONFIG_IRQSOFF_TRACER
|
2008-05-12 21:20:42 +02:00
|
|
|
#ifdef CONFIG_PROVE_LOCKING
|
2008-05-12 21:20:51 +02:00
|
|
|
void time_hardirqs_on(unsigned long a0, unsigned long a1)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
2008-05-12 21:20:42 +02:00
|
|
|
if (!preempt_trace() && irq_trace())
|
2008-05-12 21:20:42 +02:00
|
|
|
stop_critical_timing(a0, a1);
|
|
|
|
}
|
|
|
|
|
2008-05-12 21:20:51 +02:00
|
|
|
void time_hardirqs_off(unsigned long a0, unsigned long a1)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
2008-05-12 21:20:42 +02:00
|
|
|
if (!preempt_trace() && irq_trace())
|
2008-05-12 21:20:42 +02:00
|
|
|
start_critical_timing(a0, a1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* !CONFIG_PROVE_LOCKING */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stubs:
|
|
|
|
*/
|
|
|
|
|
|
|
|
void early_boot_irqs_off(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void early_boot_irqs_on(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void trace_softirqs_on(unsigned long ip)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void trace_softirqs_off(unsigned long ip)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-05-12 21:20:51 +02:00
|
|
|
inline void print_irqtrace_events(struct task_struct *curr)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We are only interested in hardirq on/off events:
|
|
|
|
*/
|
2008-05-12 21:20:51 +02:00
|
|
|
void trace_hardirqs_on(void)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
2008-05-12 21:20:42 +02:00
|
|
|
if (!preempt_trace() && irq_trace())
|
2008-05-12 21:20:42 +02:00
|
|
|
stop_critical_timing(CALLER_ADDR0, CALLER_ADDR1);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(trace_hardirqs_on);
|
|
|
|
|
2008-05-12 21:20:51 +02:00
|
|
|
void trace_hardirqs_off(void)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
2008-05-12 21:20:42 +02:00
|
|
|
if (!preempt_trace() && irq_trace())
|
2008-05-12 21:20:42 +02:00
|
|
|
start_critical_timing(CALLER_ADDR0, CALLER_ADDR1);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(trace_hardirqs_off);
|
|
|
|
|
2008-05-12 21:20:51 +02:00
|
|
|
void trace_hardirqs_on_caller(unsigned long caller_addr)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
2008-05-12 21:20:42 +02:00
|
|
|
if (!preempt_trace() && irq_trace())
|
2008-05-12 21:20:42 +02:00
|
|
|
stop_critical_timing(CALLER_ADDR0, caller_addr);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(trace_hardirqs_on_caller);
|
|
|
|
|
2008-05-12 21:20:51 +02:00
|
|
|
void trace_hardirqs_off_caller(unsigned long caller_addr)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
2008-05-12 21:20:42 +02:00
|
|
|
if (!preempt_trace() && irq_trace())
|
2008-05-12 21:20:42 +02:00
|
|
|
start_critical_timing(CALLER_ADDR0, caller_addr);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(trace_hardirqs_off_caller);
|
|
|
|
|
|
|
|
#endif /* CONFIG_PROVE_LOCKING */
|
2008-05-12 21:20:42 +02:00
|
|
|
#endif /* CONFIG_IRQSOFF_TRACER */
|
|
|
|
|
|
|
|
#ifdef CONFIG_PREEMPT_TRACER
|
2008-05-12 21:20:51 +02:00
|
|
|
void trace_preempt_on(unsigned long a0, unsigned long a1)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
2008-07-15 15:53:37 +02:00
|
|
|
if (preempt_trace())
|
|
|
|
stop_critical_timing(a0, a1);
|
2008-05-12 21:20:42 +02:00
|
|
|
}
|
|
|
|
|
2008-05-12 21:20:51 +02:00
|
|
|
void trace_preempt_off(unsigned long a0, unsigned long a1)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
2008-07-15 15:53:37 +02:00
|
|
|
if (preempt_trace())
|
|
|
|
start_critical_timing(a0, a1);
|
2008-05-12 21:20:42 +02:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_PREEMPT_TRACER */
|
2008-05-12 21:20:42 +02:00
|
|
|
|
2010-04-02 19:01:22 +02:00
|
|
|
static int start_irqsoff_tracer(struct trace_array *tr, int graph)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
2010-04-02 19:01:22 +02:00
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (!graph)
|
|
|
|
ret = register_ftrace_function(&trace_ops);
|
|
|
|
else
|
|
|
|
ret = register_ftrace_graph(&irqsoff_graph_return,
|
|
|
|
&irqsoff_graph_entry);
|
|
|
|
|
|
|
|
if (!ret && tracing_is_enabled())
|
ftrace: restructure tracing start/stop infrastructure
Impact: change where tracing is started up and stopped
Currently, when a new tracer is selected via echo'ing a tracer name into
the current_tracer file, the startup is only done if tracing_enabled is
set to one. If tracing_enabled is changed to zero (by echo'ing 0 into
the tracing_enabled file) a full shutdown is performed.
The full startup and shutdown of a tracer can be expensive and the
user can lose out traces when echo'ing in 0 to the tracing_enabled file,
because the process takes too long. There can also be places that
the user would like to start and stop the tracer several times and
doing the full startup and shutdown of a tracer might be too expensive.
This patch performs the full startup and shutdown when a tracer is
selected. It also adds a way to do a quick start or stop of a tracer.
The quick version is just a flag that prevents the tracing from
taking place, but the overhead of the code is still there.
For example, the startup of a tracer may enable tracepoints, or enable
the function tracer. The stop and start will just set a flag to
have the tracer ignore the calls when the tracepoint or function trace
is called. The overhead of the tracer may still be present when
the tracer is stopped, but no tracing will occur. Setting the tracer
to the 'nop' tracer (or any other tracer) will perform the shutdown
of the tracer which will disable the tracepoint or disable the
function tracer.
The tracing_enabled file will simply start or stop tracing.
This change is all internal. The end result for the user should be the same
as before. If tracing_enabled is not set, no trace will happen.
If tracing_enabled is set, then the trace will happen. The tracing_enabled
variable is static between tracers. Enabling tracing_enabled and
going to another tracer will keep tracing_enabled enabled. Same
is true with disabling tracing_enabled.
This patch will now provide a fast start/stop method to the users
for enabling or disabling tracing.
Note: There were two methods to the struct tracer that were never
used: The methods start and stop. These were to be used as a hook
to the reading of the trace output, but ended up not being
necessary. These two methods are now used to enable the start
and stop of each tracer, in case the tracer needs to do more than
just not write into the buffer. For example, the irqsoff tracer
must stop recording max latencies when tracing is stopped.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-11-05 22:05:44 +01:00
|
|
|
tracer_enabled = 1;
|
2009-01-22 17:18:06 +01:00
|
|
|
else
|
ftrace: restructure tracing start/stop infrastructure
Impact: change where tracing is started up and stopped
Currently, when a new tracer is selected via echo'ing a tracer name into
the current_tracer file, the startup is only done if tracing_enabled is
set to one. If tracing_enabled is changed to zero (by echo'ing 0 into
the tracing_enabled file) a full shutdown is performed.
The full startup and shutdown of a tracer can be expensive and the
user can lose out traces when echo'ing in 0 to the tracing_enabled file,
because the process takes too long. There can also be places that
the user would like to start and stop the tracer several times and
doing the full startup and shutdown of a tracer might be too expensive.
This patch performs the full startup and shutdown when a tracer is
selected. It also adds a way to do a quick start or stop of a tracer.
The quick version is just a flag that prevents the tracing from
taking place, but the overhead of the code is still there.
For example, the startup of a tracer may enable tracepoints, or enable
the function tracer. The stop and start will just set a flag to
have the tracer ignore the calls when the tracepoint or function trace
is called. The overhead of the tracer may still be present when
the tracer is stopped, but no tracing will occur. Setting the tracer
to the 'nop' tracer (or any other tracer) will perform the shutdown
of the tracer which will disable the tracepoint or disable the
function tracer.
The tracing_enabled file will simply start or stop tracing.
This change is all internal. The end result for the user should be the same
as before. If tracing_enabled is not set, no trace will happen.
If tracing_enabled is set, then the trace will happen. The tracing_enabled
variable is static between tracers. Enabling tracing_enabled and
going to another tracer will keep tracing_enabled enabled. Same
is true with disabling tracing_enabled.
This patch will now provide a fast start/stop method to the users
for enabling or disabling tracing.
Note: There were two methods to the struct tracer that were never
used: The methods start and stop. These were to be used as a hook
to the reading of the trace output, but ended up not being
necessary. These two methods are now used to enable the start
and stop of each tracer, in case the tracer needs to do more than
just not write into the buffer. For example, the irqsoff tracer
must stop recording max latencies when tracing is stopped.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-11-05 22:05:44 +01:00
|
|
|
tracer_enabled = 0;
|
2010-04-02 19:01:22 +02:00
|
|
|
|
|
|
|
return ret;
|
2008-05-12 21:20:42 +02:00
|
|
|
}
|
|
|
|
|
2010-04-02 19:01:22 +02:00
|
|
|
static void stop_irqsoff_tracer(struct trace_array *tr, int graph)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
|
|
|
tracer_enabled = 0;
|
2010-04-02 19:01:22 +02:00
|
|
|
|
|
|
|
if (!graph)
|
|
|
|
unregister_ftrace_function(&trace_ops);
|
|
|
|
else
|
|
|
|
unregister_ftrace_graph();
|
2008-05-12 21:20:42 +02:00
|
|
|
}
|
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
static void __irqsoff_tracer_init(struct trace_array *tr)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
2009-03-05 04:15:30 +01:00
|
|
|
save_lat_flag = trace_flags & TRACE_ITER_LATENCY_FMT;
|
|
|
|
trace_flags |= TRACE_ITER_LATENCY_FMT;
|
|
|
|
|
2009-01-16 05:40:11 +01:00
|
|
|
tracing_max_latency = 0;
|
2008-05-12 21:20:42 +02:00
|
|
|
irqsoff_trace = tr;
|
2008-05-12 21:20:55 +02:00
|
|
|
/* make sure that the tracer is visible */
|
2008-05-12 21:20:42 +02:00
|
|
|
smp_wmb();
|
2009-09-01 17:06:29 +02:00
|
|
|
tracing_reset_online_cpus(tr);
|
2010-04-02 19:01:22 +02:00
|
|
|
|
|
|
|
if (start_irqsoff_tracer(tr, is_graph()))
|
|
|
|
printk(KERN_ERR "failed to start irqsoff tracer\n");
|
2008-05-12 21:20:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void irqsoff_tracer_reset(struct trace_array *tr)
|
|
|
|
{
|
2010-04-02 19:01:22 +02:00
|
|
|
stop_irqsoff_tracer(tr, is_graph());
|
2009-03-05 04:15:30 +01:00
|
|
|
|
|
|
|
if (!save_lat_flag)
|
|
|
|
trace_flags &= ~TRACE_ITER_LATENCY_FMT;
|
2008-05-12 21:20:42 +02:00
|
|
|
}
|
|
|
|
|
ftrace: restructure tracing start/stop infrastructure
Impact: change where tracing is started up and stopped
Currently, when a new tracer is selected via echo'ing a tracer name into
the current_tracer file, the startup is only done if tracing_enabled is
set to one. If tracing_enabled is changed to zero (by echo'ing 0 into
the tracing_enabled file) a full shutdown is performed.
The full startup and shutdown of a tracer can be expensive and the
user can lose out traces when echo'ing in 0 to the tracing_enabled file,
because the process takes too long. There can also be places that
the user would like to start and stop the tracer several times and
doing the full startup and shutdown of a tracer might be too expensive.
This patch performs the full startup and shutdown when a tracer is
selected. It also adds a way to do a quick start or stop of a tracer.
The quick version is just a flag that prevents the tracing from
taking place, but the overhead of the code is still there.
For example, the startup of a tracer may enable tracepoints, or enable
the function tracer. The stop and start will just set a flag to
have the tracer ignore the calls when the tracepoint or function trace
is called. The overhead of the tracer may still be present when
the tracer is stopped, but no tracing will occur. Setting the tracer
to the 'nop' tracer (or any other tracer) will perform the shutdown
of the tracer which will disable the tracepoint or disable the
function tracer.
The tracing_enabled file will simply start or stop tracing.
This change is all internal. The end result for the user should be the same
as before. If tracing_enabled is not set, no trace will happen.
If tracing_enabled is set, then the trace will happen. The tracing_enabled
variable is static between tracers. Enabling tracing_enabled and
going to another tracer will keep tracing_enabled enabled. Same
is true with disabling tracing_enabled.
This patch will now provide a fast start/stop method to the users
for enabling or disabling tracing.
Note: There were two methods to the struct tracer that were never
used: The methods start and stop. These were to be used as a hook
to the reading of the trace output, but ended up not being
necessary. These two methods are now used to enable the start
and stop of each tracer, in case the tracer needs to do more than
just not write into the buffer. For example, the irqsoff tracer
must stop recording max latencies when tracing is stopped.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-11-05 22:05:44 +01:00
|
|
|
static void irqsoff_tracer_start(struct trace_array *tr)
|
|
|
|
{
|
|
|
|
tracer_enabled = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void irqsoff_tracer_stop(struct trace_array *tr)
|
|
|
|
{
|
|
|
|
tracer_enabled = 0;
|
2008-05-12 21:20:42 +02:00
|
|
|
}
|
|
|
|
|
2008-05-12 21:20:42 +02:00
|
|
|
#ifdef CONFIG_IRQSOFF_TRACER
|
2008-11-16 05:57:26 +01:00
|
|
|
static int irqsoff_tracer_init(struct trace_array *tr)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
|
|
|
trace_type = TRACER_IRQS_OFF;
|
|
|
|
|
|
|
|
__irqsoff_tracer_init(tr);
|
2008-11-16 05:57:26 +01:00
|
|
|
return 0;
|
2008-05-12 21:20:42 +02:00
|
|
|
}
|
2008-05-12 21:20:42 +02:00
|
|
|
static struct tracer irqsoff_tracer __read_mostly =
|
|
|
|
{
|
|
|
|
.name = "irqsoff",
|
|
|
|
.init = irqsoff_tracer_init,
|
|
|
|
.reset = irqsoff_tracer_reset,
|
ftrace: restructure tracing start/stop infrastructure
Impact: change where tracing is started up and stopped
Currently, when a new tracer is selected via echo'ing a tracer name into
the current_tracer file, the startup is only done if tracing_enabled is
set to one. If tracing_enabled is changed to zero (by echo'ing 0 into
the tracing_enabled file) a full shutdown is performed.
The full startup and shutdown of a tracer can be expensive and the
user can lose out traces when echo'ing in 0 to the tracing_enabled file,
because the process takes too long. There can also be places that
the user would like to start and stop the tracer several times and
doing the full startup and shutdown of a tracer might be too expensive.
This patch performs the full startup and shutdown when a tracer is
selected. It also adds a way to do a quick start or stop of a tracer.
The quick version is just a flag that prevents the tracing from
taking place, but the overhead of the code is still there.
For example, the startup of a tracer may enable tracepoints, or enable
the function tracer. The stop and start will just set a flag to
have the tracer ignore the calls when the tracepoint or function trace
is called. The overhead of the tracer may still be present when
the tracer is stopped, but no tracing will occur. Setting the tracer
to the 'nop' tracer (or any other tracer) will perform the shutdown
of the tracer which will disable the tracepoint or disable the
function tracer.
The tracing_enabled file will simply start or stop tracing.
This change is all internal. The end result for the user should be the same
as before. If tracing_enabled is not set, no trace will happen.
If tracing_enabled is set, then the trace will happen. The tracing_enabled
variable is static between tracers. Enabling tracing_enabled and
going to another tracer will keep tracing_enabled enabled. Same
is true with disabling tracing_enabled.
This patch will now provide a fast start/stop method to the users
for enabling or disabling tracing.
Note: There were two methods to the struct tracer that were never
used: The methods start and stop. These were to be used as a hook
to the reading of the trace output, but ended up not being
necessary. These two methods are now used to enable the start
and stop of each tracer, in case the tracer needs to do more than
just not write into the buffer. For example, the irqsoff tracer
must stop recording max latencies when tracing is stopped.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-11-05 22:05:44 +01:00
|
|
|
.start = irqsoff_tracer_start,
|
|
|
|
.stop = irqsoff_tracer_stop,
|
2008-05-12 21:20:42 +02:00
|
|
|
.print_max = 1,
|
2010-04-02 19:01:22 +02:00
|
|
|
.print_header = irqsoff_print_header,
|
|
|
|
.print_line = irqsoff_print_line,
|
|
|
|
.flags = &tracer_flags,
|
|
|
|
.set_flag = irqsoff_set_flag,
|
2008-05-12 21:20:44 +02:00
|
|
|
#ifdef CONFIG_FTRACE_SELFTEST
|
|
|
|
.selftest = trace_selftest_startup_irqsoff,
|
|
|
|
#endif
|
2010-04-02 19:01:22 +02:00
|
|
|
.open = irqsoff_trace_open,
|
|
|
|
.close = irqsoff_trace_close,
|
2010-07-01 07:34:35 +02:00
|
|
|
.use_max_tr = 1,
|
2008-05-12 21:20:42 +02:00
|
|
|
};
|
2008-05-12 21:20:42 +02:00
|
|
|
# define register_irqsoff(trace) register_tracer(&trace)
|
|
|
|
#else
|
|
|
|
# define register_irqsoff(trace) do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_PREEMPT_TRACER
|
2008-11-16 05:57:26 +01:00
|
|
|
static int preemptoff_tracer_init(struct trace_array *tr)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
|
|
|
trace_type = TRACER_PREEMPT_OFF;
|
|
|
|
|
|
|
|
__irqsoff_tracer_init(tr);
|
2008-11-16 05:57:26 +01:00
|
|
|
return 0;
|
2008-05-12 21:20:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct tracer preemptoff_tracer __read_mostly =
|
|
|
|
{
|
|
|
|
.name = "preemptoff",
|
|
|
|
.init = preemptoff_tracer_init,
|
|
|
|
.reset = irqsoff_tracer_reset,
|
ftrace: restructure tracing start/stop infrastructure
Impact: change where tracing is started up and stopped
Currently, when a new tracer is selected via echo'ing a tracer name into
the current_tracer file, the startup is only done if tracing_enabled is
set to one. If tracing_enabled is changed to zero (by echo'ing 0 into
the tracing_enabled file) a full shutdown is performed.
The full startup and shutdown of a tracer can be expensive and the
user can lose out traces when echo'ing in 0 to the tracing_enabled file,
because the process takes too long. There can also be places that
the user would like to start and stop the tracer several times and
doing the full startup and shutdown of a tracer might be too expensive.
This patch performs the full startup and shutdown when a tracer is
selected. It also adds a way to do a quick start or stop of a tracer.
The quick version is just a flag that prevents the tracing from
taking place, but the overhead of the code is still there.
For example, the startup of a tracer may enable tracepoints, or enable
the function tracer. The stop and start will just set a flag to
have the tracer ignore the calls when the tracepoint or function trace
is called. The overhead of the tracer may still be present when
the tracer is stopped, but no tracing will occur. Setting the tracer
to the 'nop' tracer (or any other tracer) will perform the shutdown
of the tracer which will disable the tracepoint or disable the
function tracer.
The tracing_enabled file will simply start or stop tracing.
This change is all internal. The end result for the user should be the same
as before. If tracing_enabled is not set, no trace will happen.
If tracing_enabled is set, then the trace will happen. The tracing_enabled
variable is static between tracers. Enabling tracing_enabled and
going to another tracer will keep tracing_enabled enabled. Same
is true with disabling tracing_enabled.
This patch will now provide a fast start/stop method to the users
for enabling or disabling tracing.
Note: There were two methods to the struct tracer that were never
used: The methods start and stop. These were to be used as a hook
to the reading of the trace output, but ended up not being
necessary. These two methods are now used to enable the start
and stop of each tracer, in case the tracer needs to do more than
just not write into the buffer. For example, the irqsoff tracer
must stop recording max latencies when tracing is stopped.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-11-05 22:05:44 +01:00
|
|
|
.start = irqsoff_tracer_start,
|
|
|
|
.stop = irqsoff_tracer_stop,
|
2008-05-12 21:20:42 +02:00
|
|
|
.print_max = 1,
|
2010-04-02 19:01:22 +02:00
|
|
|
.print_header = irqsoff_print_header,
|
|
|
|
.print_line = irqsoff_print_line,
|
|
|
|
.flags = &tracer_flags,
|
|
|
|
.set_flag = irqsoff_set_flag,
|
2008-05-12 21:20:44 +02:00
|
|
|
#ifdef CONFIG_FTRACE_SELFTEST
|
|
|
|
.selftest = trace_selftest_startup_preemptoff,
|
|
|
|
#endif
|
2010-04-02 19:01:22 +02:00
|
|
|
.open = irqsoff_trace_open,
|
|
|
|
.close = irqsoff_trace_close,
|
2010-07-01 07:34:35 +02:00
|
|
|
.use_max_tr = 1,
|
2008-05-12 21:20:42 +02:00
|
|
|
};
|
|
|
|
# define register_preemptoff(trace) register_tracer(&trace)
|
|
|
|
#else
|
|
|
|
# define register_preemptoff(trace) do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_IRQSOFF_TRACER) && \
|
|
|
|
defined(CONFIG_PREEMPT_TRACER)
|
|
|
|
|
2008-11-16 05:57:26 +01:00
|
|
|
static int preemptirqsoff_tracer_init(struct trace_array *tr)
|
2008-05-12 21:20:42 +02:00
|
|
|
{
|
|
|
|
trace_type = TRACER_IRQS_OFF | TRACER_PREEMPT_OFF;
|
|
|
|
|
|
|
|
__irqsoff_tracer_init(tr);
|
2008-11-16 05:57:26 +01:00
|
|
|
return 0;
|
2008-05-12 21:20:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct tracer preemptirqsoff_tracer __read_mostly =
|
|
|
|
{
|
|
|
|
.name = "preemptirqsoff",
|
|
|
|
.init = preemptirqsoff_tracer_init,
|
|
|
|
.reset = irqsoff_tracer_reset,
|
ftrace: restructure tracing start/stop infrastructure
Impact: change where tracing is started up and stopped
Currently, when a new tracer is selected via echo'ing a tracer name into
the current_tracer file, the startup is only done if tracing_enabled is
set to one. If tracing_enabled is changed to zero (by echo'ing 0 into
the tracing_enabled file) a full shutdown is performed.
The full startup and shutdown of a tracer can be expensive and the
user can lose out traces when echo'ing in 0 to the tracing_enabled file,
because the process takes too long. There can also be places that
the user would like to start and stop the tracer several times and
doing the full startup and shutdown of a tracer might be too expensive.
This patch performs the full startup and shutdown when a tracer is
selected. It also adds a way to do a quick start or stop of a tracer.
The quick version is just a flag that prevents the tracing from
taking place, but the overhead of the code is still there.
For example, the startup of a tracer may enable tracepoints, or enable
the function tracer. The stop and start will just set a flag to
have the tracer ignore the calls when the tracepoint or function trace
is called. The overhead of the tracer may still be present when
the tracer is stopped, but no tracing will occur. Setting the tracer
to the 'nop' tracer (or any other tracer) will perform the shutdown
of the tracer which will disable the tracepoint or disable the
function tracer.
The tracing_enabled file will simply start or stop tracing.
This change is all internal. The end result for the user should be the same
as before. If tracing_enabled is not set, no trace will happen.
If tracing_enabled is set, then the trace will happen. The tracing_enabled
variable is static between tracers. Enabling tracing_enabled and
going to another tracer will keep tracing_enabled enabled. Same
is true with disabling tracing_enabled.
This patch will now provide a fast start/stop method to the users
for enabling or disabling tracing.
Note: There were two methods to the struct tracer that were never
used: The methods start and stop. These were to be used as a hook
to the reading of the trace output, but ended up not being
necessary. These two methods are now used to enable the start
and stop of each tracer, in case the tracer needs to do more than
just not write into the buffer. For example, the irqsoff tracer
must stop recording max latencies when tracing is stopped.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-11-05 22:05:44 +01:00
|
|
|
.start = irqsoff_tracer_start,
|
|
|
|
.stop = irqsoff_tracer_stop,
|
2008-05-12 21:20:42 +02:00
|
|
|
.print_max = 1,
|
2010-04-02 19:01:22 +02:00
|
|
|
.print_header = irqsoff_print_header,
|
|
|
|
.print_line = irqsoff_print_line,
|
|
|
|
.flags = &tracer_flags,
|
|
|
|
.set_flag = irqsoff_set_flag,
|
2008-05-12 21:20:44 +02:00
|
|
|
#ifdef CONFIG_FTRACE_SELFTEST
|
|
|
|
.selftest = trace_selftest_startup_preemptirqsoff,
|
|
|
|
#endif
|
2010-04-02 19:01:22 +02:00
|
|
|
.open = irqsoff_trace_open,
|
|
|
|
.close = irqsoff_trace_close,
|
2010-07-01 07:34:35 +02:00
|
|
|
.use_max_tr = 1,
|
2008-05-12 21:20:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# define register_preemptirqsoff(trace) register_tracer(&trace)
|
|
|
|
#else
|
|
|
|
# define register_preemptirqsoff(trace) do { } while (0)
|
|
|
|
#endif
|
2008-05-12 21:20:42 +02:00
|
|
|
|
|
|
|
__init static int init_irqsoff_tracer(void)
|
|
|
|
{
|
2008-05-12 21:20:42 +02:00
|
|
|
register_irqsoff(irqsoff_tracer);
|
|
|
|
register_preemptoff(preemptoff_tracer);
|
|
|
|
register_preemptirqsoff(preemptirqsoff_tracer);
|
2008-05-12 21:20:42 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
device_initcall(init_irqsoff_tracer);
|