blob: b421d1b22b628719491c6709e8545f6a73a94ed9 [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),
Mel Gorman24cf725182009-06-16 15:33:23 -070039#ifdef CONFIG_NUMA
40 PGSCAN_ZONE_RECLAIM_FAILED,
41#endif
Christoph Lameterf8891e52006-06-30 01:55:45 -070042 PGINODESTEAL, SLABS_SCANNED, KSWAPD_STEAL, KSWAPD_INODESTEAL,
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -080043 KSWAPD_LOW_WMARK_HIT_QUICKLY, KSWAPD_HIGH_WMARK_HIT_QUICKLY,
44 KSWAPD_SKIP_CONGESTION_WAIT,
Christoph Lameterf8891e52006-06-30 01:55:45 -070045 PAGEOUTRUN, ALLOCSTALL, PGROTATED,
Mel Gorman748446b2010-05-24 14:32:27 -070046#ifdef CONFIG_COMPACTION
47 COMPACTBLOCKS, COMPACTPAGES, COMPACTPAGEFAILED,
48#endif
Adam Litke3b116302008-04-28 02:13:06 -070049#ifdef CONFIG_HUGETLB_PAGE
50 HTLB_BUDDY_PGALLOC, HTLB_BUDDY_PGALLOC_FAIL,
51#endif
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -070052 UNEVICTABLE_PGCULLED, /* culled to noreclaim list */
53 UNEVICTABLE_PGSCANNED, /* scanned for reclaimability */
54 UNEVICTABLE_PGRESCUED, /* rescued from noreclaim list */
Nick Piggin5344b7e2008-10-18 20:26:51 -070055 UNEVICTABLE_PGMLOCKED,
56 UNEVICTABLE_PGMUNLOCKED,
57 UNEVICTABLE_PGCLEARED, /* on COW, page truncate */
58 UNEVICTABLE_PGSTRANDED, /* unable to isolate on unlock */
Lee Schermerhorn985737c2008-10-18 20:26:53 -070059 UNEVICTABLE_MLOCKFREED,
Christoph Lameterf8891e52006-06-30 01:55:45 -070060 NR_VM_EVENT_ITEMS
Christoph Lameterf6ac2352006-06-30 01:55:32 -070061};
62
Adrian Bunkc748e132008-07-23 21:27:03 -070063extern int sysctl_stat_interval;
64
Andrew Morton780a0652007-02-10 01:44:41 -080065#ifdef CONFIG_VM_EVENT_COUNTERS
66/*
67 * Light weight per cpu counter implementation.
68 *
69 * Counters should only be incremented and no critical kernel component
70 * should rely on the counter values.
71 *
72 * Counters are handled completely inline. On many platforms the code
73 * generated will simply be the increment of a global address.
74 */
75
Christoph Lameterf8891e52006-06-30 01:55:45 -070076struct vm_event_state {
77 unsigned long event[NR_VM_EVENT_ITEMS];
78};
Christoph Lameterf6ac2352006-06-30 01:55:32 -070079
Christoph Lameterf8891e52006-06-30 01:55:45 -070080DECLARE_PER_CPU(struct vm_event_state, vm_event_states);
Christoph Lameterf6ac2352006-06-30 01:55:32 -070081
Christoph Lameterf8891e52006-06-30 01:55:45 -070082static inline void __count_vm_event(enum vm_event_item item)
83{
Rusty Russelldd17c8f2009-10-29 22:34:15 +090084 __this_cpu_inc(vm_event_states.event[item]);
Christoph Lameterf8891e52006-06-30 01:55:45 -070085}
Christoph Lameterf6ac2352006-06-30 01:55:32 -070086
Christoph Lameterf8891e52006-06-30 01:55:45 -070087static inline void count_vm_event(enum vm_event_item item)
88{
Rusty Russelldd17c8f2009-10-29 22:34:15 +090089 this_cpu_inc(vm_event_states.event[item]);
Christoph Lameterf8891e52006-06-30 01:55:45 -070090}
Christoph Lameterf6ac2352006-06-30 01:55:32 -070091
Christoph Lameterf8891e52006-06-30 01:55:45 -070092static inline void __count_vm_events(enum vm_event_item item, long delta)
93{
Rusty Russelldd17c8f2009-10-29 22:34:15 +090094 __this_cpu_add(vm_event_states.event[item], delta);
Christoph Lameterf8891e52006-06-30 01:55:45 -070095}
Christoph Lameterf6ac2352006-06-30 01:55:32 -070096
Christoph Lameterf8891e52006-06-30 01:55:45 -070097static inline void count_vm_events(enum vm_event_item item, long delta)
98{
Rusty Russelldd17c8f2009-10-29 22:34:15 +090099 this_cpu_add(vm_event_states.event[item], delta);
Christoph Lameterf8891e52006-06-30 01:55:45 -0700100}
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700101
Christoph Lameterf8891e52006-06-30 01:55:45 -0700102extern void all_vm_events(unsigned long *);
Magnus Damme9033872006-12-22 01:08:01 -0800103#ifdef CONFIG_HOTPLUG
Christoph Lameterf8891e52006-06-30 01:55:45 -0700104extern void vm_events_fold_cpu(int cpu);
Magnus Damme9033872006-12-22 01:08:01 -0800105#else
106static inline void vm_events_fold_cpu(int cpu)
107{
108}
109#endif
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700110
Christoph Lameterf8891e52006-06-30 01:55:45 -0700111#else
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700112
Christoph Lameterf8891e52006-06-30 01:55:45 -0700113/* Disable counters */
Andrew Morton780a0652007-02-10 01:44:41 -0800114static inline void count_vm_event(enum vm_event_item item)
115{
116}
117static inline void count_vm_events(enum vm_event_item item, long delta)
118{
119}
120static inline void __count_vm_event(enum vm_event_item item)
121{
122}
123static inline void __count_vm_events(enum vm_event_item item, long delta)
124{
125}
126static inline void all_vm_events(unsigned long *ret)
127{
128}
129static inline void vm_events_fold_cpu(int cpu)
130{
131}
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700132
Christoph Lameterf8891e52006-06-30 01:55:45 -0700133#endif /* CONFIG_VM_EVENT_COUNTERS */
134
135#define __count_zone_vm_events(item, zone, delta) \
Christoph Lameter4b51d662007-02-10 01:43:10 -0800136 __count_vm_events(item##_NORMAL - ZONE_NORMAL + \
137 zone_idx(zone), delta)
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700138
Christoph Lameter2244b952006-06-30 01:55:33 -0700139/*
140 * Zone based page accounting with per cpu differentials.
141 */
142extern atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS];
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700143
Christoph Lameter2244b952006-06-30 01:55:33 -0700144static inline void zone_page_state_add(long x, struct zone *zone,
145 enum zone_stat_item item)
146{
147 atomic_long_add(x, &zone->vm_stat[item]);
148 atomic_long_add(x, &vm_stat[item]);
149}
150
151static inline unsigned long global_page_state(enum zone_stat_item item)
152{
153 long x = atomic_long_read(&vm_stat[item]);
154#ifdef CONFIG_SMP
155 if (x < 0)
156 x = 0;
157#endif
158 return x;
159}
160
161static inline unsigned long zone_page_state(struct zone *zone,
162 enum zone_stat_item item)
163{
164 long x = atomic_long_read(&zone->vm_stat[item]);
165#ifdef CONFIG_SMP
166 if (x < 0)
167 x = 0;
168#endif
169 return x;
170}
171
Wu Fengguangadea02a2009-09-21 17:01:42 -0700172extern unsigned long global_reclaimable_pages(void);
173extern unsigned long zone_reclaimable_pages(struct zone *zone);
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700174
Christoph Lameter2244b952006-06-30 01:55:33 -0700175#ifdef CONFIG_NUMA
176/*
177 * Determine the per node value of a stat item. This function
178 * is called frequently in a NUMA machine, so try to be as
179 * frugal as possible.
180 */
181static inline unsigned long node_page_state(int node,
182 enum zone_stat_item item)
183{
184 struct zone *zones = NODE_DATA(node)->node_zones;
185
186 return
Christoph Lameter4b51d662007-02-10 01:43:10 -0800187#ifdef CONFIG_ZONE_DMA
188 zone_page_state(&zones[ZONE_DMA], item) +
189#endif
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700190#ifdef CONFIG_ZONE_DMA32
Christoph Lameter2244b952006-06-30 01:55:33 -0700191 zone_page_state(&zones[ZONE_DMA32], item) +
192#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700193#ifdef CONFIG_HIGHMEM
194 zone_page_state(&zones[ZONE_HIGHMEM], item) +
195#endif
Mel Gorman2a1e2742007-07-17 04:03:12 -0700196 zone_page_state(&zones[ZONE_NORMAL], item) +
197 zone_page_state(&zones[ZONE_MOVABLE], item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700198}
Christoph Lameterca889e62006-06-30 01:55:44 -0700199
Mel Gorman18ea7e72008-04-28 02:12:14 -0700200extern void zone_statistics(struct zone *, struct zone *);
Christoph Lameterca889e62006-06-30 01:55:44 -0700201
Christoph Lameter2244b952006-06-30 01:55:33 -0700202#else
Christoph Lameterca889e62006-06-30 01:55:44 -0700203
Christoph Lameter2244b952006-06-30 01:55:33 -0700204#define node_page_state(node, item) global_page_state(item)
Christoph Lameterca889e62006-06-30 01:55:44 -0700205#define zone_statistics(_zl,_z) do { } while (0)
206
207#endif /* CONFIG_NUMA */
Christoph Lameter2244b952006-06-30 01:55:33 -0700208
Christoph Lameter2244b952006-06-30 01:55:33 -0700209#define add_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, __d)
210#define sub_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, -(__d))
211
212static inline void zap_zone_vm_stats(struct zone *zone)
213{
214 memset(zone->vm_stat, 0, sizeof(zone->vm_stat));
215}
216
Christoph Lameterca889e62006-06-30 01:55:44 -0700217extern void inc_zone_state(struct zone *, enum zone_stat_item);
218
Christoph Lameter2244b952006-06-30 01:55:33 -0700219#ifdef CONFIG_SMP
220void __mod_zone_page_state(struct zone *, enum zone_stat_item item, int);
221void __inc_zone_page_state(struct page *, enum zone_stat_item);
222void __dec_zone_page_state(struct page *, enum zone_stat_item);
223
224void mod_zone_page_state(struct zone *, enum zone_stat_item, int);
225void inc_zone_page_state(struct page *, enum zone_stat_item);
226void dec_zone_page_state(struct page *, enum zone_stat_item);
227
228extern void inc_zone_state(struct zone *, enum zone_stat_item);
Christoph Lameterc8785382007-02-10 01:43:01 -0800229extern void __inc_zone_state(struct zone *, enum zone_stat_item);
230extern void dec_zone_state(struct zone *, enum zone_stat_item);
231extern void __dec_zone_state(struct zone *, enum zone_stat_item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700232
233void refresh_cpu_vm_stats(int);
Christoph Lameter2244b952006-06-30 01:55:33 -0700234#else /* CONFIG_SMP */
235
236/*
237 * We do not maintain differentials in a single processor configuration.
238 * The functions directly modify the zone and global counters.
239 */
240static inline void __mod_zone_page_state(struct zone *zone,
241 enum zone_stat_item item, int delta)
242{
243 zone_page_state_add(delta, zone, item);
244}
245
Christoph Lameter7f4599e2006-07-10 04:44:30 -0700246static inline void __inc_zone_state(struct zone *zone, enum zone_stat_item item)
247{
248 atomic_long_inc(&zone->vm_stat[item]);
249 atomic_long_inc(&vm_stat[item]);
250}
251
Christoph Lameter2244b952006-06-30 01:55:33 -0700252static inline void __inc_zone_page_state(struct page *page,
253 enum zone_stat_item item)
254{
Christoph Lameter7f4599e2006-07-10 04:44:30 -0700255 __inc_zone_state(page_zone(page), item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700256}
257
Christoph Lameterc8785382007-02-10 01:43:01 -0800258static inline void __dec_zone_state(struct zone *zone, enum zone_stat_item item)
259{
260 atomic_long_dec(&zone->vm_stat[item]);
261 atomic_long_dec(&vm_stat[item]);
262}
263
Christoph Lameter2244b952006-06-30 01:55:33 -0700264static inline void __dec_zone_page_state(struct page *page,
265 enum zone_stat_item item)
266{
Uwe Kleine-König57ce36f2008-02-25 16:45:03 +0100267 __dec_zone_state(page_zone(page), item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700268}
269
270/*
271 * We only use atomic operations to update counters. So there is no need to
272 * disable interrupts.
273 */
274#define inc_zone_page_state __inc_zone_page_state
275#define dec_zone_page_state __dec_zone_page_state
276#define mod_zone_page_state __mod_zone_page_state
277
278static inline void refresh_cpu_vm_stats(int cpu) { }
Christoph Lameter2244b952006-06-30 01:55:33 -0700279#endif
280
281#endif /* _LINUX_VMSTAT_H */