|
@@ -32,7 +32,7 @@ struct percpu_counter {
|
|
|
|
|
|
void percpu_counter_init(struct percpu_counter *fbc, s64 amount);
|
|
|
void percpu_counter_destroy(struct percpu_counter *fbc);
|
|
|
-void percpu_counter_mod(struct percpu_counter *fbc, s32 amount);
|
|
|
+void percpu_counter_add(struct percpu_counter *fbc, s32 amount);
|
|
|
s64 percpu_counter_sum(struct percpu_counter *fbc);
|
|
|
|
|
|
static inline s64 percpu_counter_read(struct percpu_counter *fbc)
|
|
@@ -71,7 +71,7 @@ static inline void percpu_counter_destroy(struct percpu_counter *fbc)
|
|
|
}
|
|
|
|
|
|
static inline void
|
|
|
-percpu_counter_mod(struct percpu_counter *fbc, s32 amount)
|
|
|
+percpu_counter_add(struct percpu_counter *fbc, s32 amount)
|
|
|
{
|
|
|
preempt_disable();
|
|
|
fbc->count += amount;
|
|
@@ -97,12 +97,12 @@ static inline s64 percpu_counter_sum(struct percpu_counter *fbc)
|
|
|
|
|
|
static inline void percpu_counter_inc(struct percpu_counter *fbc)
|
|
|
{
|
|
|
- percpu_counter_mod(fbc, 1);
|
|
|
+ percpu_counter_add(fbc, 1);
|
|
|
}
|
|
|
|
|
|
static inline void percpu_counter_dec(struct percpu_counter *fbc)
|
|
|
{
|
|
|
- percpu_counter_mod(fbc, -1);
|
|
|
+ percpu_counter_add(fbc, -1);
|
|
|
}
|
|
|
|
|
|
#endif /* _LINUX_PERCPU_COUNTER_H */
|