diff options
| -rw-r--r-- | include/linux/percpu_counter.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/percpu_counter.h b/include/linux/percpu_counter.h index 46f6ba56fa91..5edc9014263a 100644 --- a/include/linux/percpu_counter.h +++ b/include/linux/percpu_counter.h | |||
| @@ -75,7 +75,7 @@ static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc) | |||
| 75 | barrier(); /* Prevent reloads of fbc->count */ | 75 | barrier(); /* Prevent reloads of fbc->count */ |
| 76 | if (ret >= 0) | 76 | if (ret >= 0) |
| 77 | return ret; | 77 | return ret; |
| 78 | return 1; | 78 | return 0; |
| 79 | } | 79 | } |
| 80 | 80 | ||
| 81 | static inline int percpu_counter_initialized(struct percpu_counter *fbc) | 81 | static inline int percpu_counter_initialized(struct percpu_counter *fbc) |
| @@ -133,6 +133,10 @@ static inline s64 percpu_counter_read(struct percpu_counter *fbc) | |||
| 133 | return fbc->count; | 133 | return fbc->count; |
| 134 | } | 134 | } |
| 135 | 135 | ||
| 136 | /* | ||
| 137 | * percpu_counter is intended to track positive numbers. In the UP case the | ||
| 138 | * number should never be negative. | ||
| 139 | */ | ||
| 136 | static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc) | 140 | static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc) |
| 137 | { | 141 | { |
| 138 | return fbc->count; | 142 | return fbc->count; |
