| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /** | 
|  | 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 Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 14 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include "oprofile_stats.h" | 
|  | 16 | #include "cpu_buffer.h" | 
| Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 17 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | struct oprofile_stat_struct oprofile_stats; | 
| Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 19 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | void oprofile_reset_stats(void) | 
|  | 21 | { | 
| Robert Richter | 25ad291 | 2008-09-05 17:12:36 +0200 | [diff] [blame] | 22 | struct oprofile_cpu_buffer *cpu_buf; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | int i; | 
| Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 24 |  | 
| KAMEZAWA Hiroyuki | fe449f4 | 2006-03-28 01:56:38 -0800 | [diff] [blame] | 25 | for_each_possible_cpu(i) { | 
| Tejun Heo | b3e9f67 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 26 | cpu_buf = &per_cpu(op_cpu_buffer, i); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | cpu_buf->sample_received = 0; | 
|  | 28 | cpu_buf->sample_lost_overflow = 0; | 
| Philippe Elie | df9d177 | 2007-11-14 16:58:48 -0800 | [diff] [blame] | 29 | cpu_buf->backtrace_aborted = 0; | 
|  | 30 | cpu_buf->sample_invalid_eip = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | } | 
| Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 32 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | 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 Johnson | 2b8777c | 2009-05-27 10:15:08 -0500 | [diff] [blame] | 36 | atomic_set(&oprofile_stats.bt_lost_no_mapping, 0); | 
| Robert Richter | 1b294f5 | 2009-07-09 14:56:25 +0200 | [diff] [blame] | 37 | atomic_set(&oprofile_stats.multiplex_counter, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | } | 
|  | 39 |  | 
|  | 40 |  | 
| Robert Richter | 25ad291 | 2008-09-05 17:12:36 +0200 | [diff] [blame] | 41 | void oprofile_create_stats_files(struct super_block *sb, struct dentry *root) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | { | 
| Robert Richter | 25ad291 | 2008-09-05 17:12:36 +0200 | [diff] [blame] | 43 | struct oprofile_cpu_buffer *cpu_buf; | 
|  | 44 | struct dentry *cpudir; | 
|  | 45 | struct dentry *dir; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | char buf[10]; | 
|  | 47 | int i; | 
|  | 48 |  | 
|  | 49 | dir = oprofilefs_mkdir(sb, root, "stats"); | 
|  | 50 | if (!dir) | 
|  | 51 | return; | 
|  | 52 |  | 
| KAMEZAWA Hiroyuki | fe449f4 | 2006-03-28 01:56:38 -0800 | [diff] [blame] | 53 | for_each_possible_cpu(i) { | 
| Tejun Heo | b3e9f67 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 54 | cpu_buf = &per_cpu(op_cpu_buffer, i); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | snprintf(buf, 10, "cpu%d", i); | 
|  | 56 | cpudir = oprofilefs_mkdir(sb, dir, buf); | 
| Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 57 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | /* Strictly speaking access to these ulongs is racy, | 
|  | 59 | * but we can't simply lock them, and they are | 
|  | 60 | * informational only. | 
|  | 61 | */ | 
|  | 62 | oprofilefs_create_ro_ulong(sb, cpudir, "sample_received", | 
|  | 63 | &cpu_buf->sample_received); | 
|  | 64 | oprofilefs_create_ro_ulong(sb, cpudir, "sample_lost_overflow", | 
|  | 65 | &cpu_buf->sample_lost_overflow); | 
|  | 66 | oprofilefs_create_ro_ulong(sb, cpudir, "backtrace_aborted", | 
|  | 67 | &cpu_buf->backtrace_aborted); | 
| Philippe Elie | df9d177 | 2007-11-14 16:58:48 -0800 | [diff] [blame] | 68 | oprofilefs_create_ro_ulong(sb, cpudir, "sample_invalid_eip", | 
|  | 69 | &cpu_buf->sample_invalid_eip); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } | 
| Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 71 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | oprofilefs_create_ro_atomic(sb, dir, "sample_lost_no_mm", | 
|  | 73 | &oprofile_stats.sample_lost_no_mm); | 
|  | 74 | oprofilefs_create_ro_atomic(sb, dir, "sample_lost_no_mapping", | 
|  | 75 | &oprofile_stats.sample_lost_no_mapping); | 
|  | 76 | oprofilefs_create_ro_atomic(sb, dir, "event_lost_overflow", | 
|  | 77 | &oprofile_stats.event_lost_overflow); | 
|  | 78 | oprofilefs_create_ro_atomic(sb, dir, "bt_lost_no_mapping", | 
|  | 79 | &oprofile_stats.bt_lost_no_mapping); | 
| Jason Yeh | 4d4036e | 2009-07-08 13:49:38 +0200 | [diff] [blame] | 80 | #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX | 
|  | 81 | oprofilefs_create_ro_atomic(sb, dir, "multiplex_counter", | 
| Robert Richter | 1b294f5 | 2009-07-09 14:56:25 +0200 | [diff] [blame] | 82 | &oprofile_stats.multiplex_counter); | 
| Jason Yeh | 4d4036e | 2009-07-08 13:49:38 +0200 | [diff] [blame] | 83 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } |