RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / percpu_counter.h
blob8a7d510ffa9cb0fd11759d1224d125ff4e76a17f
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/list.h>
12 #include <linux/threads.h>
13 #include <linux/percpu.h>
14 #include <linux/types.h>
16 #ifdef CONFIG_SMP
18 struct percpu_counter {
19 spinlock_t lock;
20 s64 count;
21 #ifdef CONFIG_HOTPLUG_CPU
22 struct list_head list; /* All percpu_counters are on a list */
23 #endif
24 s32 __percpu *counters;
27 extern int percpu_counter_batch;
29 int __percpu_counter_init(struct percpu_counter *fbc, s64 amount,
30 struct lock_class_key *key);
32 #define percpu_counter_init(fbc, value) \
33 ({ \
34 static struct lock_class_key __key; \
36 __percpu_counter_init(fbc, value, &__key); \
39 void percpu_counter_destroy(struct percpu_counter *fbc);
40 void percpu_counter_set(struct percpu_counter *fbc, s64 amount);
41 void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch);
42 s64 __percpu_counter_sum(struct percpu_counter *fbc);
43 int percpu_counter_compare(struct percpu_counter *fbc, s64 rhs);
45 static inline void percpu_counter_add(struct percpu_counter *fbc, s64 amount)
47 __percpu_counter_add(fbc, amount, percpu_counter_batch);
50 static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc)
52 s64 ret = __percpu_counter_sum(fbc);
53 return ret < 0 ? 0 : ret;
56 static inline s64 percpu_counter_sum(struct percpu_counter *fbc)
58 return __percpu_counter_sum(fbc);
61 static inline s64 percpu_counter_read(struct percpu_counter *fbc)
63 return fbc->count;
67 * It is possible for the percpu_counter_read() to return a small negative
68 * number for some counter which should never be negative.
71 static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc)
73 s64 ret = fbc->count;
75 barrier(); /* Prevent reloads of fbc->count */
76 if (ret >= 0)
77 return ret;
78 return 1;
81 #else
83 struct percpu_counter {
84 s64 count;
87 static inline int percpu_counter_init(struct percpu_counter *fbc, s64 amount)
89 fbc->count = amount;
90 return 0;
93 static inline void percpu_counter_destroy(struct percpu_counter *fbc)
97 static inline void percpu_counter_set(struct percpu_counter *fbc, s64 amount)
99 fbc->count = amount;
102 static inline int percpu_counter_compare(struct percpu_counter *fbc, s64 rhs)
104 if (fbc->count > rhs)
105 return 1;
106 else if (fbc->count < rhs)
107 return -1;
108 else
109 return 0;
112 static inline void
113 percpu_counter_add(struct percpu_counter *fbc, s64 amount)
115 preempt_disable();
116 fbc->count += amount;
117 preempt_enable();
120 static inline void
121 __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch)
123 percpu_counter_add(fbc, amount);
126 static inline s64 percpu_counter_read(struct percpu_counter *fbc)
128 return fbc->count;
131 static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc)
133 return fbc->count;
136 static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc)
138 return percpu_counter_read_positive(fbc);
141 static inline s64 percpu_counter_sum(struct percpu_counter *fbc)
143 return percpu_counter_read(fbc);
146 #endif /* CONFIG_SMP */
148 static inline void percpu_counter_inc(struct percpu_counter *fbc)
150 percpu_counter_add(fbc, 1);
153 static inline void percpu_counter_dec(struct percpu_counter *fbc)
155 percpu_counter_add(fbc, -1);
158 static inline void percpu_counter_sub(struct percpu_counter *fbc, s64 amount)
160 percpu_counter_add(fbc, -amount);
163 #endif /* _LINUX_PERCPU_COUNTER_H */