diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2007-10-17 02:25:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:44 -0400 |
commit | 52d9f3b4090922f34497ace82bd062d80a465a29 (patch) | |
tree | 77ee238498a5b205fa80e58b41212a9e3334c8bf /include/linux/percpu_counter.h | |
parent | 3a587f47b82f96f19318c036e7b979fcd5c3848f (diff) |
lib: percpu_counter_sum_positive
s/percpu_counter_sum/&_positive/
Because its consitent with 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/linux/percpu_counter.h')
-rw-r--r-- | include/linux/percpu_counter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/percpu_counter.h b/include/linux/percpu_counter.h index 2da92e8ce3dd..dd89eb978393 100644 --- a/include/linux/percpu_counter.h +++ b/include/linux/percpu_counter.h | |||
@@ -34,7 +34,7 @@ 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(struct percpu_counter *fbc); | 37 | s64 percpu_counter_sum_positive(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 | { |
@@ -102,7 +102,7 @@ static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc) | |||
102 | return fbc->count; | 102 | return fbc->count; |
103 | } | 103 | } |
104 | 104 | ||
105 | static inline s64 percpu_counter_sum(struct percpu_counter *fbc) | 105 | static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc) |
106 | { | 106 | { |
107 | return percpu_counter_read_positive(fbc); | 107 | return percpu_counter_read_positive(fbc); |
108 | } | 108 | } |