blob: e83b69346d2342fd2927278d40f98c4fb1afdff3 [file] [log] [blame]
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001#ifndef _LINUX_VMSTAT_H
2#define _LINUX_VMSTAT_H
3
4#include <linux/types.h>
5#include <linux/percpu.h>
Christoph Lameter96177292007-02-10 01:43:03 -08006#include <linux/mm.h>
Christoph Lameter2244b952006-06-30 01:55:33 -07007#include <linux/mmzone.h>
8#include <asm/atomic.h>
Christoph Lameterf6ac2352006-06-30 01:55:32 -07009
Christoph Lameter4b51d662007-02-10 01:43:10 -080010#ifdef CONFIG_ZONE_DMA
11#define DMA_ZONE(xx) xx##_DMA,
12#else
13#define DMA_ZONE(xx)
14#endif
15
Christoph Lameter27bf71c2006-09-25 23:31:15 -070016#ifdef CONFIG_ZONE_DMA32
17#define DMA32_ZONE(xx) xx##_DMA32,
18#else
19#define DMA32_ZONE(xx)
20#endif
21
22#ifdef CONFIG_HIGHMEM
23#define HIGHMEM_ZONE(xx) , xx##_HIGH
24#else
25#define HIGHMEM_ZONE(xx)
26#endif
27
Adam Litke3b116302008-04-28 02:13:06 -070028
Mel Gorman2a1e2742007-07-17 04:03:12 -070029#define FOR_ALL_ZONES(xx) DMA_ZONE(xx) DMA32_ZONE(xx) xx##_NORMAL HIGHMEM_ZONE(xx) , xx##_MOVABLE
Christoph Lameterf6ac2352006-06-30 01:55:32 -070030
Christoph Lameterf8891e52006-06-30 01:55:45 -070031enum vm_event_item { PGPGIN, PGPGOUT, PSWPIN, PSWPOUT,
32 FOR_ALL_ZONES(PGALLOC),
33 PGFREE, PGACTIVATE, PGDEACTIVATE,
34 PGFAULT, PGMAJFAULT,
35 FOR_ALL_ZONES(PGREFILL),
36 FOR_ALL_ZONES(PGSTEAL),
37 FOR_ALL_ZONES(PGSCAN_KSWAPD),
38 FOR_ALL_ZONES(PGSCAN_DIRECT),
39 PGINODESTEAL, SLABS_SCANNED, KSWAPD_STEAL, KSWAPD_INODESTEAL,
40 PAGEOUTRUN, ALLOCSTALL, PGROTATED,
Adam Litke3b116302008-04-28 02:13:06 -070041#ifdef CONFIG_HUGETLB_PAGE
42 HTLB_BUDDY_PGALLOC, HTLB_BUDDY_PGALLOC_FAIL,
43#endif
Christoph Lameterf8891e52006-06-30 01:55:45 -070044 NR_VM_EVENT_ITEMS
Christoph Lameterf6ac2352006-06-30 01:55:32 -070045};
46
Andrew Morton780a0652007-02-10 01:44:41 -080047#ifdef CONFIG_VM_EVENT_COUNTERS
48/*
49 * Light weight per cpu counter implementation.
50 *
51 * Counters should only be incremented and no critical kernel component
52 * should rely on the counter values.
53 *
54 * Counters are handled completely inline. On many platforms the code
55 * generated will simply be the increment of a global address.
56 */
57
Christoph Lameterf8891e52006-06-30 01:55:45 -070058struct vm_event_state {
59 unsigned long event[NR_VM_EVENT_ITEMS];
60};
Christoph Lameterf6ac2352006-06-30 01:55:32 -070061
Christoph Lameterf8891e52006-06-30 01:55:45 -070062DECLARE_PER_CPU(struct vm_event_state, vm_event_states);
Christoph Lameterf6ac2352006-06-30 01:55:32 -070063
Christoph Lameterf8891e52006-06-30 01:55:45 -070064static inline void __count_vm_event(enum vm_event_item item)
65{
Jan Blunck38cbcdc2006-08-05 12:14:14 -070066 __get_cpu_var(vm_event_states).event[item]++;
Christoph Lameterf8891e52006-06-30 01:55:45 -070067}
Christoph Lameterf6ac2352006-06-30 01:55:32 -070068
Christoph Lameterf8891e52006-06-30 01:55:45 -070069static inline void count_vm_event(enum vm_event_item item)
70{
Jan Blunck38cbcdc2006-08-05 12:14:14 -070071 get_cpu_var(vm_event_states).event[item]++;
Christoph Lameterf8891e52006-06-30 01:55:45 -070072 put_cpu();
73}
Christoph Lameterf6ac2352006-06-30 01:55:32 -070074
Christoph Lameterf8891e52006-06-30 01:55:45 -070075static inline void __count_vm_events(enum vm_event_item item, long delta)
76{
Jan Blunck38cbcdc2006-08-05 12:14:14 -070077 __get_cpu_var(vm_event_states).event[item] += delta;
Christoph Lameterf8891e52006-06-30 01:55:45 -070078}
Christoph Lameterf6ac2352006-06-30 01:55:32 -070079
Christoph Lameterf8891e52006-06-30 01:55:45 -070080static inline void count_vm_events(enum vm_event_item item, long delta)
81{
Jan Blunck38cbcdc2006-08-05 12:14:14 -070082 get_cpu_var(vm_event_states).event[item] += delta;
Christoph Lameterf8891e52006-06-30 01:55:45 -070083 put_cpu();
84}
Christoph Lameterf6ac2352006-06-30 01:55:32 -070085
Christoph Lameterf8891e52006-06-30 01:55:45 -070086extern void all_vm_events(unsigned long *);
Magnus Damme9033872006-12-22 01:08:01 -080087#ifdef CONFIG_HOTPLUG
Christoph Lameterf8891e52006-06-30 01:55:45 -070088extern void vm_events_fold_cpu(int cpu);
Magnus Damme9033872006-12-22 01:08:01 -080089#else
90static inline void vm_events_fold_cpu(int cpu)
91{
92}
93#endif
Christoph Lameterf6ac2352006-06-30 01:55:32 -070094
Christoph Lameterf8891e52006-06-30 01:55:45 -070095#else
Christoph Lameterf6ac2352006-06-30 01:55:32 -070096
Christoph Lameterf8891e52006-06-30 01:55:45 -070097/* Disable counters */
Andrew Morton780a0652007-02-10 01:44:41 -080098static inline void count_vm_event(enum vm_event_item item)
99{
100}
101static inline void count_vm_events(enum vm_event_item item, long delta)
102{
103}
104static inline void __count_vm_event(enum vm_event_item item)
105{
106}
107static inline void __count_vm_events(enum vm_event_item item, long delta)
108{
109}
110static inline void all_vm_events(unsigned long *ret)
111{
112}
113static inline void vm_events_fold_cpu(int cpu)
114{
115}
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700116
Christoph Lameterf8891e52006-06-30 01:55:45 -0700117#endif /* CONFIG_VM_EVENT_COUNTERS */
118
119#define __count_zone_vm_events(item, zone, delta) \
Christoph Lameter4b51d662007-02-10 01:43:10 -0800120 __count_vm_events(item##_NORMAL - ZONE_NORMAL + \
121 zone_idx(zone), delta)
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700122
Christoph Lameter2244b952006-06-30 01:55:33 -0700123/*
124 * Zone based page accounting with per cpu differentials.
125 */
126extern atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS];
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700127
Christoph Lameter2244b952006-06-30 01:55:33 -0700128static inline void zone_page_state_add(long x, struct zone *zone,
129 enum zone_stat_item item)
130{
131 atomic_long_add(x, &zone->vm_stat[item]);
132 atomic_long_add(x, &vm_stat[item]);
133}
134
135static inline unsigned long global_page_state(enum zone_stat_item item)
136{
137 long x = atomic_long_read(&vm_stat[item]);
138#ifdef CONFIG_SMP
139 if (x < 0)
140 x = 0;
141#endif
142 return x;
143}
144
145static inline unsigned long zone_page_state(struct zone *zone,
146 enum zone_stat_item item)
147{
148 long x = atomic_long_read(&zone->vm_stat[item]);
149#ifdef CONFIG_SMP
150 if (x < 0)
151 x = 0;
152#endif
153 return x;
154}
155
156#ifdef CONFIG_NUMA
157/*
158 * Determine the per node value of a stat item. This function
159 * is called frequently in a NUMA machine, so try to be as
160 * frugal as possible.
161 */
162static inline unsigned long node_page_state(int node,
163 enum zone_stat_item item)
164{
165 struct zone *zones = NODE_DATA(node)->node_zones;
166
167 return
Christoph Lameter4b51d662007-02-10 01:43:10 -0800168#ifdef CONFIG_ZONE_DMA
169 zone_page_state(&zones[ZONE_DMA], item) +
170#endif
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700171#ifdef CONFIG_ZONE_DMA32
Christoph Lameter2244b952006-06-30 01:55:33 -0700172 zone_page_state(&zones[ZONE_DMA32], item) +
173#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700174#ifdef CONFIG_HIGHMEM
175 zone_page_state(&zones[ZONE_HIGHMEM], item) +
176#endif
Mel Gorman2a1e2742007-07-17 04:03:12 -0700177 zone_page_state(&zones[ZONE_NORMAL], item) +
178 zone_page_state(&zones[ZONE_MOVABLE], item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700179}
Christoph Lameterca889e62006-06-30 01:55:44 -0700180
Mel Gorman18ea7e72008-04-28 02:12:14 -0700181extern void zone_statistics(struct zone *, struct zone *);
Christoph Lameterca889e62006-06-30 01:55:44 -0700182
Christoph Lameter2244b952006-06-30 01:55:33 -0700183#else
Christoph Lameterca889e62006-06-30 01:55:44 -0700184
Christoph Lameter2244b952006-06-30 01:55:33 -0700185#define node_page_state(node, item) global_page_state(item)
Christoph Lameterca889e62006-06-30 01:55:44 -0700186#define zone_statistics(_zl,_z) do { } while (0)
187
188#endif /* CONFIG_NUMA */
Christoph Lameter2244b952006-06-30 01:55:33 -0700189
190#define __add_zone_page_state(__z, __i, __d) \
191 __mod_zone_page_state(__z, __i, __d)
192#define __sub_zone_page_state(__z, __i, __d) \
193 __mod_zone_page_state(__z, __i,-(__d))
194
195#define add_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, __d)
196#define sub_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, -(__d))
197
198static inline void zap_zone_vm_stats(struct zone *zone)
199{
200 memset(zone->vm_stat, 0, sizeof(zone->vm_stat));
201}
202
Christoph Lameterca889e62006-06-30 01:55:44 -0700203extern void inc_zone_state(struct zone *, enum zone_stat_item);
204
Christoph Lameter2244b952006-06-30 01:55:33 -0700205#ifdef CONFIG_SMP
206void __mod_zone_page_state(struct zone *, enum zone_stat_item item, int);
207void __inc_zone_page_state(struct page *, enum zone_stat_item);
208void __dec_zone_page_state(struct page *, enum zone_stat_item);
209
210void mod_zone_page_state(struct zone *, enum zone_stat_item, int);
211void inc_zone_page_state(struct page *, enum zone_stat_item);
212void dec_zone_page_state(struct page *, enum zone_stat_item);
213
214extern void inc_zone_state(struct zone *, enum zone_stat_item);
Christoph Lameterc8785382007-02-10 01:43:01 -0800215extern void __inc_zone_state(struct zone *, enum zone_stat_item);
216extern void dec_zone_state(struct zone *, enum zone_stat_item);
217extern void __dec_zone_state(struct zone *, enum zone_stat_item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700218
219void refresh_cpu_vm_stats(int);
Christoph Lameter2244b952006-06-30 01:55:33 -0700220#else /* CONFIG_SMP */
221
222/*
223 * We do not maintain differentials in a single processor configuration.
224 * The functions directly modify the zone and global counters.
225 */
226static inline void __mod_zone_page_state(struct zone *zone,
227 enum zone_stat_item item, int delta)
228{
229 zone_page_state_add(delta, zone, item);
230}
231
Christoph Lameter7f4599e2006-07-10 04:44:30 -0700232static inline void __inc_zone_state(struct zone *zone, enum zone_stat_item item)
233{
234 atomic_long_inc(&zone->vm_stat[item]);
235 atomic_long_inc(&vm_stat[item]);
236}
237
Christoph Lameter2244b952006-06-30 01:55:33 -0700238static inline void __inc_zone_page_state(struct page *page,
239 enum zone_stat_item item)
240{
Christoph Lameter7f4599e2006-07-10 04:44:30 -0700241 __inc_zone_state(page_zone(page), item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700242}
243
Christoph Lameterc8785382007-02-10 01:43:01 -0800244static inline void __dec_zone_state(struct zone *zone, enum zone_stat_item item)
245{
246 atomic_long_dec(&zone->vm_stat[item]);
247 atomic_long_dec(&vm_stat[item]);
248}
249
Christoph Lameter2244b952006-06-30 01:55:33 -0700250static inline void __dec_zone_page_state(struct page *page,
251 enum zone_stat_item item)
252{
Uwe Kleine-König57ce36f2008-02-25 16:45:03 +0100253 __dec_zone_state(page_zone(page), item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700254}
255
256/*
257 * We only use atomic operations to update counters. So there is no need to
258 * disable interrupts.
259 */
260#define inc_zone_page_state __inc_zone_page_state
261#define dec_zone_page_state __dec_zone_page_state
262#define mod_zone_page_state __mod_zone_page_state
263
264static inline void refresh_cpu_vm_stats(int cpu) { }
Christoph Lameter2244b952006-06-30 01:55:33 -0700265#endif
266
267#endif /* _LINUX_VMSTAT_H */