diff options
Diffstat (limited to 'include/linux/percpu_counter.h')
-rw-r--r-- | include/linux/percpu_counter.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/percpu_counter.h b/include/linux/percpu_counter.h index 21e054595bcb..f7ecd38d7e9c 100644 --- a/include/linux/percpu_counter.h +++ b/include/linux/percpu_counter.h | |||
@@ -30,7 +30,7 @@ struct percpu_counter { | |||
30 | #define FBC_BATCH (NR_CPUS*4) | 30 | #define FBC_BATCH (NR_CPUS*4) |
31 | #endif | 31 | #endif |
32 | 32 | ||
33 | void percpu_counter_init(struct percpu_counter *fbc, s64 amount); | 33 | int 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); |
@@ -78,9 +78,10 @@ struct percpu_counter { | |||
78 | s64 count; | 78 | s64 count; |
79 | }; | 79 | }; |
80 | 80 | ||
81 | static inline void percpu_counter_init(struct percpu_counter *fbc, s64 amount) | 81 | static inline int percpu_counter_init(struct percpu_counter *fbc, s64 amount) |
82 | { | 82 | { |
83 | fbc->count = amount; | 83 | fbc->count = amount; |
84 | return 0; | ||
84 | } | 85 | } |
85 | 86 | ||
86 | static inline void percpu_counter_destroy(struct percpu_counter *fbc) | 87 | static inline void percpu_counter_destroy(struct percpu_counter *fbc) |