diff options
Diffstat (limited to 'lib/percpu_counter.c')
-rw-r--r-- | lib/percpu_counter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/percpu_counter.c b/lib/percpu_counter.c index b0d80ea22a33..3b0ed80c1efd 100644 --- a/lib/percpu_counter.c +++ b/lib/percpu_counter.c | |||
@@ -52,7 +52,7 @@ EXPORT_SYMBOL(__percpu_counter_add); | |||
52 | * Add up all the per-cpu counts, return the result. This is a more accurate | 52 | * Add up all the per-cpu counts, return the result. This is a more accurate |
53 | * but much slower version of percpu_counter_read_positive() | 53 | * but much slower version of percpu_counter_read_positive() |
54 | */ | 54 | */ |
55 | s64 percpu_counter_sum_positive(struct percpu_counter *fbc) | 55 | s64 __percpu_counter_sum(struct percpu_counter *fbc) |
56 | { | 56 | { |
57 | s64 ret; | 57 | s64 ret; |
58 | int cpu; | 58 | int cpu; |
@@ -64,9 +64,9 @@ s64 percpu_counter_sum_positive(struct percpu_counter *fbc) | |||
64 | ret += *pcount; | 64 | ret += *pcount; |
65 | } | 65 | } |
66 | spin_unlock(&fbc->lock); | 66 | spin_unlock(&fbc->lock); |
67 | return ret < 0 ? 0 : ret; | 67 | return ret; |
68 | } | 68 | } |
69 | EXPORT_SYMBOL(percpu_counter_sum_positive); | 69 | EXPORT_SYMBOL(__percpu_counter_sum); |
70 | 70 | ||
71 | void percpu_counter_init(struct percpu_counter *fbc, s64 amount) | 71 | void percpu_counter_init(struct percpu_counter *fbc, s64 amount) |
72 | { | 72 | { |