allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / linux / percpu_counter.h
blob3e7af03df1b2b7528b7bf1c97f40e0692b81e7c6
1 #ifndef _LINUX_PERCPU_COUNTER_H
2 #define _LINUX_PERCPU_COUNTER_H
3 /*
4 * A simple "approximate counter" for use in ext2 and ext3 superblocks.
6 * WARNING: these things are HUGE. 4 kbytes per counter on 32-way P4.
7 */
9 #include <linux/spinlock.h>
10 #include <linux/smp.h>
11 #include <linux/threads.h>
12 #include <linux/percpu.h>
13 #include <linux/types.h>
15 #ifdef CONFIG_SMP
17 struct percpu_counter {
18 spinlock_t lock;
19 s64 count;
20 s32 *counters;
23 #if NR_CPUS >= 16
24 #define FBC_BATCH (NR_CPUS*2)
25 #else
26 #define FBC_BATCH (NR_CPUS*4)
27 #endif
29 static inline void percpu_counter_init(struct percpu_counter *fbc, s64 amount)
31 spin_lock_init(&fbc->lock);
32 fbc->count = amount;
33 fbc->counters = alloc_percpu(s32);
36 static inline void percpu_counter_destroy(struct percpu_counter *fbc)
38 free_percpu(fbc->counters);
41 void percpu_counter_mod(struct percpu_counter *fbc, s32 amount);
42 s64 percpu_counter_sum(struct percpu_counter *fbc);
44 static inline s64 percpu_counter_read(struct percpu_counter *fbc)
46 return fbc->count;
50 * It is possible for the percpu_counter_read() to return a small negative
51 * number for some counter which should never be negative.
54 static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc)
56 s64 ret = fbc->count;
58 barrier(); /* Prevent reloads of fbc->count */
59 if (ret >= 0)
60 return ret;
61 return 1;
64 static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc)
66 s64 ret = percpu_counter_sum(fbc);
67 return ret < 0 ? 0 : ret;
70 #else
72 struct percpu_counter {
73 s64 count;
76 static inline void percpu_counter_init(struct percpu_counter *fbc, s64 amount)
78 fbc->count = amount;
81 static inline void percpu_counter_destroy(struct percpu_counter *fbc)
85 static inline void
86 percpu_counter_mod(struct percpu_counter *fbc, s32 amount)
88 preempt_disable();
89 fbc->count += amount;
90 preempt_enable();
93 static inline s64 percpu_counter_read(struct percpu_counter *fbc)
95 return fbc->count;
98 static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc)
100 return fbc->count;
103 static inline s64 percpu_counter_sum(struct percpu_counter *fbc)
105 return percpu_counter_read(fbc);
108 static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc)
110 return percpu_counter_read_positive(fbc);
113 #endif /* CONFIG_SMP */
115 static inline void percpu_counter_inc(struct percpu_counter *fbc)
117 percpu_counter_mod(fbc, 1);
120 static inline void percpu_counter_dec(struct percpu_counter *fbc)
122 percpu_counter_mod(fbc, -1);
125 #endif /* _LINUX_PERCPU_COUNTER_H */