blob: 3c2270a8300c40833bcf0900968635e2b166abc6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * @file oprofile_stats.c
3 *
4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
6 *
7 * @author John Levon
8 */
9
10#include <linux/oprofile.h>
11#include <linux/smp.h>
12#include <linux/cpumask.h>
13#include <linux/threads.h>
Robert Richter6a180372008-10-16 15:01:40 +020014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "oprofile_stats.h"
16#include "cpu_buffer.h"
Robert Richter6a180372008-10-16 15:01:40 +020017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018struct oprofile_stat_struct oprofile_stats;
Robert Richter6a180372008-10-16 15:01:40 +020019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020void oprofile_reset_stats(void)
21{
Robert Richter25ad29132008-09-05 17:12:36 +020022 struct oprofile_cpu_buffer *cpu_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 int i;
Robert Richter6a180372008-10-16 15:01:40 +020024
KAMEZAWA Hiroyukife449f42006-03-28 01:56:38 -080025 for_each_possible_cpu(i) {
Mike Travis608dfdd2008-04-28 02:14:15 -070026 cpu_buf = &per_cpu(cpu_buffer, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 cpu_buf->sample_received = 0;
28 cpu_buf->sample_lost_overflow = 0;
Philippe Eliedf9d1772007-11-14 16:58:48 -080029 cpu_buf->backtrace_aborted = 0;
30 cpu_buf->sample_invalid_eip = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 }
Robert Richter6a180372008-10-16 15:01:40 +020032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 atomic_set(&oprofile_stats.sample_lost_no_mm, 0);
34 atomic_set(&oprofile_stats.sample_lost_no_mapping, 0);
35 atomic_set(&oprofile_stats.event_lost_overflow, 0);
Maynard Johnson2b8777c2009-05-27 10:15:08 -050036 atomic_set(&oprofile_stats.bt_lost_no_mapping, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037}
38
39
Robert Richter25ad29132008-09-05 17:12:36 +020040void oprofile_create_stats_files(struct super_block *sb, struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Robert Richter25ad29132008-09-05 17:12:36 +020042 struct oprofile_cpu_buffer *cpu_buf;
43 struct dentry *cpudir;
44 struct dentry *dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 char buf[10];
46 int i;
47
48 dir = oprofilefs_mkdir(sb, root, "stats");
49 if (!dir)
50 return;
51
KAMEZAWA Hiroyukife449f42006-03-28 01:56:38 -080052 for_each_possible_cpu(i) {
Mike Travis608dfdd2008-04-28 02:14:15 -070053 cpu_buf = &per_cpu(cpu_buffer, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 snprintf(buf, 10, "cpu%d", i);
55 cpudir = oprofilefs_mkdir(sb, dir, buf);
Robert Richter6a180372008-10-16 15:01:40 +020056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 /* Strictly speaking access to these ulongs is racy,
58 * but we can't simply lock them, and they are
59 * informational only.
60 */
61 oprofilefs_create_ro_ulong(sb, cpudir, "sample_received",
62 &cpu_buf->sample_received);
63 oprofilefs_create_ro_ulong(sb, cpudir, "sample_lost_overflow",
64 &cpu_buf->sample_lost_overflow);
65 oprofilefs_create_ro_ulong(sb, cpudir, "backtrace_aborted",
66 &cpu_buf->backtrace_aborted);
Philippe Eliedf9d1772007-11-14 16:58:48 -080067 oprofilefs_create_ro_ulong(sb, cpudir, "sample_invalid_eip",
68 &cpu_buf->sample_invalid_eip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 }
Robert Richter6a180372008-10-16 15:01:40 +020070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 oprofilefs_create_ro_atomic(sb, dir, "sample_lost_no_mm",
72 &oprofile_stats.sample_lost_no_mm);
73 oprofilefs_create_ro_atomic(sb, dir, "sample_lost_no_mapping",
74 &oprofile_stats.sample_lost_no_mapping);
75 oprofilefs_create_ro_atomic(sb, dir, "event_lost_overflow",
76 &oprofile_stats.event_lost_overflow);
77 oprofilefs_create_ro_atomic(sb, dir, "bt_lost_no_mapping",
78 &oprofile_stats.bt_lost_no_mapping);
79}