diff options
| author | Ingo Molnar <mingo@elte.hu> | 2011-12-06 13:09:15 -0500 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2011-12-06 13:09:15 -0500 |
| commit | cc991b83b3eb11b253dd932932fa0bfd09c7564a (patch) | |
| tree | ab3b05fbc37a58741dbe5ccee45491100c13759c /kernel/trace | |
| parent | b202952075f62603bea9bfb6ebc6b0420db11949 (diff) | |
| parent | 39eaf7ef884dcc44f7ff1bac803ca2a1dcf43544 (diff) | |
Merge branch 'tip/perf/core' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace into perf/core
Diffstat (limited to 'kernel/trace')
| -rw-r--r-- | kernel/trace/trace.c | 90 | ||||
| -rw-r--r-- | kernel/trace/trace.h | 1 | ||||
| -rw-r--r-- | kernel/trace/trace_output.c | 16 |
3 files changed, 79 insertions, 28 deletions
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c index 9e158cc84ced..7392070ffc39 100644 --- a/kernel/trace/trace.c +++ b/kernel/trace/trace.c | |||
| @@ -338,7 +338,8 @@ static DECLARE_WAIT_QUEUE_HEAD(trace_wait); | |||
| 338 | /* trace_flags holds trace_options default values */ | 338 | /* trace_flags holds trace_options default values */ |
| 339 | unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK | | 339 | unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK | |
| 340 | TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | TRACE_ITER_SLEEP_TIME | | 340 | TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | TRACE_ITER_SLEEP_TIME | |
| 341 | TRACE_ITER_GRAPH_TIME | TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE; | 341 | TRACE_ITER_GRAPH_TIME | TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE | |
| 342 | TRACE_ITER_IRQ_INFO; | ||
| 342 | 343 | ||
| 343 | static int trace_stop_count; | 344 | static int trace_stop_count; |
| 344 | static DEFINE_RAW_SPINLOCK(tracing_start_lock); | 345 | static DEFINE_RAW_SPINLOCK(tracing_start_lock); |
| @@ -426,6 +427,7 @@ static const char *trace_options[] = { | |||
| 426 | "record-cmd", | 427 | "record-cmd", |
| 427 | "overwrite", | 428 | "overwrite", |
| 428 | "disable_on_free", | 429 | "disable_on_free", |
| 430 | "irq-info", | ||
| 429 | NULL | 431 | NULL |
| 430 | }; | 432 | }; |
| 431 | 433 | ||
| @@ -1843,6 +1845,33 @@ static void s_stop(struct seq_file *m, void *p) | |||
| 1843 | trace_event_read_unlock(); | 1845 | trace_event_read_unlock(); |
| 1844 | } | 1846 | } |
| 1845 | 1847 | ||
| 1848 | static void | ||
| 1849 | get_total_entries(struct trace_array *tr, unsigned long *total, unsigned long *entries) | ||
| 1850 | { | ||
| 1851 | unsigned long count; | ||
| 1852 | int cpu; | ||
| 1853 | |||
| 1854 | *total = 0; | ||
| 1855 | *entries = 0; | ||
| 1856 | |||
| 1857 | for_each_tracing_cpu(cpu) { | ||
| 1858 | count = ring_buffer_entries_cpu(tr->buffer, cpu); | ||
| 1859 | /* | ||
| 1860 | * If this buffer has skipped entries, then we hold all | ||
| 1861 | * entries for the trace and we need to ignore the | ||
| 1862 | * ones before the time stamp. | ||
| 1863 | */ | ||
| 1864 | if (tr->data[cpu]->skipped_entries) { | ||
| 1865 | count -= tr->data[cpu]->skipped_entries; | ||
| 1866 | /* total is the same as the entries */ | ||
| 1867 | *total += count; | ||
| 1868 | } else | ||
| 1869 | *total += count + | ||
| 1870 | ring_buffer_overrun_cpu(tr->buffer, cpu); | ||
| 1871 | *entries += count; | ||
| 1872 | } | ||
| 1873 | } | ||
| 1874 | |||
| 1846 | static void print_lat_help_header(struct seq_file *m) | 1875 | static void print_lat_help_header(struct seq_file *m) |
| 1847 | { | 1876 | { |
| 1848 | seq_puts(m, "# _------=> CPU# \n"); | 1877 | seq_puts(m, "# _------=> CPU# \n"); |
| @@ -1855,12 +1884,35 @@ static void print_lat_help_header(struct seq_file *m) | |||
| 1855 | seq_puts(m, "# \\ / ||||| \\ | / \n"); | 1884 | seq_puts(m, "# \\ / ||||| \\ | / \n"); |
| 1856 | } | 1885 | } |
| 1857 | 1886 | ||
| 1858 | static void print_func_help_header(struct seq_file *m) | 1887 | static void print_event_info(struct trace_array *tr, struct seq_file *m) |
| 1859 | { | 1888 | { |
| 1860 | seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n"); | 1889 | unsigned long total; |
| 1890 | unsigned long entries; | ||
| 1891 | |||
| 1892 | get_total_entries(tr, &total, &entries); | ||
| 1893 | seq_printf(m, "# entries-in-buffer/entries-written: %lu/%lu #P:%d\n", | ||
| 1894 | entries, total, num_online_cpus()); | ||
| 1895 | seq_puts(m, "#\n"); | ||
| 1896 | } | ||
| 1897 | |||
| 1898 | static void print_func_help_header(struct trace_array *tr, struct seq_file *m) | ||
| 1899 | { | ||
| 1900 | print_event_info(tr, m); | ||
| 1901 | seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n"); | ||
| 1861 | seq_puts(m, "# | | | | |\n"); | 1902 | seq_puts(m, "# | | | | |\n"); |
| 1862 | } | 1903 | } |
| 1863 | 1904 | ||
| 1905 | static void print_func_help_header_irq(struct trace_array *tr, struct seq_file *m) | ||
| 1906 | { | ||
| 1907 | print_event_info(tr, m); | ||
| 1908 | seq_puts(m, "# _-----=> irqs-off\n"); | ||
| 1909 | seq_puts(m, "# / _----=> need-resched\n"); | ||
| 1910 | seq_puts(m, "# | / _---=> hardirq/softirq\n"); | ||
| 1911 | seq_puts(m, "# || / _--=> preempt-depth\n"); | ||
| 1912 | seq_puts(m, "# ||| / delay\n"); | ||
| 1913 | seq_puts(m, "# TASK-PID CPU# |||| TIMESTAMP FUNCTION\n"); | ||
| 1914 | seq_puts(m, "# | | | |||| | |\n"); | ||
| 1915 | } | ||
| 1864 | 1916 | ||
| 1865 | void | 1917 | void |
| 1866 | print_trace_header(struct seq_file *m, struct trace_iterator *iter) | 1918 | print_trace_header(struct seq_file *m, struct trace_iterator *iter) |
| @@ -1869,32 +1921,14 @@ print_trace_header(struct seq_file *m, struct trace_iterator *iter) | |||
| 1869 | struct trace_array *tr = iter->tr; | 1921 | struct trace_array *tr = iter->tr; |
| 1870 | struct trace_array_cpu *data = tr->data[tr->cpu]; | 1922 | struct trace_array_cpu *data = tr->data[tr->cpu]; |
| 1871 | struct tracer *type = current_trace; | 1923 | struct tracer *type = current_trace; |
| 1872 | unsigned long entries = 0; | 1924 | unsigned long entries; |
| 1873 | unsigned long total = 0; | 1925 | unsigned long total; |
| 1874 | unsigned long count; | ||
| 1875 | const char *name = "preemption"; | 1926 | const char *name = "preemption"; |
| 1876 | int cpu; | ||
| 1877 | 1927 | ||
| 1878 | if (type) | 1928 | if (type) |
| 1879 | name = type->name; | 1929 | name = type->name; |
| 1880 | 1930 | ||
| 1881 | 1931 | get_total_entries(tr, &total, &entries); | |
| 1882 | for_each_tracing_cpu(cpu) { | ||
| 1883 | count = ring_buffer_entries_cpu(tr->buffer, cpu); | ||
| 1884 | /* | ||
| 1885 | * If this buffer has skipped entries, then we hold all | ||
| 1886 | * entries for the trace and we need to ignore the | ||
| 1887 | * ones before the time stamp. | ||
| 1888 | */ | ||
| 1889 | if (tr->data[cpu]->skipped_entries) { | ||
| 1890 | count -= tr->data[cpu]->skipped_entries; | ||
| 1891 | /* total is the same as the entries */ | ||
| 1892 | total += count; | ||
| 1893 | } else | ||
| 1894 | total += count + | ||
| 1895 | ring_buffer_overrun_cpu(tr->buffer, cpu); | ||
| 1896 | entries += count; | ||
| 1897 | } | ||
| 1898 | 1932 | ||
| 1899 | seq_printf(m, "# %s latency trace v1.1.5 on %s\n", | 1933 | seq_printf(m, "# %s latency trace v1.1.5 on %s\n", |
| 1900 | name, UTS_RELEASE); | 1934 | name, UTS_RELEASE); |
| @@ -2170,8 +2204,12 @@ void trace_default_header(struct seq_file *m) | |||
| 2170 | if (!(trace_flags & TRACE_ITER_VERBOSE)) | 2204 | if (!(trace_flags & TRACE_ITER_VERBOSE)) |
| 2171 | print_lat_help_header(m); | 2205 | print_lat_help_header(m); |
| 2172 | } else { | 2206 | } else { |
| 2173 | if (!(trace_flags & TRACE_ITER_VERBOSE)) | 2207 | if (!(trace_flags & TRACE_ITER_VERBOSE)) { |
| 2174 | print_func_help_header(m); | 2208 | if (trace_flags & TRACE_ITER_IRQ_INFO) |
| 2209 | print_func_help_header_irq(iter->tr, m); | ||
| 2210 | else | ||
| 2211 | print_func_help_header(iter->tr, m); | ||
| 2212 | } | ||
| 2175 | } | 2213 | } |
| 2176 | } | 2214 | } |
| 2177 | 2215 | ||
diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h index f8ec2291b522..2c2657462ac3 100644 --- a/kernel/trace/trace.h +++ b/kernel/trace/trace.h | |||
| @@ -655,6 +655,7 @@ enum trace_iterator_flags { | |||
| 655 | TRACE_ITER_RECORD_CMD = 0x100000, | 655 | TRACE_ITER_RECORD_CMD = 0x100000, |
| 656 | TRACE_ITER_OVERWRITE = 0x200000, | 656 | TRACE_ITER_OVERWRITE = 0x200000, |
| 657 | TRACE_ITER_STOP_ON_FREE = 0x400000, | 657 | TRACE_ITER_STOP_ON_FREE = 0x400000, |
| 658 | TRACE_ITER_IRQ_INFO = 0x800000, | ||
| 658 | }; | 659 | }; |
| 659 | 660 | ||
| 660 | /* | 661 | /* |
diff --git a/kernel/trace/trace_output.c b/kernel/trace/trace_output.c index 51999309a6cf..0d6ff3555942 100644 --- a/kernel/trace/trace_output.c +++ b/kernel/trace/trace_output.c | |||
| @@ -627,11 +627,23 @@ int trace_print_context(struct trace_iterator *iter) | |||
| 627 | unsigned long usec_rem = do_div(t, USEC_PER_SEC); | 627 | unsigned long usec_rem = do_div(t, USEC_PER_SEC); |
| 628 | unsigned long secs = (unsigned long)t; | 628 | unsigned long secs = (unsigned long)t; |
| 629 | char comm[TASK_COMM_LEN]; | 629 | char comm[TASK_COMM_LEN]; |
| 630 | int ret; | ||
| 630 | 631 | ||
| 631 | trace_find_cmdline(entry->pid, comm); | 632 | trace_find_cmdline(entry->pid, comm); |
| 632 | 633 | ||
| 633 | return trace_seq_printf(s, "%16s-%-5d [%03d] %5lu.%06lu: ", | 634 | ret = trace_seq_printf(s, "%16s-%-5d [%03d] ", |
| 634 | comm, entry->pid, iter->cpu, secs, usec_rem); | 635 | comm, entry->pid, iter->cpu); |
| 636 | if (!ret) | ||
| 637 | return 0; | ||
| 638 | |||
| 639 | if (trace_flags & TRACE_ITER_IRQ_INFO) { | ||
| 640 | ret = trace_print_lat_fmt(s, entry); | ||
| 641 | if (!ret) | ||
| 642 | return 0; | ||
| 643 | } | ||
| 644 | |||
| 645 | return trace_seq_printf(s, " %5lu.%06lu: ", | ||
| 646 | secs, usec_rem); | ||
| 635 | } | 647 | } |
| 636 | 648 | ||
| 637 | int trace_print_lat_context(struct trace_iterator *iter) | 649 | int trace_print_lat_context(struct trace_iterator *iter) |
