blob: 23a5899c7461b15fb1b5981159656bcf22647377 [file] [log] [blame]
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001/*
2 * linux/mm/vmstat.c
3 *
4 * Manages VM statistics
5 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
Christoph Lameter2244b952006-06-30 01:55:33 -07006 *
7 * zoned VM statistics
8 * Copyright (C) 2006 Silicon Graphics, Inc.,
9 * Christoph Lameter <christoph@lameter.com>
Christoph Lameterf6ac2352006-06-30 01:55:32 -070010 */
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +040011#include <linux/fs.h>
Christoph Lameterf6ac2352006-06-30 01:55:32 -070012#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040013#include <linux/err.h>
Christoph Lameter2244b952006-06-30 01:55:33 -070014#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Christoph Lameterdf9ecab2006-08-31 21:27:35 -070016#include <linux/cpu.h>
Adrian Bunkc748e132008-07-23 21:27:03 -070017#include <linux/vmstat.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040018#include <linux/sched.h>
Mel Gormanf1a5ab12010-05-24 14:32:26 -070019#include <linux/math64.h>
Christoph Lameterf6ac2352006-06-30 01:55:32 -070020
Christoph Lameterf8891e52006-06-30 01:55:45 -070021#ifdef CONFIG_VM_EVENT_COUNTERS
22DEFINE_PER_CPU(struct vm_event_state, vm_event_states) = {{0}};
23EXPORT_PER_CPU_SYMBOL(vm_event_states);
24
Rusty Russell174596a2009-01-01 10:12:29 +103025static void sum_vm_events(unsigned long *ret, const struct cpumask *cpumask)
Christoph Lameterf8891e52006-06-30 01:55:45 -070026{
Christoph Lameter9eccf2a2008-02-04 22:29:22 -080027 int cpu;
Christoph Lameterf8891e52006-06-30 01:55:45 -070028 int i;
29
30 memset(ret, 0, NR_VM_EVENT_ITEMS * sizeof(unsigned long));
31
Rusty Russellaa85ea52009-03-30 22:05:15 -060032 for_each_cpu(cpu, cpumask) {
Christoph Lameterf8891e52006-06-30 01:55:45 -070033 struct vm_event_state *this = &per_cpu(vm_event_states, cpu);
34
Christoph Lameterf8891e52006-06-30 01:55:45 -070035 for (i = 0; i < NR_VM_EVENT_ITEMS; i++)
36 ret[i] += this->event[i];
37 }
38}
39
40/*
41 * Accumulate the vm event counters across all CPUs.
42 * The result is unavoidably approximate - it can change
43 * during and after execution of this function.
44*/
45void all_vm_events(unsigned long *ret)
46{
KOSAKI Motohirob5be1132008-05-12 14:02:06 -070047 get_online_cpus();
Rusty Russell174596a2009-01-01 10:12:29 +103048 sum_vm_events(ret, cpu_online_mask);
KOSAKI Motohirob5be1132008-05-12 14:02:06 -070049 put_online_cpus();
Christoph Lameterf8891e52006-06-30 01:55:45 -070050}
Heiko Carstens32dd66f2006-07-10 04:44:31 -070051EXPORT_SYMBOL_GPL(all_vm_events);
Christoph Lameterf8891e52006-06-30 01:55:45 -070052
53#ifdef CONFIG_HOTPLUG
54/*
55 * Fold the foreign cpu events into our own.
56 *
57 * This is adding to the events on one processor
58 * but keeps the global counts constant.
59 */
60void vm_events_fold_cpu(int cpu)
61{
62 struct vm_event_state *fold_state = &per_cpu(vm_event_states, cpu);
63 int i;
64
65 for (i = 0; i < NR_VM_EVENT_ITEMS; i++) {
66 count_vm_events(i, fold_state->event[i]);
67 fold_state->event[i] = 0;
68 }
69}
70#endif /* CONFIG_HOTPLUG */
71
72#endif /* CONFIG_VM_EVENT_COUNTERS */
73
Christoph Lameter2244b952006-06-30 01:55:33 -070074/*
75 * Manage combined zone based / global counters
76 *
77 * vm_stat contains the global counters
78 */
79atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS];
80EXPORT_SYMBOL(vm_stat);
81
82#ifdef CONFIG_SMP
83
Christoph Lameterdf9ecab2006-08-31 21:27:35 -070084static int calculate_threshold(struct zone *zone)
85{
86 int threshold;
87 int mem; /* memory in 128 MB units */
88
89 /*
90 * The threshold scales with the number of processors and the amount
91 * of memory per zone. More memory means that we can defer updates for
92 * longer, more processors could lead to more contention.
93 * fls() is used to have a cheap way of logarithmic scaling.
94 *
95 * Some sample thresholds:
96 *
97 * Threshold Processors (fls) Zonesize fls(mem+1)
98 * ------------------------------------------------------------------
99 * 8 1 1 0.9-1 GB 4
100 * 16 2 2 0.9-1 GB 4
101 * 20 2 2 1-2 GB 5
102 * 24 2 2 2-4 GB 6
103 * 28 2 2 4-8 GB 7
104 * 32 2 2 8-16 GB 8
105 * 4 2 2 <128M 1
106 * 30 4 3 2-4 GB 5
107 * 48 4 3 8-16 GB 8
108 * 32 8 4 1-2 GB 4
109 * 32 8 4 0.9-1GB 4
110 * 10 16 5 <128M 1
111 * 40 16 5 900M 4
112 * 70 64 7 2-4 GB 5
113 * 84 64 7 4-8 GB 6
114 * 108 512 9 4-8 GB 6
115 * 125 1024 10 8-16 GB 8
116 * 125 1024 10 16-32 GB 9
117 */
118
119 mem = zone->present_pages >> (27 - PAGE_SHIFT);
120
121 threshold = 2 * fls(num_online_cpus()) * (1 + fls(mem));
122
123 /*
124 * Maximum threshold is 125
125 */
126 threshold = min(125, threshold);
127
128 return threshold;
129}
Christoph Lameter2244b952006-06-30 01:55:33 -0700130
131/*
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700132 * Refresh the thresholds for each zone.
Christoph Lameter2244b952006-06-30 01:55:33 -0700133 */
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700134static void refresh_zone_stat_thresholds(void)
Christoph Lameter2244b952006-06-30 01:55:33 -0700135{
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700136 struct zone *zone;
137 int cpu;
138 int threshold;
139
KOSAKI Motohiroee99c712009-03-31 15:19:31 -0700140 for_each_populated_zone(zone) {
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700141 threshold = calculate_threshold(zone);
142
143 for_each_online_cpu(cpu)
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900144 per_cpu_ptr(zone->pageset, cpu)->stat_threshold
145 = threshold;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700146 }
Christoph Lameter2244b952006-06-30 01:55:33 -0700147}
148
149/*
150 * For use when we know that interrupts are disabled.
151 */
152void __mod_zone_page_state(struct zone *zone, enum zone_stat_item item,
153 int delta)
154{
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900155 struct per_cpu_pageset *pcp = this_cpu_ptr(zone->pageset);
156
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700157 s8 *p = pcp->vm_stat_diff + item;
Christoph Lameter2244b952006-06-30 01:55:33 -0700158 long x;
159
Christoph Lameter2244b952006-06-30 01:55:33 -0700160 x = delta + *p;
161
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700162 if (unlikely(x > pcp->stat_threshold || x < -pcp->stat_threshold)) {
Christoph Lameter2244b952006-06-30 01:55:33 -0700163 zone_page_state_add(x, zone, item);
164 x = 0;
165 }
Christoph Lameter2244b952006-06-30 01:55:33 -0700166 *p = x;
167}
168EXPORT_SYMBOL(__mod_zone_page_state);
169
170/*
171 * For an unknown interrupt state
172 */
173void mod_zone_page_state(struct zone *zone, enum zone_stat_item item,
174 int delta)
175{
176 unsigned long flags;
177
178 local_irq_save(flags);
179 __mod_zone_page_state(zone, item, delta);
180 local_irq_restore(flags);
181}
182EXPORT_SYMBOL(mod_zone_page_state);
183
184/*
185 * Optimized increment and decrement functions.
186 *
187 * These are only for a single page and therefore can take a struct page *
188 * argument instead of struct zone *. This allows the inclusion of the code
189 * generated for page_zone(page) into the optimized functions.
190 *
191 * No overflow check is necessary and therefore the differential can be
192 * incremented or decremented in place which may allow the compilers to
193 * generate better code.
Christoph Lameter2244b952006-06-30 01:55:33 -0700194 * The increment or decrement is known and therefore one boundary check can
195 * be omitted.
196 *
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700197 * NOTE: These functions are very performance sensitive. Change only
198 * with care.
199 *
Christoph Lameter2244b952006-06-30 01:55:33 -0700200 * Some processors have inc/dec instructions that are atomic vs an interrupt.
201 * However, the code must first determine the differential location in a zone
202 * based on the processor number and then inc/dec the counter. There is no
203 * guarantee without disabling preemption that the processor will not change
204 * in between and therefore the atomicity vs. interrupt cannot be exploited
205 * in a useful way here.
206 */
Christoph Lameterc8785382007-02-10 01:43:01 -0800207void __inc_zone_state(struct zone *zone, enum zone_stat_item item)
Christoph Lameter2244b952006-06-30 01:55:33 -0700208{
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900209 struct per_cpu_pageset *pcp = this_cpu_ptr(zone->pageset);
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700210 s8 *p = pcp->vm_stat_diff + item;
Christoph Lameter2244b952006-06-30 01:55:33 -0700211
212 (*p)++;
213
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700214 if (unlikely(*p > pcp->stat_threshold)) {
215 int overstep = pcp->stat_threshold / 2;
216
217 zone_page_state_add(*p + overstep, zone, item);
218 *p = -overstep;
Christoph Lameter2244b952006-06-30 01:55:33 -0700219 }
220}
Christoph Lameterca889e62006-06-30 01:55:44 -0700221
222void __inc_zone_page_state(struct page *page, enum zone_stat_item item)
223{
224 __inc_zone_state(page_zone(page), item);
225}
Christoph Lameter2244b952006-06-30 01:55:33 -0700226EXPORT_SYMBOL(__inc_zone_page_state);
227
Christoph Lameterc8785382007-02-10 01:43:01 -0800228void __dec_zone_state(struct zone *zone, enum zone_stat_item item)
Christoph Lameter2244b952006-06-30 01:55:33 -0700229{
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900230 struct per_cpu_pageset *pcp = this_cpu_ptr(zone->pageset);
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700231 s8 *p = pcp->vm_stat_diff + item;
Christoph Lameter2244b952006-06-30 01:55:33 -0700232
233 (*p)--;
234
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700235 if (unlikely(*p < - pcp->stat_threshold)) {
236 int overstep = pcp->stat_threshold / 2;
237
238 zone_page_state_add(*p - overstep, zone, item);
239 *p = overstep;
Christoph Lameter2244b952006-06-30 01:55:33 -0700240 }
241}
Christoph Lameterc8785382007-02-10 01:43:01 -0800242
243void __dec_zone_page_state(struct page *page, enum zone_stat_item item)
244{
245 __dec_zone_state(page_zone(page), item);
246}
Christoph Lameter2244b952006-06-30 01:55:33 -0700247EXPORT_SYMBOL(__dec_zone_page_state);
248
Christoph Lameterca889e62006-06-30 01:55:44 -0700249void inc_zone_state(struct zone *zone, enum zone_stat_item item)
250{
251 unsigned long flags;
252
253 local_irq_save(flags);
254 __inc_zone_state(zone, item);
255 local_irq_restore(flags);
256}
257
Christoph Lameter2244b952006-06-30 01:55:33 -0700258void inc_zone_page_state(struct page *page, enum zone_stat_item item)
259{
260 unsigned long flags;
261 struct zone *zone;
Christoph Lameter2244b952006-06-30 01:55:33 -0700262
263 zone = page_zone(page);
264 local_irq_save(flags);
Christoph Lameterca889e62006-06-30 01:55:44 -0700265 __inc_zone_state(zone, item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700266 local_irq_restore(flags);
267}
268EXPORT_SYMBOL(inc_zone_page_state);
269
270void dec_zone_page_state(struct page *page, enum zone_stat_item item)
271{
272 unsigned long flags;
Christoph Lameter2244b952006-06-30 01:55:33 -0700273
Christoph Lameter2244b952006-06-30 01:55:33 -0700274 local_irq_save(flags);
Christoph Lametera302eb42006-08-31 21:27:34 -0700275 __dec_zone_page_state(page, item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700276 local_irq_restore(flags);
277}
278EXPORT_SYMBOL(dec_zone_page_state);
279
280/*
281 * Update the zone counters for one cpu.
Christoph Lameter4037d452007-05-09 02:35:14 -0700282 *
Christoph Lametera7f75e22008-02-04 22:29:16 -0800283 * The cpu specified must be either the current cpu or a processor that
284 * is not online. If it is the current cpu then the execution thread must
285 * be pinned to the current cpu.
286 *
Christoph Lameter4037d452007-05-09 02:35:14 -0700287 * Note that refresh_cpu_vm_stats strives to only access
288 * node local memory. The per cpu pagesets on remote zones are placed
289 * in the memory local to the processor using that pageset. So the
290 * loop over all zones will access a series of cachelines local to
291 * the processor.
292 *
293 * The call to zone_page_state_add updates the cachelines with the
294 * statistics in the remote zone struct as well as the global cachelines
295 * with the global counters. These could cause remote node cache line
296 * bouncing and will have to be only done when necessary.
Christoph Lameter2244b952006-06-30 01:55:33 -0700297 */
298void refresh_cpu_vm_stats(int cpu)
299{
300 struct zone *zone;
301 int i;
Christoph Lametera7f75e22008-02-04 22:29:16 -0800302 int global_diff[NR_VM_ZONE_STAT_ITEMS] = { 0, };
Christoph Lameter2244b952006-06-30 01:55:33 -0700303
KOSAKI Motohiroee99c712009-03-31 15:19:31 -0700304 for_each_populated_zone(zone) {
Christoph Lameter4037d452007-05-09 02:35:14 -0700305 struct per_cpu_pageset *p;
Christoph Lameter2244b952006-06-30 01:55:33 -0700306
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900307 p = per_cpu_ptr(zone->pageset, cpu);
Christoph Lameter2244b952006-06-30 01:55:33 -0700308
309 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
Christoph Lameter4037d452007-05-09 02:35:14 -0700310 if (p->vm_stat_diff[i]) {
Christoph Lametera7f75e22008-02-04 22:29:16 -0800311 unsigned long flags;
312 int v;
313
Christoph Lameter2244b952006-06-30 01:55:33 -0700314 local_irq_save(flags);
Christoph Lametera7f75e22008-02-04 22:29:16 -0800315 v = p->vm_stat_diff[i];
Christoph Lameter4037d452007-05-09 02:35:14 -0700316 p->vm_stat_diff[i] = 0;
Christoph Lametera7f75e22008-02-04 22:29:16 -0800317 local_irq_restore(flags);
318 atomic_long_add(v, &zone->vm_stat[i]);
319 global_diff[i] += v;
Christoph Lameter4037d452007-05-09 02:35:14 -0700320#ifdef CONFIG_NUMA
321 /* 3 seconds idle till flush */
322 p->expire = 3;
323#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700324 }
Dimitri Sivanich468fd622008-04-28 02:13:37 -0700325 cond_resched();
Christoph Lameter4037d452007-05-09 02:35:14 -0700326#ifdef CONFIG_NUMA
327 /*
328 * Deal with draining the remote pageset of this
329 * processor
330 *
331 * Check if there are pages remaining in this pageset
332 * if not then there is nothing to expire.
333 */
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800334 if (!p->expire || !p->pcp.count)
Christoph Lameter4037d452007-05-09 02:35:14 -0700335 continue;
336
337 /*
338 * We never drain zones local to this processor.
339 */
340 if (zone_to_nid(zone) == numa_node_id()) {
341 p->expire = 0;
342 continue;
343 }
344
345 p->expire--;
346 if (p->expire)
347 continue;
348
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800349 if (p->pcp.count)
350 drain_zone_pages(zone, &p->pcp);
Christoph Lameter4037d452007-05-09 02:35:14 -0700351#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700352 }
Christoph Lametera7f75e22008-02-04 22:29:16 -0800353
354 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
355 if (global_diff[i])
356 atomic_long_add(global_diff[i], &vm_stat[i]);
Christoph Lameter2244b952006-06-30 01:55:33 -0700357}
358
Christoph Lameter2244b952006-06-30 01:55:33 -0700359#endif
360
Christoph Lameterca889e62006-06-30 01:55:44 -0700361#ifdef CONFIG_NUMA
362/*
363 * zonelist = the list of zones passed to the allocator
364 * z = the zone from which the allocation occurred.
365 *
366 * Must be called with interrupts disabled.
367 */
Mel Gorman18ea7e72008-04-28 02:12:14 -0700368void zone_statistics(struct zone *preferred_zone, struct zone *z)
Christoph Lameterca889e62006-06-30 01:55:44 -0700369{
Mel Gorman18ea7e72008-04-28 02:12:14 -0700370 if (z->zone_pgdat == preferred_zone->zone_pgdat) {
Christoph Lameterca889e62006-06-30 01:55:44 -0700371 __inc_zone_state(z, NUMA_HIT);
372 } else {
373 __inc_zone_state(z, NUMA_MISS);
Mel Gorman18ea7e72008-04-28 02:12:14 -0700374 __inc_zone_state(preferred_zone, NUMA_FOREIGN);
Christoph Lameterca889e62006-06-30 01:55:44 -0700375 }
Christoph Lameter5d292342006-09-27 01:50:10 -0700376 if (z->node == numa_node_id())
Christoph Lameterca889e62006-06-30 01:55:44 -0700377 __inc_zone_state(z, NUMA_LOCAL);
378 else
379 __inc_zone_state(z, NUMA_OTHER);
380}
381#endif
382
Mel Gormand7a57522010-05-24 14:32:25 -0700383#ifdef CONFIG_COMPACTION
384struct contig_page_info {
385 unsigned long free_pages;
386 unsigned long free_blocks_total;
387 unsigned long free_blocks_suitable;
388};
389
390/*
391 * Calculate the number of free pages in a zone, how many contiguous
392 * pages are free and how many are large enough to satisfy an allocation of
393 * the target size. Note that this function makes no attempt to estimate
394 * how many suitable free blocks there *might* be if MOVABLE pages were
395 * migrated. Calculating that is possible, but expensive and can be
396 * figured out from userspace
397 */
398static void fill_contig_page_info(struct zone *zone,
399 unsigned int suitable_order,
400 struct contig_page_info *info)
401{
402 unsigned int order;
403
404 info->free_pages = 0;
405 info->free_blocks_total = 0;
406 info->free_blocks_suitable = 0;
407
408 for (order = 0; order < MAX_ORDER; order++) {
409 unsigned long blocks;
410
411 /* Count number of free blocks */
412 blocks = zone->free_area[order].nr_free;
413 info->free_blocks_total += blocks;
414
415 /* Count free base pages */
416 info->free_pages += blocks << order;
417
418 /* Count the suitable free blocks */
419 if (order >= suitable_order)
420 info->free_blocks_suitable += blocks <<
421 (order - suitable_order);
422 }
423}
Mel Gormanf1a5ab12010-05-24 14:32:26 -0700424
425/*
426 * A fragmentation index only makes sense if an allocation of a requested
427 * size would fail. If that is true, the fragmentation index indicates
428 * whether external fragmentation or a lack of memory was the problem.
429 * The value can be used to determine if page reclaim or compaction
430 * should be used
431 */
432int fragmentation_index(unsigned int order, struct contig_page_info *info)
433{
434 unsigned long requested = 1UL << order;
435
436 if (!info->free_blocks_total)
437 return 0;
438
439 /* Fragmentation index only makes sense when a request would fail */
440 if (info->free_blocks_suitable)
441 return -1000;
442
443 /*
444 * Index is between 0 and 1 so return within 3 decimal places
445 *
446 * 0 => allocation would fail due to lack of memory
447 * 1 => allocation would fail due to fragmentation
448 */
449 return 1000 - div_u64( (1000+(div_u64(info->free_pages * 1000ULL, requested))), info->free_blocks_total);
450}
Mel Gormand7a57522010-05-24 14:32:25 -0700451#endif
452
453#if defined(CONFIG_PROC_FS) || defined(CONFIG_COMPACTION)
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400454#include <linux/proc_fs.h>
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700455#include <linux/seq_file.h>
456
Mel Gorman467c9962007-10-16 01:26:02 -0700457static char * const migratetype_names[MIGRATE_TYPES] = {
458 "Unmovable",
459 "Reclaimable",
460 "Movable",
461 "Reserve",
KOSAKI Motohiro91446b02008-04-15 14:34:42 -0700462 "Isolate",
Mel Gorman467c9962007-10-16 01:26:02 -0700463};
464
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700465static void *frag_start(struct seq_file *m, loff_t *pos)
466{
467 pg_data_t *pgdat;
468 loff_t node = *pos;
469 for (pgdat = first_online_pgdat();
470 pgdat && node;
471 pgdat = next_online_pgdat(pgdat))
472 --node;
473
474 return pgdat;
475}
476
477static void *frag_next(struct seq_file *m, void *arg, loff_t *pos)
478{
479 pg_data_t *pgdat = (pg_data_t *)arg;
480
481 (*pos)++;
482 return next_online_pgdat(pgdat);
483}
484
485static void frag_stop(struct seq_file *m, void *arg)
486{
487}
488
Mel Gorman467c9962007-10-16 01:26:02 -0700489/* Walk all the zones in a node and print using a callback */
490static void walk_zones_in_node(struct seq_file *m, pg_data_t *pgdat,
491 void (*print)(struct seq_file *m, pg_data_t *, struct zone *))
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700492{
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700493 struct zone *zone;
494 struct zone *node_zones = pgdat->node_zones;
495 unsigned long flags;
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700496
497 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
498 if (!populated_zone(zone))
499 continue;
500
501 spin_lock_irqsave(&zone->lock, flags);
Mel Gorman467c9962007-10-16 01:26:02 -0700502 print(m, pgdat, zone);
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700503 spin_unlock_irqrestore(&zone->lock, flags);
Mel Gorman467c9962007-10-16 01:26:02 -0700504 }
505}
Mel Gormand7a57522010-05-24 14:32:25 -0700506#endif
Mel Gorman467c9962007-10-16 01:26:02 -0700507
Mel Gormand7a57522010-05-24 14:32:25 -0700508#ifdef CONFIG_PROC_FS
Mel Gorman467c9962007-10-16 01:26:02 -0700509static void frag_show_print(struct seq_file *m, pg_data_t *pgdat,
510 struct zone *zone)
511{
512 int order;
513
514 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
515 for (order = 0; order < MAX_ORDER; ++order)
516 seq_printf(m, "%6lu ", zone->free_area[order].nr_free);
517 seq_putc(m, '\n');
518}
519
520/*
521 * This walks the free areas for each zone.
522 */
523static int frag_show(struct seq_file *m, void *arg)
524{
525 pg_data_t *pgdat = (pg_data_t *)arg;
526 walk_zones_in_node(m, pgdat, frag_show_print);
527 return 0;
528}
529
530static void pagetypeinfo_showfree_print(struct seq_file *m,
531 pg_data_t *pgdat, struct zone *zone)
532{
533 int order, mtype;
534
535 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++) {
536 seq_printf(m, "Node %4d, zone %8s, type %12s ",
537 pgdat->node_id,
538 zone->name,
539 migratetype_names[mtype]);
540 for (order = 0; order < MAX_ORDER; ++order) {
541 unsigned long freecount = 0;
542 struct free_area *area;
543 struct list_head *curr;
544
545 area = &(zone->free_area[order]);
546
547 list_for_each(curr, &area->free_list[mtype])
548 freecount++;
549 seq_printf(m, "%6lu ", freecount);
550 }
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700551 seq_putc(m, '\n');
552 }
Mel Gorman467c9962007-10-16 01:26:02 -0700553}
554
555/* Print out the free pages at each order for each migatetype */
556static int pagetypeinfo_showfree(struct seq_file *m, void *arg)
557{
558 int order;
559 pg_data_t *pgdat = (pg_data_t *)arg;
560
561 /* Print header */
562 seq_printf(m, "%-43s ", "Free pages count per migrate type at order");
563 for (order = 0; order < MAX_ORDER; ++order)
564 seq_printf(m, "%6d ", order);
565 seq_putc(m, '\n');
566
567 walk_zones_in_node(m, pgdat, pagetypeinfo_showfree_print);
568
569 return 0;
570}
571
572static void pagetypeinfo_showblockcount_print(struct seq_file *m,
573 pg_data_t *pgdat, struct zone *zone)
574{
575 int mtype;
576 unsigned long pfn;
577 unsigned long start_pfn = zone->zone_start_pfn;
578 unsigned long end_pfn = start_pfn + zone->spanned_pages;
579 unsigned long count[MIGRATE_TYPES] = { 0, };
580
581 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
582 struct page *page;
583
584 if (!pfn_valid(pfn))
585 continue;
586
587 page = pfn_to_page(pfn);
Mel Gormaneb335752009-05-13 17:34:48 +0100588
589 /* Watch for unexpected holes punched in the memmap */
590 if (!memmap_valid_within(pfn, page, zone))
Mel Gormane80d6a22008-08-14 11:10:14 +0100591 continue;
Mel Gormaneb335752009-05-13 17:34:48 +0100592
Mel Gorman467c9962007-10-16 01:26:02 -0700593 mtype = get_pageblock_migratetype(page);
594
Mel Gormane80d6a22008-08-14 11:10:14 +0100595 if (mtype < MIGRATE_TYPES)
596 count[mtype]++;
Mel Gorman467c9962007-10-16 01:26:02 -0700597 }
598
599 /* Print counts */
600 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
601 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
602 seq_printf(m, "%12lu ", count[mtype]);
603 seq_putc(m, '\n');
604}
605
606/* Print out the free pages at each order for each migratetype */
607static int pagetypeinfo_showblockcount(struct seq_file *m, void *arg)
608{
609 int mtype;
610 pg_data_t *pgdat = (pg_data_t *)arg;
611
612 seq_printf(m, "\n%-23s", "Number of blocks type ");
613 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
614 seq_printf(m, "%12s ", migratetype_names[mtype]);
615 seq_putc(m, '\n');
616 walk_zones_in_node(m, pgdat, pagetypeinfo_showblockcount_print);
617
618 return 0;
619}
620
621/*
622 * This prints out statistics in relation to grouping pages by mobility.
623 * It is expensive to collect so do not constantly read the file.
624 */
625static int pagetypeinfo_show(struct seq_file *m, void *arg)
626{
627 pg_data_t *pgdat = (pg_data_t *)arg;
628
KOSAKI Motohiro41b25a32008-04-30 00:52:13 -0700629 /* check memoryless node */
630 if (!node_state(pgdat->node_id, N_HIGH_MEMORY))
631 return 0;
632
Mel Gorman467c9962007-10-16 01:26:02 -0700633 seq_printf(m, "Page block order: %d\n", pageblock_order);
634 seq_printf(m, "Pages per block: %lu\n", pageblock_nr_pages);
635 seq_putc(m, '\n');
636 pagetypeinfo_showfree(m, pgdat);
637 pagetypeinfo_showblockcount(m, pgdat);
638
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700639 return 0;
640}
641
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400642static const struct seq_operations fragmentation_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700643 .start = frag_start,
644 .next = frag_next,
645 .stop = frag_stop,
646 .show = frag_show,
647};
648
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400649static int fragmentation_open(struct inode *inode, struct file *file)
650{
651 return seq_open(file, &fragmentation_op);
652}
653
654static const struct file_operations fragmentation_file_operations = {
655 .open = fragmentation_open,
656 .read = seq_read,
657 .llseek = seq_lseek,
658 .release = seq_release,
659};
660
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +0400661static const struct seq_operations pagetypeinfo_op = {
Mel Gorman467c9962007-10-16 01:26:02 -0700662 .start = frag_start,
663 .next = frag_next,
664 .stop = frag_stop,
665 .show = pagetypeinfo_show,
666};
667
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +0400668static int pagetypeinfo_open(struct inode *inode, struct file *file)
669{
670 return seq_open(file, &pagetypeinfo_op);
671}
672
673static const struct file_operations pagetypeinfo_file_ops = {
674 .open = pagetypeinfo_open,
675 .read = seq_read,
676 .llseek = seq_lseek,
677 .release = seq_release,
678};
679
Christoph Lameter4b51d662007-02-10 01:43:10 -0800680#ifdef CONFIG_ZONE_DMA
681#define TEXT_FOR_DMA(xx) xx "_dma",
682#else
683#define TEXT_FOR_DMA(xx)
684#endif
685
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700686#ifdef CONFIG_ZONE_DMA32
687#define TEXT_FOR_DMA32(xx) xx "_dma32",
688#else
689#define TEXT_FOR_DMA32(xx)
690#endif
691
692#ifdef CONFIG_HIGHMEM
693#define TEXT_FOR_HIGHMEM(xx) xx "_high",
694#else
695#define TEXT_FOR_HIGHMEM(xx)
696#endif
697
Christoph Lameter4b51d662007-02-10 01:43:10 -0800698#define TEXTS_FOR_ZONES(xx) TEXT_FOR_DMA(xx) TEXT_FOR_DMA32(xx) xx "_normal", \
Mel Gorman2a1e2742007-07-17 04:03:12 -0700699 TEXT_FOR_HIGHMEM(xx) xx "_movable",
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700700
Helge Deller15ad7cd2006-12-06 20:40:36 -0800701static const char * const vmstat_text[] = {
Christoph Lameter2244b952006-06-30 01:55:33 -0700702 /* Zoned VM counters */
Christoph Lameterd23ad422007-02-10 01:43:02 -0800703 "nr_free_pages",
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700704 "nr_inactive_anon",
705 "nr_active_anon",
706 "nr_inactive_file",
707 "nr_active_file",
Lee Schermerhorn7b854122008-10-18 20:26:40 -0700708 "nr_unevictable",
Nick Piggin5344b7e2008-10-18 20:26:51 -0700709 "nr_mlock",
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700710 "nr_anon_pages",
Christoph Lameter65ba55f2006-06-30 01:55:34 -0700711 "nr_mapped",
Christoph Lameter347ce432006-06-30 01:55:35 -0700712 "nr_file_pages",
Christoph Lameter51ed4492007-02-10 01:43:02 -0800713 "nr_dirty",
714 "nr_writeback",
Christoph Lameter972d1a72006-09-25 23:31:51 -0700715 "nr_slab_reclaimable",
716 "nr_slab_unreclaimable",
Christoph Lameterdf849a12006-06-30 01:55:38 -0700717 "nr_page_table_pages",
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -0700718 "nr_kernel_stack",
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700719 "nr_unstable",
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700720 "nr_bounce",
Andrew Mortone129b5c2006-09-27 01:50:00 -0700721 "nr_vmscan_write",
Miklos Szeredifc3ba692008-04-30 00:54:38 -0700722 "nr_writeback_temp",
KOSAKI Motohiroa7312862009-09-21 17:01:37 -0700723 "nr_isolated_anon",
724 "nr_isolated_file",
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700725 "nr_shmem",
Christoph Lameterca889e62006-06-30 01:55:44 -0700726#ifdef CONFIG_NUMA
727 "numa_hit",
728 "numa_miss",
729 "numa_foreign",
730 "numa_interleave",
731 "numa_local",
732 "numa_other",
733#endif
734
Christoph Lameterf8891e52006-06-30 01:55:45 -0700735#ifdef CONFIG_VM_EVENT_COUNTERS
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700736 "pgpgin",
737 "pgpgout",
738 "pswpin",
739 "pswpout",
740
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700741 TEXTS_FOR_ZONES("pgalloc")
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700742
743 "pgfree",
744 "pgactivate",
745 "pgdeactivate",
746
747 "pgfault",
748 "pgmajfault",
749
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700750 TEXTS_FOR_ZONES("pgrefill")
751 TEXTS_FOR_ZONES("pgsteal")
752 TEXTS_FOR_ZONES("pgscan_kswapd")
753 TEXTS_FOR_ZONES("pgscan_direct")
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700754
Mel Gorman24cf725182009-06-16 15:33:23 -0700755#ifdef CONFIG_NUMA
756 "zone_reclaim_failed",
757#endif
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700758 "pginodesteal",
759 "slabs_scanned",
760 "kswapd_steal",
761 "kswapd_inodesteal",
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -0800762 "kswapd_low_wmark_hit_quickly",
763 "kswapd_high_wmark_hit_quickly",
764 "kswapd_skip_congestion_wait",
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700765 "pageoutrun",
766 "allocstall",
767
768 "pgrotated",
Adam Litke3b116302008-04-28 02:13:06 -0700769#ifdef CONFIG_HUGETLB_PAGE
770 "htlb_buddy_alloc_success",
771 "htlb_buddy_alloc_fail",
772#endif
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700773 "unevictable_pgs_culled",
774 "unevictable_pgs_scanned",
775 "unevictable_pgs_rescued",
Nick Piggin5344b7e2008-10-18 20:26:51 -0700776 "unevictable_pgs_mlocked",
777 "unevictable_pgs_munlocked",
778 "unevictable_pgs_cleared",
779 "unevictable_pgs_stranded",
Lee Schermerhorn985737c2008-10-18 20:26:53 -0700780 "unevictable_pgs_mlockfreed",
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700781#endif
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700782};
783
Mel Gorman467c9962007-10-16 01:26:02 -0700784static void zoneinfo_show_print(struct seq_file *m, pg_data_t *pgdat,
785 struct zone *zone)
786{
787 int i;
788 seq_printf(m, "Node %d, zone %8s", pgdat->node_id, zone->name);
789 seq_printf(m,
790 "\n pages free %lu"
791 "\n min %lu"
792 "\n low %lu"
793 "\n high %lu"
Wu Fengguang08d9ae72009-06-16 15:32:30 -0700794 "\n scanned %lu"
Mel Gorman467c9962007-10-16 01:26:02 -0700795 "\n spanned %lu"
796 "\n present %lu",
797 zone_page_state(zone, NR_FREE_PAGES),
Mel Gorman41858962009-06-16 15:32:12 -0700798 min_wmark_pages(zone),
799 low_wmark_pages(zone),
800 high_wmark_pages(zone),
Mel Gorman467c9962007-10-16 01:26:02 -0700801 zone->pages_scanned,
Mel Gorman467c9962007-10-16 01:26:02 -0700802 zone->spanned_pages,
803 zone->present_pages);
804
805 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
806 seq_printf(m, "\n %-12s %lu", vmstat_text[i],
807 zone_page_state(zone, i));
808
809 seq_printf(m,
810 "\n protection: (%lu",
811 zone->lowmem_reserve[0]);
812 for (i = 1; i < ARRAY_SIZE(zone->lowmem_reserve); i++)
813 seq_printf(m, ", %lu", zone->lowmem_reserve[i]);
814 seq_printf(m,
815 ")"
816 "\n pagesets");
817 for_each_online_cpu(i) {
818 struct per_cpu_pageset *pageset;
Mel Gorman467c9962007-10-16 01:26:02 -0700819
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900820 pageset = per_cpu_ptr(zone->pageset, i);
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800821 seq_printf(m,
822 "\n cpu: %i"
823 "\n count: %i"
824 "\n high: %i"
825 "\n batch: %i",
826 i,
827 pageset->pcp.count,
828 pageset->pcp.high,
829 pageset->pcp.batch);
Mel Gorman467c9962007-10-16 01:26:02 -0700830#ifdef CONFIG_SMP
831 seq_printf(m, "\n vm stats threshold: %d",
832 pageset->stat_threshold);
833#endif
834 }
835 seq_printf(m,
836 "\n all_unreclaimable: %u"
837 "\n prev_priority: %i"
Rik van Riel556adec2008-10-18 20:26:34 -0700838 "\n start_pfn: %lu"
839 "\n inactive_ratio: %u",
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -0800840 zone->all_unreclaimable,
Mel Gorman467c9962007-10-16 01:26:02 -0700841 zone->prev_priority,
Rik van Riel556adec2008-10-18 20:26:34 -0700842 zone->zone_start_pfn,
843 zone->inactive_ratio);
Mel Gorman467c9962007-10-16 01:26:02 -0700844 seq_putc(m, '\n');
845}
846
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700847/*
848 * Output information about zones in @pgdat.
849 */
850static int zoneinfo_show(struct seq_file *m, void *arg)
851{
Mel Gorman467c9962007-10-16 01:26:02 -0700852 pg_data_t *pgdat = (pg_data_t *)arg;
853 walk_zones_in_node(m, pgdat, zoneinfo_show_print);
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700854 return 0;
855}
856
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +0400857static const struct seq_operations zoneinfo_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700858 .start = frag_start, /* iterate over all zones. The same as in
859 * fragmentation. */
860 .next = frag_next,
861 .stop = frag_stop,
862 .show = zoneinfo_show,
863};
864
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +0400865static int zoneinfo_open(struct inode *inode, struct file *file)
866{
867 return seq_open(file, &zoneinfo_op);
868}
869
870static const struct file_operations proc_zoneinfo_file_operations = {
871 .open = zoneinfo_open,
872 .read = seq_read,
873 .llseek = seq_lseek,
874 .release = seq_release,
875};
876
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700877static void *vmstat_start(struct seq_file *m, loff_t *pos)
878{
Christoph Lameter2244b952006-06-30 01:55:33 -0700879 unsigned long *v;
Christoph Lameterf8891e52006-06-30 01:55:45 -0700880#ifdef CONFIG_VM_EVENT_COUNTERS
881 unsigned long *e;
882#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700883 int i;
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700884
885 if (*pos >= ARRAY_SIZE(vmstat_text))
886 return NULL;
887
Christoph Lameterf8891e52006-06-30 01:55:45 -0700888#ifdef CONFIG_VM_EVENT_COUNTERS
Christoph Lameter2244b952006-06-30 01:55:33 -0700889 v = kmalloc(NR_VM_ZONE_STAT_ITEMS * sizeof(unsigned long)
Christoph Lameterf8891e52006-06-30 01:55:45 -0700890 + sizeof(struct vm_event_state), GFP_KERNEL);
891#else
892 v = kmalloc(NR_VM_ZONE_STAT_ITEMS * sizeof(unsigned long),
893 GFP_KERNEL);
894#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700895 m->private = v;
896 if (!v)
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700897 return ERR_PTR(-ENOMEM);
Christoph Lameter2244b952006-06-30 01:55:33 -0700898 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
899 v[i] = global_page_state(i);
Christoph Lameterf8891e52006-06-30 01:55:45 -0700900#ifdef CONFIG_VM_EVENT_COUNTERS
901 e = v + NR_VM_ZONE_STAT_ITEMS;
902 all_vm_events(e);
903 e[PGPGIN] /= 2; /* sectors -> kbytes */
904 e[PGPGOUT] /= 2;
905#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700906 return v + *pos;
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700907}
908
909static void *vmstat_next(struct seq_file *m, void *arg, loff_t *pos)
910{
911 (*pos)++;
912 if (*pos >= ARRAY_SIZE(vmstat_text))
913 return NULL;
914 return (unsigned long *)m->private + *pos;
915}
916
917static int vmstat_show(struct seq_file *m, void *arg)
918{
919 unsigned long *l = arg;
920 unsigned long off = l - (unsigned long *)m->private;
921
922 seq_printf(m, "%s %lu\n", vmstat_text[off], *l);
923 return 0;
924}
925
926static void vmstat_stop(struct seq_file *m, void *arg)
927{
928 kfree(m->private);
929 m->private = NULL;
930}
931
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +0400932static const struct seq_operations vmstat_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700933 .start = vmstat_start,
934 .next = vmstat_next,
935 .stop = vmstat_stop,
936 .show = vmstat_show,
937};
938
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +0400939static int vmstat_open(struct inode *inode, struct file *file)
940{
941 return seq_open(file, &vmstat_op);
942}
943
944static const struct file_operations proc_vmstat_file_operations = {
945 .open = vmstat_open,
946 .read = seq_read,
947 .llseek = seq_lseek,
948 .release = seq_release,
949};
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700950#endif /* CONFIG_PROC_FS */
951
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700952#ifdef CONFIG_SMP
Christoph Lameterd1187ed2007-05-09 02:35:12 -0700953static DEFINE_PER_CPU(struct delayed_work, vmstat_work);
Christoph Lameter77461ab2007-05-09 02:35:13 -0700954int sysctl_stat_interval __read_mostly = HZ;
Christoph Lameterd1187ed2007-05-09 02:35:12 -0700955
956static void vmstat_update(struct work_struct *w)
957{
958 refresh_cpu_vm_stats(smp_processor_id());
Christoph Lameter77461ab2007-05-09 02:35:13 -0700959 schedule_delayed_work(&__get_cpu_var(vmstat_work),
Anton Blanchard98f4ebb2009-04-02 16:56:39 -0700960 round_jiffies_relative(sysctl_stat_interval));
Christoph Lameterd1187ed2007-05-09 02:35:12 -0700961}
962
Randy Dunlap42614fc2007-11-14 17:00:12 -0800963static void __cpuinit start_cpu_timer(int cpu)
Christoph Lameterd1187ed2007-05-09 02:35:12 -0700964{
Tejun Heo1871e522009-10-29 22:34:13 +0900965 struct delayed_work *work = &per_cpu(vmstat_work, cpu);
Christoph Lameterd1187ed2007-05-09 02:35:12 -0700966
Tejun Heo1871e522009-10-29 22:34:13 +0900967 INIT_DELAYED_WORK_DEFERRABLE(work, vmstat_update);
968 schedule_delayed_work_on(cpu, work, __round_jiffies_relative(HZ, cpu));
Christoph Lameterd1187ed2007-05-09 02:35:12 -0700969}
970
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700971/*
972 * Use the cpu notifier to insure that the thresholds are recalculated
973 * when necessary.
974 */
975static int __cpuinit vmstat_cpuup_callback(struct notifier_block *nfb,
976 unsigned long action,
977 void *hcpu)
978{
Christoph Lameterd1187ed2007-05-09 02:35:12 -0700979 long cpu = (long)hcpu;
980
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700981 switch (action) {
Christoph Lameterd1187ed2007-05-09 02:35:12 -0700982 case CPU_ONLINE:
983 case CPU_ONLINE_FROZEN:
984 start_cpu_timer(cpu);
Christoph Lameterad596922010-01-05 15:34:51 +0900985 node_set_state(cpu_to_node(cpu), N_CPU);
Christoph Lameterd1187ed2007-05-09 02:35:12 -0700986 break;
987 case CPU_DOWN_PREPARE:
988 case CPU_DOWN_PREPARE_FROZEN:
989 cancel_rearming_delayed_work(&per_cpu(vmstat_work, cpu));
990 per_cpu(vmstat_work, cpu).work.func = NULL;
991 break;
992 case CPU_DOWN_FAILED:
993 case CPU_DOWN_FAILED_FROZEN:
994 start_cpu_timer(cpu);
995 break;
Andy Whitcroftce421c72006-12-06 20:33:08 -0800996 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700997 case CPU_DEAD_FROZEN:
Andy Whitcroftce421c72006-12-06 20:33:08 -0800998 refresh_zone_stat_thresholds();
999 break;
1000 default:
1001 break;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001002 }
1003 return NOTIFY_OK;
1004}
1005
1006static struct notifier_block __cpuinitdata vmstat_notifier =
1007 { &vmstat_cpuup_callback, NULL, 0 };
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001008#endif
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001009
Adrian Bunke2fc88d2007-10-16 01:26:27 -07001010static int __init setup_vmstat(void)
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001011{
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001012#ifdef CONFIG_SMP
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001013 int cpu;
1014
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001015 refresh_zone_stat_thresholds();
1016 register_cpu_notifier(&vmstat_notifier);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001017
1018 for_each_online_cpu(cpu)
1019 start_cpu_timer(cpu);
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001020#endif
1021#ifdef CONFIG_PROC_FS
1022 proc_create("buddyinfo", S_IRUGO, NULL, &fragmentation_file_operations);
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +04001023 proc_create("pagetypeinfo", S_IRUGO, NULL, &pagetypeinfo_file_ops);
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +04001024 proc_create("vmstat", S_IRUGO, NULL, &proc_vmstat_file_operations);
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +04001025 proc_create("zoneinfo", S_IRUGO, NULL, &proc_zoneinfo_file_operations);
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001026#endif
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001027 return 0;
1028}
1029module_init(setup_vmstat)
Mel Gormand7a57522010-05-24 14:32:25 -07001030
1031#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_COMPACTION)
1032#include <linux/debugfs.h>
1033
1034static struct dentry *extfrag_debug_root;
1035
1036/*
1037 * Return an index indicating how much of the available free memory is
1038 * unusable for an allocation of the requested size.
1039 */
1040static int unusable_free_index(unsigned int order,
1041 struct contig_page_info *info)
1042{
1043 /* No free memory is interpreted as all free memory is unusable */
1044 if (info->free_pages == 0)
1045 return 1000;
1046
1047 /*
1048 * Index should be a value between 0 and 1. Return a value to 3
1049 * decimal places.
1050 *
1051 * 0 => no fragmentation
1052 * 1 => high fragmentation
1053 */
1054 return div_u64((info->free_pages - (info->free_blocks_suitable << order)) * 1000ULL, info->free_pages);
1055
1056}
1057
1058static void unusable_show_print(struct seq_file *m,
1059 pg_data_t *pgdat, struct zone *zone)
1060{
1061 unsigned int order;
1062 int index;
1063 struct contig_page_info info;
1064
1065 seq_printf(m, "Node %d, zone %8s ",
1066 pgdat->node_id,
1067 zone->name);
1068 for (order = 0; order < MAX_ORDER; ++order) {
1069 fill_contig_page_info(zone, order, &info);
1070 index = unusable_free_index(order, &info);
1071 seq_printf(m, "%d.%03d ", index / 1000, index % 1000);
1072 }
1073
1074 seq_putc(m, '\n');
1075}
1076
1077/*
1078 * Display unusable free space index
1079 *
1080 * The unusable free space index measures how much of the available free
1081 * memory cannot be used to satisfy an allocation of a given size and is a
1082 * value between 0 and 1. The higher the value, the more of free memory is
1083 * unusable and by implication, the worse the external fragmentation is. This
1084 * can be expressed as a percentage by multiplying by 100.
1085 */
1086static int unusable_show(struct seq_file *m, void *arg)
1087{
1088 pg_data_t *pgdat = (pg_data_t *)arg;
1089
1090 /* check memoryless node */
1091 if (!node_state(pgdat->node_id, N_HIGH_MEMORY))
1092 return 0;
1093
1094 walk_zones_in_node(m, pgdat, unusable_show_print);
1095
1096 return 0;
1097}
1098
1099static const struct seq_operations unusable_op = {
1100 .start = frag_start,
1101 .next = frag_next,
1102 .stop = frag_stop,
1103 .show = unusable_show,
1104};
1105
1106static int unusable_open(struct inode *inode, struct file *file)
1107{
1108 return seq_open(file, &unusable_op);
1109}
1110
1111static const struct file_operations unusable_file_ops = {
1112 .open = unusable_open,
1113 .read = seq_read,
1114 .llseek = seq_lseek,
1115 .release = seq_release,
1116};
1117
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001118static void extfrag_show_print(struct seq_file *m,
1119 pg_data_t *pgdat, struct zone *zone)
1120{
1121 unsigned int order;
1122 int index;
1123
1124 /* Alloc on stack as interrupts are disabled for zone walk */
1125 struct contig_page_info info;
1126
1127 seq_printf(m, "Node %d, zone %8s ",
1128 pgdat->node_id,
1129 zone->name);
1130 for (order = 0; order < MAX_ORDER; ++order) {
1131 fill_contig_page_info(zone, order, &info);
1132 index = fragmentation_index(order, &info);
1133 seq_printf(m, "%d.%03d ", index / 1000, index % 1000);
1134 }
1135
1136 seq_putc(m, '\n');
1137}
1138
1139/*
1140 * Display fragmentation index for orders that allocations would fail for
1141 */
1142static int extfrag_show(struct seq_file *m, void *arg)
1143{
1144 pg_data_t *pgdat = (pg_data_t *)arg;
1145
1146 walk_zones_in_node(m, pgdat, extfrag_show_print);
1147
1148 return 0;
1149}
1150
1151static const struct seq_operations extfrag_op = {
1152 .start = frag_start,
1153 .next = frag_next,
1154 .stop = frag_stop,
1155 .show = extfrag_show,
1156};
1157
1158static int extfrag_open(struct inode *inode, struct file *file)
1159{
1160 return seq_open(file, &extfrag_op);
1161}
1162
1163static const struct file_operations extfrag_file_ops = {
1164 .open = extfrag_open,
1165 .read = seq_read,
1166 .llseek = seq_lseek,
1167 .release = seq_release,
1168};
1169
Mel Gormand7a57522010-05-24 14:32:25 -07001170static int __init extfrag_debug_init(void)
1171{
1172 extfrag_debug_root = debugfs_create_dir("extfrag", NULL);
1173 if (!extfrag_debug_root)
1174 return -ENOMEM;
1175
1176 if (!debugfs_create_file("unusable_index", 0444,
1177 extfrag_debug_root, NULL, &unusable_file_ops))
1178 return -ENOMEM;
1179
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001180 if (!debugfs_create_file("extfrag_index", 0444,
1181 extfrag_debug_root, NULL, &extfrag_file_ops))
1182 return -ENOMEM;
1183
Mel Gormand7a57522010-05-24 14:32:25 -07001184 return 0;
1185}
1186
1187module_init(extfrag_debug_init);
1188#endif