blob: 1fc622bd18346d8652dfbbd66bdd0a9c2897a557 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * @file oprofile_stats.h
3 *
4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
6 *
7 * @author John Levon
8 */
9
10#ifndef OPROFILE_STATS_H
11#define OPROFILE_STATS_H
12
Arun Sharma600634972011-07-26 16:09:06 -070013#include <linux/atomic.h>
Robert Richter6a180372008-10-16 15:01:40 +020014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015struct oprofile_stat_struct {
16 atomic_t sample_lost_no_mm;
17 atomic_t sample_lost_no_mapping;
18 atomic_t bt_lost_no_mapping;
19 atomic_t event_lost_overflow;
Robert Richter1b294f52009-07-09 14:56:25 +020020 atomic_t multiplex_counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021};
22
23extern struct oprofile_stat_struct oprofile_stats;
Robert Richter6a180372008-10-16 15:01:40 +020024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/* reset all stats to zero */
26void oprofile_reset_stats(void);
Robert Richter6a180372008-10-16 15:01:40 +020027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028struct dentry;
Robert Richter6a180372008-10-16 15:01:40 +020029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/* create the stats/ dir */
Al Viro40437c72013-07-19 15:54:56 +040031void oprofile_create_stats_files(struct dentry *root);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#endif /* OPROFILE_STATS_H */