Files
linux-apfs/kernel/trace/trace_sched_switch.c
T

241 lines
5.1 KiB
C
Raw Normal View History

2008-05-12 21:20:42 +02:00
/*
* trace context switch
*
* Copyright (C) 2007 Steven Rostedt <srostedt@redhat.com>
*
*/
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/debugfs.h>
#include <linux/kallsyms.h>
#include <linux/uaccess.h>
#include <linux/ftrace.h>
2008-07-18 12:16:17 -04:00
#include <trace/sched.h>
2008-05-12 21:20:42 +02:00
#include "trace.h"
static struct trace_array *ctx_trace;
static int __read_mostly tracer_enabled;
static int sched_ref;
static DEFINE_MUTEX(sched_register_mutex);
2008-05-12 21:20:42 +02:00
2008-05-12 21:20:51 +02:00
static void
2008-07-18 12:16:17 -04:00
probe_sched_switch(struct rq *__rq, struct task_struct *prev,
2008-05-12 21:21:10 +02:00
struct task_struct *next)
2008-05-12 21:20:42 +02:00
{
struct trace_array_cpu *data;
unsigned long flags;
int cpu;
int pc;
2008-05-12 21:20:42 +02:00
if (!sched_ref)
2008-07-18 12:16:17 -04:00
return;
2008-05-22 11:49:22 -04:00
tracing_record_cmdline(prev);
tracing_record_cmdline(next);
2008-05-12 21:20:42 +02:00
if (!tracer_enabled)
return;
pc = preempt_count();
local_irq_save(flags);
2008-05-12 21:20:42 +02:00
cpu = raw_smp_processor_id();
2008-07-18 12:16:17 -04:00
data = ctx_trace->data[cpu];
2008-05-12 21:20:42 +02:00
2008-10-04 02:01:00 -04:00
if (likely(!atomic_read(&data->disabled)))
tracing_sched_switch_trace(ctx_trace, prev, next, flags, pc);
2008-05-12 21:20:42 +02:00
local_irq_restore(flags);
2008-05-12 21:20:42 +02:00
}
2008-05-12 21:21:10 +02:00
static void
2008-12-16 08:07:03 +01:00
probe_sched_wakeup(struct rq *__rq, struct task_struct *wakee, int success)
2008-05-12 21:21:10 +02:00
{
2008-05-12 21:20:51 +02:00
struct trace_array_cpu *data;
unsigned long flags;
int cpu, pc;
2008-05-12 21:20:51 +02:00
2008-07-18 12:16:17 -04:00
if (!likely(tracer_enabled))
2008-05-12 21:20:51 +02:00
return;
pc = preempt_count();
2008-07-18 12:16:17 -04:00
tracing_record_cmdline(current);
2008-05-12 21:20:53 +02:00
2008-05-12 21:20:51 +02:00
local_irq_save(flags);
cpu = raw_smp_processor_id();
2008-07-18 12:16:17 -04:00
data = ctx_trace->data[cpu];
2008-05-12 21:20:51 +02:00
2008-10-04 02:01:00 -04:00
if (likely(!atomic_read(&data->disabled)))
tracing_sched_wakeup_trace(ctx_trace, wakee, current,
flags, pc);
2008-05-12 21:20:51 +02:00
local_irq_restore(flags);
}
2008-05-12 21:21:10 +02:00
static int tracing_sched_register(void)
{
int ret;
2008-07-18 12:16:17 -04:00
ret = register_trace_sched_wakeup(probe_sched_wakeup);
2008-05-12 21:21:10 +02:00
if (ret) {
2008-07-18 12:16:17 -04:00
pr_info("wakeup trace: Couldn't activate tracepoint"
2008-05-12 21:21:10 +02:00
" probe to kernel_sched_wakeup\n");
return ret;
}
2008-07-18 12:16:17 -04:00
ret = register_trace_sched_wakeup_new(probe_sched_wakeup);
2008-05-12 21:21:10 +02:00
if (ret) {
2008-07-18 12:16:17 -04:00
pr_info("wakeup trace: Couldn't activate tracepoint"
2008-05-12 21:21:10 +02:00
" probe to kernel_sched_wakeup_new\n");
goto fail_deprobe;
}
2008-07-18 12:16:17 -04:00
ret = register_trace_sched_switch(probe_sched_switch);
2008-05-12 21:21:10 +02:00
if (ret) {
2008-07-18 12:16:17 -04:00
pr_info("sched trace: Couldn't activate tracepoint"
2008-05-12 21:21:10 +02:00
" probe to kernel_sched_schedule\n");
goto fail_deprobe_wake_new;
}
return ret;
fail_deprobe_wake_new:
2008-07-18 12:16:17 -04:00
unregister_trace_sched_wakeup_new(probe_sched_wakeup);
2008-05-12 21:21:10 +02:00
fail_deprobe:
2008-07-18 12:16:17 -04:00
unregister_trace_sched_wakeup(probe_sched_wakeup);
2008-05-12 21:21:10 +02:00
return ret;
}
static void tracing_sched_unregister(void)
{
2008-07-18 12:16:17 -04:00
unregister_trace_sched_switch(probe_sched_switch);
unregister_trace_sched_wakeup_new(probe_sched_wakeup);
unregister_trace_sched_wakeup(probe_sched_wakeup);
2008-05-12 21:21:10 +02:00
}
2008-05-22 10:37:48 +02:00
static void tracing_start_sched_switch(void)
2008-05-12 21:21:10 +02:00
{
mutex_lock(&sched_register_mutex);
2008-11-07 22:36:02 -05:00
if (!(sched_ref++))
2008-05-12 21:21:10 +02:00
tracing_sched_register();
mutex_unlock(&sched_register_mutex);
2008-05-12 21:21:10 +02:00
}
2008-05-22 10:37:48 +02:00
static void tracing_stop_sched_switch(void)
2008-05-12 21:21:10 +02:00
{
mutex_lock(&sched_register_mutex);
2008-11-07 22:36:02 -05:00
if (!(--sched_ref))
2008-05-12 21:21:10 +02:00
tracing_sched_unregister();
mutex_unlock(&sched_register_mutex);
2008-05-12 21:21:10 +02:00
}
2008-05-22 11:49:22 -04:00
void tracing_start_cmdline_record(void)
{
tracing_start_sched_switch();
}
void tracing_stop_cmdline_record(void)
{
tracing_stop_sched_switch();
}
2008-11-07 22:36:02 -05:00
/**
2008-11-07 22:36:02 -05:00
* tracing_start_sched_switch_record - start tracing context switches
*
* Turns on context switch tracing for a tracer.
*/
void tracing_start_sched_switch_record(void)
{
if (unlikely(!ctx_trace)) {
WARN_ON(1);
return;
}
tracing_start_sched_switch();
mutex_lock(&sched_register_mutex);
tracer_enabled++;
mutex_unlock(&sched_register_mutex);
}
/**
* tracing_stop_sched_switch_record - start tracing context switches
*
* Turns off context switch tracing for a tracer.
*/
void tracing_stop_sched_switch_record(void)
{
mutex_lock(&sched_register_mutex);
tracer_enabled--;
WARN_ON(tracer_enabled < 0);
mutex_unlock(&sched_register_mutex);
tracing_stop_sched_switch();
}
/**
* tracing_sched_switch_assign_trace - assign a trace array for ctx switch
2008-11-07 22:36:02 -05:00
* @tr: trace array pointer to assign
*
* Some tracers might want to record the context switches in their
* trace. This function lets those tracers assign the trace array
* to use.
*/
2008-11-07 22:36:02 -05:00
void tracing_sched_switch_assign_trace(struct trace_array *tr)
2008-11-07 22:36:02 -05:00
{
ctx_trace = tr;
}
2008-05-12 21:20:51 +02:00
static void start_sched_trace(struct trace_array *tr)
2008-05-12 21:20:42 +02:00
{
tracing_reset_online_cpus(tr);
2008-11-07 22:36:02 -05:00
tracing_start_sched_switch_record();
2008-05-12 21:20:42 +02:00
}
2008-05-12 21:20:51 +02:00
static void stop_sched_trace(struct trace_array *tr)
2008-05-12 21:20:42 +02:00
{
2008-11-07 22:36:02 -05:00
tracing_stop_sched_switch_record();
2008-05-12 21:20:42 +02:00
}
static int sched_switch_trace_init(struct trace_array *tr)
2008-05-12 21:20:42 +02:00
{
ctx_trace = tr;
2008-11-07 22:36:02 -05:00
start_sched_trace(tr);
return 0;
2008-05-12 21:20:42 +02:00
}
2008-05-12 21:20:51 +02:00
static void sched_switch_trace_reset(struct trace_array *tr)
2008-05-12 21:20:42 +02:00
{
2008-11-07 22:36:02 -05:00
if (sched_ref)
2008-05-12 21:20:42 +02:00
stop_sched_trace(tr);
}
static void sched_switch_trace_start(struct trace_array *tr)
{
tracing_reset_online_cpus(tr);
tracing_start_sched_switch();
}
static void sched_switch_trace_stop(struct trace_array *tr)
{
tracing_stop_sched_switch();
}
2008-11-07 22:36:02 -05:00
static struct tracer sched_switch_trace __read_mostly =
2008-05-12 21:20:42 +02:00
{
.name = "sched_switch",
.init = sched_switch_trace_init,
.reset = sched_switch_trace_reset,
.start = sched_switch_trace_start,
.stop = sched_switch_trace_stop,
2008-05-12 21:20:44 +02:00
#ifdef CONFIG_FTRACE_SELFTEST
.selftest = trace_selftest_startup_sched_switch,
#endif
2008-05-12 21:20:42 +02:00
};
__init static int init_sched_switch_trace(void)
{
return register_tracer(&sched_switch_trace);
}
device_initcall(init_sched_switch_trace);