diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2007-10-17 02:25:42 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:44 -0400 |
commit | aa0dff2d09bfa50b7d02714a45920c64568e699d (patch) | |
tree | ef94abad6a7c82da3ef9ecfb296d9bc1d3d4efb6 /include/linux/percpu_counter.h | |
parent | c4dc4beed23827e155d7cbc2a1ffa3949eddd194 (diff) |
lib: percpu_counter_add
s/percpu_counter_mod/percpu_counter_add/
Because its a better name, _mod implies modulo.
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 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/percpu_counter.h b/include/linux/percpu_counter.h index 3d9f70972cdf..b84fc8667de8 100644 --- a/include/linux/percpu_counter.h +++ b/include/linux/percpu_counter.h | |||
@@ -32,7 +32,7 @@ struct percpu_counter { | |||
32 | 32 | ||
33 | void percpu_counter_init(struct percpu_counter *fbc, s64 amount); | 33 | 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_mod(struct percpu_counter *fbc, s32 amount); | 35 | void percpu_counter_add(struct percpu_counter *fbc, s32 amount); |
36 | s64 percpu_counter_sum(struct percpu_counter *fbc); | 36 | s64 percpu_counter_sum(struct percpu_counter *fbc); |
37 | 37 | ||
38 | static inline s64 percpu_counter_read(struct percpu_counter *fbc) | 38 | static inline s64 percpu_counter_read(struct percpu_counter *fbc) |
@@ -71,7 +71,7 @@ static inline void percpu_counter_destroy(struct percpu_counter *fbc) | |||
71 | } | 71 | } |
72 | 72 | ||
73 | static inline void | 73 | static inline void |
74 | percpu_counter_mod(struct percpu_counter *fbc, s32 amount) | 74 | percpu_counter_add(struct percpu_counter *fbc, s32 amount) |
75 | { | 75 | { |
76 | preempt_disable(); | 76 | preempt_disable(); |
77 | fbc->count += amount; | 77 | fbc->count += amount; |
@@ -97,12 +97,12 @@ static inline s64 percpu_counter_sum(struct percpu_counter *fbc) | |||
97 | 97 | ||
98 | static inline void percpu_counter_inc(struct percpu_counter *fbc) | 98 | static inline void percpu_counter_inc(struct percpu_counter *fbc) |
99 | { | 99 | { |
100 | percpu_counter_mod(fbc, 1); | 100 | percpu_counter_add(fbc, 1); |
101 | } | 101 | } |
102 | 102 | ||
103 | static inline void percpu_counter_dec(struct percpu_counter *fbc) | 103 | static inline void percpu_counter_dec(struct percpu_counter *fbc) |
104 | { | 104 | { |
105 | percpu_counter_mod(fbc, -1); | 105 | percpu_counter_add(fbc, -1); |
106 | } | 106 | } |
107 | 107 | ||
108 | #endif /* _LINUX_PERCPU_COUNTER_H */ | 108 | #endif /* _LINUX_PERCPU_COUNTER_H */ |