|
@@ -39,7 +39,8 @@ int __percpu_counter_init(struct percpu_counter *fbc, s64 amount, gfp_t gfp,
|
|
|
|
|
|
void percpu_counter_destroy(struct percpu_counter *fbc);
|
|
|
void percpu_counter_set(struct percpu_counter *fbc, s64 amount);
|
|
|
-void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch);
|
|
|
+void percpu_counter_add_batch(struct percpu_counter *fbc, s64 amount,
|
|
|
+ s32 batch);
|
|
|
s64 __percpu_counter_sum(struct percpu_counter *fbc);
|
|
|
int __percpu_counter_compare(struct percpu_counter *fbc, s64 rhs, s32 batch);
|
|
|
|
|
@@ -50,7 +51,7 @@ static inline int percpu_counter_compare(struct percpu_counter *fbc, s64 rhs)
|
|
|
|
|
|
static inline void percpu_counter_add(struct percpu_counter *fbc, s64 amount)
|
|
|
{
|
|
|
- __percpu_counter_add(fbc, amount, percpu_counter_batch);
|
|
|
+ percpu_counter_add_batch(fbc, amount, percpu_counter_batch);
|
|
|
}
|
|
|
|
|
|
static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc)
|
|
@@ -136,7 +137,7 @@ percpu_counter_add(struct percpu_counter *fbc, s64 amount)
|
|
|
}
|
|
|
|
|
|
static inline void
|
|
|
-__percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch)
|
|
|
+percpu_counter_add_batch(struct percpu_counter *fbc, s64 amount, s32 batch)
|
|
|
{
|
|
|
percpu_counter_add(fbc, amount);
|
|
|
}
|