trace_sched_switch.c 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * 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/marker.h>
#include <linux/ftrace.h>

#include "trace.h"

static struct trace_array	*ctx_trace;
static int __read_mostly	tracer_enabled;

I
Ingo Molnar 已提交
20
static void
21
ctx_switch_func(void *__rq, struct task_struct *prev, struct task_struct *next)
22 23 24 25 26 27 28 29 30 31
{
	struct trace_array *tr = ctx_trace;
	struct trace_array_cpu *data;
	unsigned long flags;
	long disabled;
	int cpu;

	if (!tracer_enabled)
		return;

32
	local_irq_save(flags);
33 34 35 36
	cpu = raw_smp_processor_id();
	data = tr->data[cpu];
	disabled = atomic_inc_return(&data->disabled);

37
	if (likely(disabled == 1)) {
38
		tracing_sched_switch_trace(tr, data, prev, next, flags);
I
Ingo Molnar 已提交
39 40
		if (trace_flags & TRACE_ITER_SCHED_TREE)
			ftrace_all_fair_tasks(__rq, tr, data);
41
	}
42 43

	atomic_dec(&data->disabled);
44
	local_irq_restore(flags);
45 46
}

47 48
static void
wakeup_func(void *__rq, struct task_struct *wakee, struct task_struct *curr)
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
{
	struct trace_array *tr = ctx_trace;
	struct trace_array_cpu *data;
	unsigned long flags;
	long disabled;
	int cpu;

	if (!tracer_enabled)
		return;

	local_irq_save(flags);
	cpu = raw_smp_processor_id();
	data = tr->data[cpu];
	disabled = atomic_inc_return(&data->disabled);

64
	if (likely(disabled == 1)) {
65
		tracing_sched_wakeup_trace(tr, data, wakee, curr, flags);
I
Ingo Molnar 已提交
66 67
		if (trace_flags & TRACE_ITER_SCHED_TREE)
			ftrace_all_fair_tasks(__rq, tr, data);
68
	}
69 70 71 72 73

	atomic_dec(&data->disabled);
	local_irq_restore(flags);
}

74 75 76
void
ftrace_ctx_switch(void *__rq, struct task_struct *prev,
		  struct task_struct *next)
77 78 79 80 81 82 83
{
	tracing_record_cmdline(prev);

	/*
	 * If tracer_switch_func only points to the local
	 * switch func, it still needs the ptr passed to it.
	 */
84
	ctx_switch_func(__rq, prev, next);
85 86 87 88 89 90 91

	/*
	 * Chain to the wakeup tracer (this is a NOP if disabled):
	 */
	wakeup_sched_switch(prev, next);
}

92
void
93 94
ftrace_wake_up_task(void *__rq, struct task_struct *wakee,
		    struct task_struct *curr)
95 96 97
{
	tracing_record_cmdline(curr);

98
	wakeup_func(__rq, wakee, curr);
99 100 101 102 103 104 105

	/*
	 * Chain to the wakeup tracer (this is a NOP if disabled):
	 */
	wakeup_sched_wakeup(wakee, curr);
}

I
Ingo Molnar 已提交
106
static void sched_switch_reset(struct trace_array *tr)
107 108 109
{
	int cpu;

I
Ingo Molnar 已提交
110
	tr->time_start = ftrace_now(tr->cpu);
111 112 113 114 115

	for_each_online_cpu(cpu)
		tracing_reset(tr->data[cpu]);
}

I
Ingo Molnar 已提交
116
static void start_sched_trace(struct trace_array *tr)
117 118 119 120 121
{
	sched_switch_reset(tr);
	tracer_enabled = 1;
}

I
Ingo Molnar 已提交
122
static void stop_sched_trace(struct trace_array *tr)
123 124 125 126
{
	tracer_enabled = 0;
}

I
Ingo Molnar 已提交
127
static void sched_switch_trace_init(struct trace_array *tr)
128 129 130 131 132 133 134
{
	ctx_trace = tr;

	if (tr->ctrl)
		start_sched_trace(tr);
}

I
Ingo Molnar 已提交
135
static void sched_switch_trace_reset(struct trace_array *tr)
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
{
	if (tr->ctrl)
		stop_sched_trace(tr);
}

static void sched_switch_trace_ctrl_update(struct trace_array *tr)
{
	/* When starting a new trace, reset the buffers */
	if (tr->ctrl)
		start_sched_trace(tr);
	else
		stop_sched_trace(tr);
}

static struct tracer sched_switch_trace __read_mostly =
{
	.name		= "sched_switch",
	.init		= sched_switch_trace_init,
	.reset		= sched_switch_trace_reset,
	.ctrl_update	= sched_switch_trace_ctrl_update,
S
Steven Rostedt 已提交
156 157 158
#ifdef CONFIG_FTRACE_SELFTEST
	.selftest    = trace_selftest_startup_sched_switch,
#endif
159 160 161 162 163 164 165
};

__init static int init_sched_switch_trace(void)
{
	return register_tracer(&sched_switch_trace);
}
device_initcall(init_sched_switch_trace);