ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / oprofile / oprofile_stats.h
1 /**
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
13 #include <asm/atomic.h>
14  
15 struct oprofile_stat_struct {
16         atomic_t sample_lost_no_mm;
17         atomic_t sample_lost_no_mapping;
18         atomic_t event_lost_overflow;
19 };
20
21 extern struct oprofile_stat_struct oprofile_stats;
22  
23 /* reset all stats to zero */
24 void oprofile_reset_stats(void);
25  
26 struct super_block;
27 struct dentry;
28  
29 /* create the stats/ dir */
30 void oprofile_create_stats_files(struct super_block * sb, struct dentry * root);
31
32 #endif /* OPROFILE_STATS_H */