Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / oprofile / oprofile_stats.h
blob6d755a633f15b58244bd6d23b4ac521bf12e0b2e
1 /**
2 * @file oprofile_stats.h
4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
7 * @author John Levon
8 */
10 #ifndef OPROFILE_STATS_H
11 #define OPROFILE_STATS_H
13 #include <asm/atomic.h>
15 struct 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;
22 extern struct oprofile_stat_struct oprofile_stats;
24 /* reset all stats to zero */
25 void oprofile_reset_stats(void);
27 struct super_block;
28 struct dentry;
30 /* create the stats/ dir */
31 void oprofile_create_stats_files(struct super_block * sb, struct dentry * root);
33 #endif /* OPROFILE_STATS_H */