Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 121257
b: refs/heads/master
c: e32d895
h: refs/heads/master
i:
  121255: 5793eb9
v: v3
  • Loading branch information
Steven Rostedt authored and Ingo Molnar committed Dec 4, 2008
1 parent 74e1539 commit f77ed0c
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 978f3a45d9499c7a447ca7615455cefb63d44165
refs/heads/master: e32d89569128e76bdf84867be0928902ca9f7555
74 changes: 63 additions & 11 deletions trunk/kernel/trace/ftrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ static int last_ftrace_enabled;

/* set when tracing only a pid */
struct pid *ftrace_pid_trace;
static struct pid * const ftrace_swapper_pid = (struct pid *)1;

/* Quick disabling of function tracer. */
int function_trace_stop;
Expand Down Expand Up @@ -1678,27 +1679,53 @@ ftrace_pid_read(struct file *file, char __user *ubuf,
char buf[64];
int r;

if (ftrace_pid_trace)
if (ftrace_pid_trace == ftrace_swapper_pid)
r = sprintf(buf, "swapper tasks\n");
else if (ftrace_pid_trace)
r = sprintf(buf, "%u\n", pid_nr(ftrace_pid_trace));
else
r = sprintf(buf, "no pid\n");

return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
}

static void clear_ftrace_pid_task(struct pid **pid)
static void clear_ftrace_swapper(void)
{
struct task_struct *p;
int cpu;

do_each_pid_task(*pid, PIDTYPE_PID, p) {
get_online_cpus();
for_each_online_cpu(cpu) {
p = idle_task(cpu);
clear_tsk_trace_trace(p);
} while_each_pid_task(*pid, PIDTYPE_PID, p);
put_pid(*pid);
}
put_online_cpus();
}

*pid = NULL;
static void set_ftrace_swapper(void)
{
struct task_struct *p;
int cpu;

get_online_cpus();
for_each_online_cpu(cpu) {
p = idle_task(cpu);
set_tsk_trace_trace(p);
}
put_online_cpus();
}

static void set_ftrace_pid_task(struct pid *pid)
static void clear_ftrace_pid(struct pid *pid)
{
struct task_struct *p;

do_each_pid_task(pid, PIDTYPE_PID, p) {
clear_tsk_trace_trace(p);
} while_each_pid_task(pid, PIDTYPE_PID, p);
put_pid(pid);
}

static void set_ftrace_pid(struct pid *pid)
{
struct task_struct *p;

Expand All @@ -1707,6 +1734,24 @@ static void set_ftrace_pid_task(struct pid *pid)
} while_each_pid_task(pid, PIDTYPE_PID, p);
}

static void clear_ftrace_pid_task(struct pid **pid)
{
if (*pid == ftrace_swapper_pid)
clear_ftrace_swapper();
else
clear_ftrace_pid(*pid);

*pid = NULL;
}

static void set_ftrace_pid_task(struct pid *pid)
{
if (pid == ftrace_swapper_pid)
set_ftrace_swapper();
else
set_ftrace_pid(pid);
}

static ssize_t
ftrace_pid_write(struct file *filp, const char __user *ubuf,
size_t cnt, loff_t *ppos)
Expand Down Expand Up @@ -1737,11 +1782,18 @@ ftrace_pid_write(struct file *filp, const char __user *ubuf,
clear_ftrace_pid_task(&ftrace_pid_trace);

} else {
pid = find_get_pid(val);
/* swapper task is special */
if (!val) {
pid = ftrace_swapper_pid;
if (pid == ftrace_pid_trace)
goto out;
} else {
pid = find_get_pid(val);

if (pid == ftrace_pid_trace) {
put_pid(pid);
goto out;
if (pid == ftrace_pid_trace) {
put_pid(pid);
goto out;
}
}

if (ftrace_pid_trace)
Expand Down

0 comments on commit f77ed0c

Please sign in to comment.