blob: f5aa593ccf32fe358da38271e4a25d0653cfd8a0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_PERCPU_COUNTER_H
2#define _LINUX_PERCPU_COUNTER_H
3/*
4 * A simple "approximate counter" for use in ext2 and ext3 superblocks.
5 *
6 * WARNING: these things are HUGE. 4 kbytes per counter on 32-way P4.
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/spinlock.h>
10#include <linux/smp.h>
11#include <linux/threads.h>
12#include <linux/percpu.h>
Mingming Cao0216bfc2006-06-23 02:05:41 -070013#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#ifdef CONFIG_SMP
16
17struct percpu_counter {
18 spinlock_t lock;
Mingming Cao0216bfc2006-06-23 02:05:41 -070019 s64 count;
20 s32 *counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021};
22
23#if NR_CPUS >= 16
24#define FBC_BATCH (NR_CPUS*2)
25#else
26#define FBC_BATCH (NR_CPUS*4)
27#endif
28
Mingming Cao0216bfc2006-06-23 02:05:41 -070029static inline void percpu_counter_init(struct percpu_counter *fbc, s64 amount)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
31 spin_lock_init(&fbc->lock);
Mingming Cao0216bfc2006-06-23 02:05:41 -070032 fbc->count = amount;
33 fbc->counters = alloc_percpu(s32);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034}
35
36static inline void percpu_counter_destroy(struct percpu_counter *fbc)
37{
38 free_percpu(fbc->counters);
39}
40
Mingming Cao0216bfc2006-06-23 02:05:41 -070041void percpu_counter_mod(struct percpu_counter *fbc, s32 amount);
42s64 percpu_counter_sum(struct percpu_counter *fbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Mingming Cao0216bfc2006-06-23 02:05:41 -070044static inline s64 percpu_counter_read(struct percpu_counter *fbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
46 return fbc->count;
47}
48
49/*
50 * It is possible for the percpu_counter_read() to return a small negative
51 * number for some counter which should never be negative.
Mingming Cao0216bfc2006-06-23 02:05:41 -070052 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 */
Mingming Cao0216bfc2006-06-23 02:05:41 -070054static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Mingming Cao0216bfc2006-06-23 02:05:41 -070056 s64 ret = fbc->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 barrier(); /* Prevent reloads of fbc->count */
Mingming Cao0216bfc2006-06-23 02:05:41 -070059 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return ret;
61 return 1;
62}
63
64#else
65
66struct percpu_counter {
Mingming Cao0216bfc2006-06-23 02:05:41 -070067 s64 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
Mingming Cao0216bfc2006-06-23 02:05:41 -070070static inline void percpu_counter_init(struct percpu_counter *fbc, s64 amount)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Mingming Cao0216bfc2006-06-23 02:05:41 -070072 fbc->count = amount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
75static inline void percpu_counter_destroy(struct percpu_counter *fbc)
76{
77}
78
79static inline void
Mingming Cao0216bfc2006-06-23 02:05:41 -070080percpu_counter_mod(struct percpu_counter *fbc, s32 amount)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
82 preempt_disable();
83 fbc->count += amount;
84 preempt_enable();
85}
86
Mingming Cao0216bfc2006-06-23 02:05:41 -070087static inline s64 percpu_counter_read(struct percpu_counter *fbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 return fbc->count;
90}
91
Mingming Cao0216bfc2006-06-23 02:05:41 -070092static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 return fbc->count;
95}
96
Mingming Cao0216bfc2006-06-23 02:05:41 -070097static inline s64 percpu_counter_sum(struct percpu_counter *fbc)
Andrew Mortone2bab3d2006-03-07 21:55:31 -080098{
99 return percpu_counter_read_positive(fbc);
100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#endif /* CONFIG_SMP */
103
104static inline void percpu_counter_inc(struct percpu_counter *fbc)
105{
106 percpu_counter_mod(fbc, 1);
107}
108
109static inline void percpu_counter_dec(struct percpu_counter *fbc)
110{
111 percpu_counter_mod(fbc, -1);
112}
113
114#endif /* _LINUX_PERCPU_COUNTER_H */