]> bbs.cooldavid.org Git - net-next-2.6.git/blob - include/linux/vmstat.h
b421d1b22b628719491c6709e8545f6a73a94ed9
[net-next-2.6.git] / include / linux / vmstat.h
1 #ifndef _LINUX_VMSTAT_H
2 #define _LINUX_VMSTAT_H
3
4 #include <linux/types.h>
5 #include <linux/percpu.h>
6 #include <linux/mm.h>
7 #include <linux/mmzone.h>
8 #include <asm/atomic.h>
9
10 #ifdef CONFIG_ZONE_DMA
11 #define DMA_ZONE(xx) xx##_DMA,
12 #else
13 #define DMA_ZONE(xx)
14 #endif
15
16 #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
28
29 #define FOR_ALL_ZONES(xx) DMA_ZONE(xx) DMA32_ZONE(xx) xx##_NORMAL HIGHMEM_ZONE(xx) , xx##_MOVABLE
30
31 enum 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 #ifdef CONFIG_NUMA
40                 PGSCAN_ZONE_RECLAIM_FAILED,
41 #endif
42                 PGINODESTEAL, SLABS_SCANNED, KSWAPD_STEAL, KSWAPD_INODESTEAL,
43                 KSWAPD_LOW_WMARK_HIT_QUICKLY, KSWAPD_HIGH_WMARK_HIT_QUICKLY,
44                 KSWAPD_SKIP_CONGESTION_WAIT,
45                 PAGEOUTRUN, ALLOCSTALL, PGROTATED,
46 #ifdef CONFIG_COMPACTION
47                 COMPACTBLOCKS, COMPACTPAGES, COMPACTPAGEFAILED,
48 #endif
49 #ifdef CONFIG_HUGETLB_PAGE
50                 HTLB_BUDDY_PGALLOC, HTLB_BUDDY_PGALLOC_FAIL,
51 #endif
52                 UNEVICTABLE_PGCULLED,   /* culled to noreclaim list */
53                 UNEVICTABLE_PGSCANNED,  /* scanned for reclaimability */
54                 UNEVICTABLE_PGRESCUED,  /* rescued from noreclaim list */
55                 UNEVICTABLE_PGMLOCKED,
56                 UNEVICTABLE_PGMUNLOCKED,
57                 UNEVICTABLE_PGCLEARED,  /* on COW, page truncate */
58                 UNEVICTABLE_PGSTRANDED, /* unable to isolate on unlock */
59                 UNEVICTABLE_MLOCKFREED,
60                 NR_VM_EVENT_ITEMS
61 };
62
63 extern int sysctl_stat_interval;
64
65 #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
76 struct vm_event_state {
77         unsigned long event[NR_VM_EVENT_ITEMS];
78 };
79
80 DECLARE_PER_CPU(struct vm_event_state, vm_event_states);
81
82 static inline void __count_vm_event(enum vm_event_item item)
83 {
84         __this_cpu_inc(vm_event_states.event[item]);
85 }
86
87 static inline void count_vm_event(enum vm_event_item item)
88 {
89         this_cpu_inc(vm_event_states.event[item]);
90 }
91
92 static inline void __count_vm_events(enum vm_event_item item, long delta)
93 {
94         __this_cpu_add(vm_event_states.event[item], delta);
95 }
96
97 static inline void count_vm_events(enum vm_event_item item, long delta)
98 {
99         this_cpu_add(vm_event_states.event[item], delta);
100 }
101
102 extern void all_vm_events(unsigned long *);
103 #ifdef CONFIG_HOTPLUG
104 extern void vm_events_fold_cpu(int cpu);
105 #else
106 static inline void vm_events_fold_cpu(int cpu)
107 {
108 }
109 #endif
110
111 #else
112
113 /* Disable counters */
114 static inline void count_vm_event(enum vm_event_item item)
115 {
116 }
117 static inline void count_vm_events(enum vm_event_item item, long delta)
118 {
119 }
120 static inline void __count_vm_event(enum vm_event_item item)
121 {
122 }
123 static inline void __count_vm_events(enum vm_event_item item, long delta)
124 {
125 }
126 static inline void all_vm_events(unsigned long *ret)
127 {
128 }
129 static inline void vm_events_fold_cpu(int cpu)
130 {
131 }
132
133 #endif /* CONFIG_VM_EVENT_COUNTERS */
134
135 #define __count_zone_vm_events(item, zone, delta) \
136                 __count_vm_events(item##_NORMAL - ZONE_NORMAL + \
137                 zone_idx(zone), delta)
138
139 /*
140  * Zone based page accounting with per cpu differentials.
141  */
142 extern atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS];
143
144 static 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
151 static 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
161 static 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
172 extern unsigned long global_reclaimable_pages(void);
173 extern unsigned long zone_reclaimable_pages(struct zone *zone);
174
175 #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  */
181 static 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
187 #ifdef CONFIG_ZONE_DMA
188                 zone_page_state(&zones[ZONE_DMA], item) +
189 #endif
190 #ifdef CONFIG_ZONE_DMA32
191                 zone_page_state(&zones[ZONE_DMA32], item) +
192 #endif
193 #ifdef CONFIG_HIGHMEM
194                 zone_page_state(&zones[ZONE_HIGHMEM], item) +
195 #endif
196                 zone_page_state(&zones[ZONE_NORMAL], item) +
197                 zone_page_state(&zones[ZONE_MOVABLE], item);
198 }
199
200 extern void zone_statistics(struct zone *, struct zone *);
201
202 #else
203
204 #define node_page_state(node, item) global_page_state(item)
205 #define zone_statistics(_zl,_z) do { } while (0)
206
207 #endif /* CONFIG_NUMA */
208
209 #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
212 static inline void zap_zone_vm_stats(struct zone *zone)
213 {
214         memset(zone->vm_stat, 0, sizeof(zone->vm_stat));
215 }
216
217 extern void inc_zone_state(struct zone *, enum zone_stat_item);
218
219 #ifdef CONFIG_SMP
220 void __mod_zone_page_state(struct zone *, enum zone_stat_item item, int);
221 void __inc_zone_page_state(struct page *, enum zone_stat_item);
222 void __dec_zone_page_state(struct page *, enum zone_stat_item);
223
224 void mod_zone_page_state(struct zone *, enum zone_stat_item, int);
225 void inc_zone_page_state(struct page *, enum zone_stat_item);
226 void dec_zone_page_state(struct page *, enum zone_stat_item);
227
228 extern void inc_zone_state(struct zone *, enum zone_stat_item);
229 extern void __inc_zone_state(struct zone *, enum zone_stat_item);
230 extern void dec_zone_state(struct zone *, enum zone_stat_item);
231 extern void __dec_zone_state(struct zone *, enum zone_stat_item);
232
233 void refresh_cpu_vm_stats(int);
234 #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  */
240 static 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
246 static 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
252 static inline void __inc_zone_page_state(struct page *page,
253                         enum zone_stat_item item)
254 {
255         __inc_zone_state(page_zone(page), item);
256 }
257
258 static 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
264 static inline void __dec_zone_page_state(struct page *page,
265                         enum zone_stat_item item)
266 {
267         __dec_zone_state(page_zone(page), item);
268 }
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
278 static inline void refresh_cpu_vm_stats(int cpu) { }
279 #endif
280
281 #endif /* _LINUX_VMSTAT_H */