diff options
Diffstat (limited to 'libbcachefs/util.h')
-rw-r--r-- | libbcachefs/util.h | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/libbcachefs/util.h b/libbcachefs/util.h index 76ffe08e..f4dd09c4 100644 --- a/libbcachefs/util.h +++ b/libbcachefs/util.h @@ -697,19 +697,14 @@ do { \ } \ } while (0) -#define per_cpu_sum(_p) \ -({ \ - typeof(*_p) _ret = 0; \ - \ - int cpu; \ - for_each_possible_cpu(cpu) \ - _ret += *per_cpu_ptr(_p, cpu); \ - _ret; \ -}) - static inline u64 percpu_u64_get(u64 __percpu *src) { - return per_cpu_sum(src); + u64 ret = 0; + int cpu; + + for_each_possible_cpu(cpu) + ret += *per_cpu_ptr(src, cpu); + return ret; } static inline void percpu_u64_set(u64 __percpu *dst, u64 src) |