blob: 99de7a31bab8c25673f3870959f016f5fa69a324 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#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 Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/spinlock.h>
10#include <linux/smp.h>
Andrew Mortonc67ad912007-07-15 23:39:51 -070011#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/threads.h>
13#include <linux/percpu.h>
Mingming Cao0216bfc2006-06-23 02:05:41 -070014#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#ifdef CONFIG_SMP
17
18struct percpu_counter {
19 spinlock_t lock;
Mingming Cao0216bfc2006-06-23 02:05:41 -070020 s64 count;
Andrew Mortonc67ad912007-07-15 23:39:51 -070021#ifdef CONFIG_HOTPLUG_CPU
22 struct list_head list; /* All percpu_counters are on a list */
23#endif
Mingming Cao0216bfc2006-06-23 02:05:41 -070024 s32 *counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025};
26
Eric Dumazet179f7eb2009-01-06 14:41:04 -080027extern int percpu_counter_batch;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Peter Zijlstra833f4072007-10-16 23:25:45 -070029int percpu_counter_init(struct percpu_counter *fbc, s64 amount);
Peter Zijlstradc62a302007-10-16 23:25:46 -070030int percpu_counter_init_irq(struct percpu_counter *fbc, s64 amount);
Andrew Mortonc67ad912007-07-15 23:39:51 -070031void percpu_counter_destroy(struct percpu_counter *fbc);
Peter Zijlstra3a587f42007-10-16 23:25:44 -070032void percpu_counter_set(struct percpu_counter *fbc, s64 amount);
Peter Zijlstra20e89762007-10-16 23:25:43 -070033void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch);
Andrew Morton02d21162008-12-09 13:14:14 -080034s64 __percpu_counter_sum(struct percpu_counter *fbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Peter Zijlstra20e89762007-10-16 23:25:43 -070036static inline void percpu_counter_add(struct percpu_counter *fbc, s64 amount)
Peter Zijlstra252e0ba2007-10-16 23:25:43 -070037{
Eric Dumazet179f7eb2009-01-06 14:41:04 -080038 __percpu_counter_add(fbc, amount, percpu_counter_batch);
Peter Zijlstra252e0ba2007-10-16 23:25:43 -070039}
40
Peter Zijlstrabf1d89c2007-10-16 23:25:45 -070041static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc)
42{
Andrew Morton02d21162008-12-09 13:14:14 -080043 s64 ret = __percpu_counter_sum(fbc);
Peter Zijlstrabf1d89c2007-10-16 23:25:45 -070044 return ret < 0 ? 0 : ret;
45}
46
47static inline s64 percpu_counter_sum(struct percpu_counter *fbc)
48{
Andrew Morton02d21162008-12-09 13:14:14 -080049 return __percpu_counter_sum(fbc);
Peter Zijlstrabf1d89c2007-10-16 23:25:45 -070050}
51
Mingming Cao0216bfc2006-06-23 02:05:41 -070052static inline s64 percpu_counter_read(struct percpu_counter *fbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
54 return fbc->count;
55}
56
57/*
58 * It is possible for the percpu_counter_read() to return a small negative
59 * number for some counter which should never be negative.
Mingming Cao0216bfc2006-06-23 02:05:41 -070060 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 */
Mingming Cao0216bfc2006-06-23 02:05:41 -070062static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Mingming Cao0216bfc2006-06-23 02:05:41 -070064 s64 ret = fbc->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 barrier(); /* Prevent reloads of fbc->count */
Mingming Cao0216bfc2006-06-23 02:05:41 -070067 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return ret;
69 return 1;
70}
71
72#else
73
74struct percpu_counter {
Mingming Cao0216bfc2006-06-23 02:05:41 -070075 s64 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
Peter Zijlstra833f4072007-10-16 23:25:45 -070078static inline int percpu_counter_init(struct percpu_counter *fbc, s64 amount)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Mingming Cao0216bfc2006-06-23 02:05:41 -070080 fbc->count = amount;
Peter Zijlstra833f4072007-10-16 23:25:45 -070081 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Peter Zijlstradc62a302007-10-16 23:25:46 -070084#define percpu_counter_init_irq percpu_counter_init
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static inline void percpu_counter_destroy(struct percpu_counter *fbc)
87{
88}
89
Peter Zijlstra3a587f42007-10-16 23:25:44 -070090static inline void percpu_counter_set(struct percpu_counter *fbc, s64 amount)
91{
92 fbc->count = amount;
93}
94
Peter Zijlstra252e0ba2007-10-16 23:25:43 -070095#define __percpu_counter_add(fbc, amount, batch) \
96 percpu_counter_add(fbc, amount)
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static inline void
Peter Zijlstra20e89762007-10-16 23:25:43 -070099percpu_counter_add(struct percpu_counter *fbc, s64 amount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 preempt_disable();
102 fbc->count += amount;
103 preempt_enable();
104}
105
Mingming Cao0216bfc2006-06-23 02:05:41 -0700106static inline s64 percpu_counter_read(struct percpu_counter *fbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 return fbc->count;
109}
110
Mingming Cao0216bfc2006-06-23 02:05:41 -0700111static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 return fbc->count;
114}
115
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -0700116static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc)
Andrew Mortone2bab3d2006-03-07 21:55:31 -0800117{
118 return percpu_counter_read_positive(fbc);
119}
120
Peter Zijlstrabf1d89c2007-10-16 23:25:45 -0700121static inline s64 percpu_counter_sum(struct percpu_counter *fbc)
122{
123 return percpu_counter_read(fbc);
124}
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#endif /* CONFIG_SMP */
127
128static inline void percpu_counter_inc(struct percpu_counter *fbc)
129{
Peter Zijlstraaa0dff22007-10-16 23:25:42 -0700130 percpu_counter_add(fbc, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
133static inline void percpu_counter_dec(struct percpu_counter *fbc)
134{
Peter Zijlstraaa0dff22007-10-16 23:25:42 -0700135 percpu_counter_add(fbc, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Peter Zijlstra3cb4f9f2007-10-16 23:25:42 -0700138static inline void percpu_counter_sub(struct percpu_counter *fbc, s64 amount)
139{
140 percpu_counter_add(fbc, -amount);
141}
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#endif /* _LINUX_PERCPU_COUNTER_H */