blob: f7ecd38d7e9c074f3065838c452eb6015ee7619e [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
27#if NR_CPUS >= 16
28#define FBC_BATCH (NR_CPUS*2)
29#else
30#define FBC_BATCH (NR_CPUS*4)
31#endif
32
Peter Zijlstra833f4072007-10-16 23:25:45 -070033int percpu_counter_init(struct percpu_counter *fbc, s64 amount);
Andrew Mortonc67ad912007-07-15 23:39:51 -070034void percpu_counter_destroy(struct percpu_counter *fbc);
Peter Zijlstra3a587f42007-10-16 23:25:44 -070035void percpu_counter_set(struct percpu_counter *fbc, s64 amount);
Peter Zijlstra20e89762007-10-16 23:25:43 -070036void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch);
Peter Zijlstrabf1d89c2007-10-16 23:25:45 -070037s64 __percpu_counter_sum(struct percpu_counter *fbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Peter Zijlstra20e89762007-10-16 23:25:43 -070039static inline void percpu_counter_add(struct percpu_counter *fbc, s64 amount)
Peter Zijlstra252e0ba2007-10-16 23:25:43 -070040{
41 __percpu_counter_add(fbc, amount, FBC_BATCH);
42}
43
Peter Zijlstrabf1d89c2007-10-16 23:25:45 -070044static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc)
45{
46 s64 ret = __percpu_counter_sum(fbc);
47 return ret < 0 ? 0 : ret;
48}
49
50static inline s64 percpu_counter_sum(struct percpu_counter *fbc)
51{
52 return __percpu_counter_sum(fbc);
53}
54
Mingming Cao0216bfc2006-06-23 02:05:41 -070055static inline s64 percpu_counter_read(struct percpu_counter *fbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 return fbc->count;
58}
59
60/*
61 * It is possible for the percpu_counter_read() to return a small negative
62 * number for some counter which should never be negative.
Mingming Cao0216bfc2006-06-23 02:05:41 -070063 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 */
Mingming Cao0216bfc2006-06-23 02:05:41 -070065static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Mingming Cao0216bfc2006-06-23 02:05:41 -070067 s64 ret = fbc->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 barrier(); /* Prevent reloads of fbc->count */
Mingming Cao0216bfc2006-06-23 02:05:41 -070070 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return ret;
72 return 1;
73}
74
75#else
76
77struct percpu_counter {
Mingming Cao0216bfc2006-06-23 02:05:41 -070078 s64 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
80
Peter Zijlstra833f4072007-10-16 23:25:45 -070081static inline int percpu_counter_init(struct percpu_counter *fbc, s64 amount)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Mingming Cao0216bfc2006-06-23 02:05:41 -070083 fbc->count = amount;
Peter Zijlstra833f4072007-10-16 23:25:45 -070084 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
87static inline void percpu_counter_destroy(struct percpu_counter *fbc)
88{
89}
90
Peter Zijlstra3a587f42007-10-16 23:25:44 -070091static inline void percpu_counter_set(struct percpu_counter *fbc, s64 amount)
92{
93 fbc->count = amount;
94}
95
Peter Zijlstra252e0ba2007-10-16 23:25:43 -070096#define __percpu_counter_add(fbc, amount, batch) \
97 percpu_counter_add(fbc, amount)
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static inline void
Peter Zijlstra20e89762007-10-16 23:25:43 -0700100percpu_counter_add(struct percpu_counter *fbc, s64 amount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 preempt_disable();
103 fbc->count += amount;
104 preempt_enable();
105}
106
Mingming Cao0216bfc2006-06-23 02:05:41 -0700107static inline s64 percpu_counter_read(struct percpu_counter *fbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 return fbc->count;
110}
111
Mingming Cao0216bfc2006-06-23 02:05:41 -0700112static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 return fbc->count;
115}
116
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -0700117static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc)
Andrew Mortone2bab3d2006-03-07 21:55:31 -0800118{
119 return percpu_counter_read_positive(fbc);
120}
121
Peter Zijlstrabf1d89c2007-10-16 23:25:45 -0700122static inline s64 percpu_counter_sum(struct percpu_counter *fbc)
123{
124 return percpu_counter_read(fbc);
125}
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#endif /* CONFIG_SMP */
128
129static inline void percpu_counter_inc(struct percpu_counter *fbc)
130{
Peter Zijlstraaa0dff22007-10-16 23:25:42 -0700131 percpu_counter_add(fbc, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
134static inline void percpu_counter_dec(struct percpu_counter *fbc)
135{
Peter Zijlstraaa0dff22007-10-16 23:25:42 -0700136 percpu_counter_add(fbc, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Peter Zijlstra3cb4f9f2007-10-16 23:25:42 -0700139static inline void percpu_counter_sub(struct percpu_counter *fbc, s64 amount)
140{
141 percpu_counter_add(fbc, -amount);
142}
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#endif /* _LINUX_PERCPU_COUNTER_H */