aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/trace/ftrace.c
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2008-12-04 00:26:41 -0500
committerIngo Molnar <mingo@elte.hu>2008-12-04 03:09:38 -0500
commite32d89569128e76bdf84867be0928902ca9f7555 (patch)
treef82014ad89c0cf6f392778d9abb6060a04d458e6 /kernel/trace/ftrace.c
parent978f3a45d9499c7a447ca7615455cefb63d44165 (diff)
ftrace: add ability to only trace swapper tasks
Impact: new feature This patch lets the swapper tasks of all CPUS be filtered by the set_ftrace_pid file. If '0' is echoed into this file, then all the idle tasks (aka swapper) is flagged to be traced. This affects all CPU idle tasks. Signed-off-by: Steven Rostedt <srostedt@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/trace/ftrace.c')
-rw-r--r--kernel/trace/ftrace.c74
1 files changed, 63 insertions, 11 deletions
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index 10b1d7c1b1d..eb57dc1ea09 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -49,6 +49,7 @@ static int last_ftrace_enabled;
49 49
50/* set when tracing only a pid */ 50/* set when tracing only a pid */
51struct pid *ftrace_pid_trace; 51struct pid *ftrace_pid_trace;
52static struct pid * const ftrace_swapper_pid = (struct pid *)1;
52 53
53/* Quick disabling of function tracer. */ 54/* Quick disabling of function tracer. */
54int function_trace_stop; 55int function_trace_stop;
@@ -1678,7 +1679,9 @@ ftrace_pid_read(struct file *file, char __user *ubuf,
1678 char buf[64]; 1679 char buf[64];
1679 int r; 1680 int r;
1680 1681
1681 if (ftrace_pid_trace) 1682 if (ftrace_pid_trace == ftrace_swapper_pid)
1683 r = sprintf(buf, "swapper tasks\n");
1684 else if (ftrace_pid_trace)
1682 r = sprintf(buf, "%u\n", pid_nr(ftrace_pid_trace)); 1685 r = sprintf(buf, "%u\n", pid_nr(ftrace_pid_trace));
1683 else 1686 else
1684 r = sprintf(buf, "no pid\n"); 1687 r = sprintf(buf, "no pid\n");
@@ -1686,19 +1689,43 @@ ftrace_pid_read(struct file *file, char __user *ubuf,
1686 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); 1689 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
1687} 1690}
1688 1691
1689static void clear_ftrace_pid_task(struct pid **pid) 1692static void clear_ftrace_swapper(void)
1690{ 1693{
1691 struct task_struct *p; 1694 struct task_struct *p;
1695 int cpu;
1692 1696
1693 do_each_pid_task(*pid, PIDTYPE_PID, p) { 1697 get_online_cpus();
1698 for_each_online_cpu(cpu) {
1699 p = idle_task(cpu);
1694 clear_tsk_trace_trace(p); 1700 clear_tsk_trace_trace(p);
1695 } while_each_pid_task(*pid, PIDTYPE_PID, p); 1701 }
1696 put_pid(*pid); 1702 put_online_cpus();
1703}
1697 1704
1698 *pid = NULL; 1705static void set_ftrace_swapper(void)
1706{
1707 struct task_struct *p;
1708 int cpu;
1709
1710 get_online_cpus();
1711 for_each_online_cpu(cpu) {
1712 p = idle_task(cpu);
1713 set_tsk_trace_trace(p);
1714 }
1715 put_online_cpus();
1699} 1716}
1700 1717
1701static void set_ftrace_pid_task(struct pid *pid) 1718static void clear_ftrace_pid(struct pid *pid)
1719{
1720 struct task_struct *p;
1721
1722 do_each_pid_task(pid, PIDTYPE_PID, p) {
1723 clear_tsk_trace_trace(p);
1724 } while_each_pid_task(pid, PIDTYPE_PID, p);
1725 put_pid(pid);
1726}
1727
1728static void set_ftrace_pid(struct pid *pid)
1702{ 1729{
1703 struct task_struct *p; 1730 struct task_struct *p;
1704 1731
@@ -1707,6 +1734,24 @@ static void set_ftrace_pid_task(struct pid *pid)
1707 } while_each_pid_task(pid, PIDTYPE_PID, p); 1734 } while_each_pid_task(pid, PIDTYPE_PID, p);
1708} 1735}
1709 1736
1737static void clear_ftrace_pid_task(struct pid **pid)
1738{
1739 if (*pid == ftrace_swapper_pid)
1740 clear_ftrace_swapper();
1741 else
1742 clear_ftrace_pid(*pid);
1743
1744 *pid = NULL;
1745}
1746
1747static void set_ftrace_pid_task(struct pid *pid)
1748{
1749 if (pid == ftrace_swapper_pid)
1750 set_ftrace_swapper();
1751 else
1752 set_ftrace_pid(pid);
1753}
1754
1710static ssize_t 1755static ssize_t
1711ftrace_pid_write(struct file *filp, const char __user *ubuf, 1756ftrace_pid_write(struct file *filp, const char __user *ubuf,
1712 size_t cnt, loff_t *ppos) 1757 size_t cnt, loff_t *ppos)
@@ -1737,11 +1782,18 @@ ftrace_pid_write(struct file *filp, const char __user *ubuf,
1737 clear_ftrace_pid_task(&ftrace_pid_trace); 1782 clear_ftrace_pid_task(&ftrace_pid_trace);
1738 1783
1739 } else { 1784 } else {
1740 pid = find_get_pid(val); 1785 /* swapper task is special */
1786 if (!val) {
1787 pid = ftrace_swapper_pid;
1788 if (pid == ftrace_pid_trace)
1789 goto out;
1790 } else {
1791 pid = find_get_pid(val);
1741 1792
1742 if (pid == ftrace_pid_trace) { 1793 if (pid == ftrace_pid_trace) {
1743 put_pid(pid); 1794 put_pid(pid);
1744 goto out; 1795 goto out;
1796 }
1745 } 1797 }
1746 1798
1747 if (ftrace_pid_trace) 1799 if (ftrace_pid_trace)