Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_PERCPU_COUNTER_H |
| 2 | #define _LINUX_PERCPU_COUNTER_H |
| 3 | /* |
| 4 | * A simple "approximate counter" for use in ext2 and ext3 superblocks. |
| 5 | * |
| 6 | * WARNING: these things are HUGE. 4 kbytes per counter on 32-way P4. |
| 7 | */ |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/spinlock.h> |
| 10 | #include <linux/smp.h> |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 11 | #include <linux/list.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/threads.h> |
| 13 | #include <linux/percpu.h> |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 14 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
| 16 | #ifdef CONFIG_SMP |
| 17 | |
| 18 | struct percpu_counter { |
| 19 | spinlock_t lock; |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 20 | s64 count; |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 21 | #ifdef CONFIG_HOTPLUG_CPU |
| 22 | struct list_head list; /* All percpu_counters are on a list */ |
| 23 | #endif |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 24 | s32 *counters; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | }; |
| 26 | |
| 27 | #if NR_CPUS >= 16 |
| 28 | #define FBC_BATCH (NR_CPUS*2) |
| 29 | #else |
| 30 | #define FBC_BATCH (NR_CPUS*4) |
| 31 | #endif |
| 32 | |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 33 | void percpu_counter_init(struct percpu_counter *fbc, s64 amount); |
| 34 | void percpu_counter_destroy(struct percpu_counter *fbc); |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 35 | void percpu_counter_mod(struct percpu_counter *fbc, s32 amount); |
| 36 | s64 percpu_counter_sum(struct percpu_counter *fbc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 38 | static inline s64 percpu_counter_read(struct percpu_counter *fbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | { |
| 40 | return fbc->count; |
| 41 | } |
| 42 | |
| 43 | /* |
| 44 | * It is possible for the percpu_counter_read() to return a small negative |
| 45 | * number for some counter which should never be negative. |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 46 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | */ |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 48 | static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | { |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 50 | s64 ret = fbc->count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | barrier(); /* Prevent reloads of fbc->count */ |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 53 | if (ret >= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | return ret; |
| 55 | return 1; |
| 56 | } |
| 57 | |
| 58 | #else |
| 59 | |
| 60 | struct percpu_counter { |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 61 | s64 count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | }; |
| 63 | |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 64 | static inline void percpu_counter_init(struct percpu_counter *fbc, s64 amount) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | { |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 66 | fbc->count = amount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | static inline void percpu_counter_destroy(struct percpu_counter *fbc) |
| 70 | { |
| 71 | } |
| 72 | |
| 73 | static inline void |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 74 | percpu_counter_mod(struct percpu_counter *fbc, s32 amount) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | { |
| 76 | preempt_disable(); |
| 77 | fbc->count += amount; |
| 78 | preempt_enable(); |
| 79 | } |
| 80 | |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 81 | static inline s64 percpu_counter_read(struct percpu_counter *fbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { |
| 83 | return fbc->count; |
| 84 | } |
| 85 | |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 86 | static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
| 88 | return fbc->count; |
| 89 | } |
| 90 | |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 91 | static inline s64 percpu_counter_sum(struct percpu_counter *fbc) |
Andrew Morton | e2bab3d | 2006-03-07 21:55:31 -0800 | [diff] [blame] | 92 | { |
| 93 | return percpu_counter_read_positive(fbc); |
| 94 | } |
| 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | #endif /* CONFIG_SMP */ |
| 97 | |
| 98 | static inline void percpu_counter_inc(struct percpu_counter *fbc) |
| 99 | { |
| 100 | percpu_counter_mod(fbc, 1); |
| 101 | } |
| 102 | |
| 103 | static inline void percpu_counter_dec(struct percpu_counter *fbc) |
| 104 | { |
| 105 | percpu_counter_mod(fbc, -1); |
| 106 | } |
| 107 | |
| 108 | #endif /* _LINUX_PERCPU_COUNTER_H */ |