diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2007-10-17 02:25:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:44 -0400 |
commit | bf1d89c81352f6eca72d0c10cfee3dba29ef5efb (patch) | |
tree | 4154acea12a0273ffbc3eafe39530b2e25aa4ed5 /include | |
parent | 52d9f3b4090922f34497ace82bd062d80a465a29 (diff) |
lib: percpu_count_sum()
Provide an accurate version of percpu_counter_read.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/percpu_counter.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/include/linux/percpu_counter.h b/include/linux/percpu_counter.h index dd89eb978393..21e054595bcb 100644 --- a/include/linux/percpu_counter.h +++ b/include/linux/percpu_counter.h | |||
@@ -34,13 +34,24 @@ void percpu_counter_init(struct percpu_counter *fbc, s64 amount); | |||
34 | void percpu_counter_destroy(struct percpu_counter *fbc); | 34 | void percpu_counter_destroy(struct percpu_counter *fbc); |
35 | void percpu_counter_set(struct percpu_counter *fbc, s64 amount); | 35 | void percpu_counter_set(struct percpu_counter *fbc, s64 amount); |
36 | void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch); | 36 | void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch); |
37 | s64 percpu_counter_sum_positive(struct percpu_counter *fbc); | 37 | s64 __percpu_counter_sum(struct percpu_counter *fbc); |
38 | 38 | ||
39 | static inline void percpu_counter_add(struct percpu_counter *fbc, s64 amount) | 39 | static inline void percpu_counter_add(struct percpu_counter *fbc, s64 amount) |
40 | { | 40 | { |
41 | __percpu_counter_add(fbc, amount, FBC_BATCH); | 41 | __percpu_counter_add(fbc, amount, FBC_BATCH); |
42 | } | 42 | } |
43 | 43 | ||
44 | static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc) | ||
45 | { | ||
46 | s64 ret = __percpu_counter_sum(fbc); | ||
47 | return ret < 0 ? 0 : ret; | ||
48 | } | ||
49 | |||
50 | static inline s64 percpu_counter_sum(struct percpu_counter *fbc) | ||
51 | { | ||
52 | return __percpu_counter_sum(fbc); | ||
53 | } | ||
54 | |||
44 | static inline s64 percpu_counter_read(struct percpu_counter *fbc) | 55 | static inline s64 percpu_counter_read(struct percpu_counter *fbc) |
45 | { | 56 | { |
46 | return fbc->count; | 57 | return fbc->count; |
@@ -107,6 +118,11 @@ static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc) | |||
107 | return percpu_counter_read_positive(fbc); | 118 | return percpu_counter_read_positive(fbc); |
108 | } | 119 | } |
109 | 120 | ||
121 | static inline s64 percpu_counter_sum(struct percpu_counter *fbc) | ||
122 | { | ||
123 | return percpu_counter_read(fbc); | ||
124 | } | ||
125 | |||
110 | #endif /* CONFIG_SMP */ | 126 | #endif /* CONFIG_SMP */ |
111 | 127 | ||
112 | static inline void percpu_counter_inc(struct percpu_counter *fbc) | 128 | static inline void percpu_counter_inc(struct percpu_counter *fbc) |