blob: f9a7bc89fd10c2089df510fd7737771e0216bb18 [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>
Michael Rubin79da8262010-10-26 14:21:36 -070020#include <linux/writeback.h>
Namhyung Kim36deb0b2010-10-26 14:22:04 -070021#include <linux/compaction.h>
Christoph Lameterf6ac2352006-06-30 01:55:32 -070022
Christoph Lameterf8891e52006-06-30 01:55:45 -070023#ifdef CONFIG_VM_EVENT_COUNTERS
24DEFINE_PER_CPU(struct vm_event_state, vm_event_states) = {{0}};
25EXPORT_PER_CPU_SYMBOL(vm_event_states);
26
Minchan Kim31f961a2010-08-09 17:18:59 -070027static void sum_vm_events(unsigned long *ret)
Christoph Lameterf8891e52006-06-30 01:55:45 -070028{
Christoph Lameter9eccf2a2008-02-04 22:29:22 -080029 int cpu;
Christoph Lameterf8891e52006-06-30 01:55:45 -070030 int i;
31
32 memset(ret, 0, NR_VM_EVENT_ITEMS * sizeof(unsigned long));
33
Minchan Kim31f961a2010-08-09 17:18:59 -070034 for_each_online_cpu(cpu) {
Christoph Lameterf8891e52006-06-30 01:55:45 -070035 struct vm_event_state *this = &per_cpu(vm_event_states, cpu);
36
Christoph Lameterf8891e52006-06-30 01:55:45 -070037 for (i = 0; i < NR_VM_EVENT_ITEMS; i++)
38 ret[i] += this->event[i];
39 }
40}
41
42/*
43 * Accumulate the vm event counters across all CPUs.
44 * The result is unavoidably approximate - it can change
45 * during and after execution of this function.
46*/
47void all_vm_events(unsigned long *ret)
48{
KOSAKI Motohirob5be1132008-05-12 14:02:06 -070049 get_online_cpus();
Minchan Kim31f961a2010-08-09 17:18:59 -070050 sum_vm_events(ret);
KOSAKI Motohirob5be1132008-05-12 14:02:06 -070051 put_online_cpus();
Christoph Lameterf8891e52006-06-30 01:55:45 -070052}
Heiko Carstens32dd66f2006-07-10 04:44:31 -070053EXPORT_SYMBOL_GPL(all_vm_events);
Christoph Lameterf8891e52006-06-30 01:55:45 -070054
55#ifdef CONFIG_HOTPLUG
56/*
57 * Fold the foreign cpu events into our own.
58 *
59 * This is adding to the events on one processor
60 * but keeps the global counts constant.
61 */
62void vm_events_fold_cpu(int cpu)
63{
64 struct vm_event_state *fold_state = &per_cpu(vm_event_states, cpu);
65 int i;
66
67 for (i = 0; i < NR_VM_EVENT_ITEMS; i++) {
68 count_vm_events(i, fold_state->event[i]);
69 fold_state->event[i] = 0;
70 }
71}
72#endif /* CONFIG_HOTPLUG */
73
74#endif /* CONFIG_VM_EVENT_COUNTERS */
75
Christoph Lameter2244b952006-06-30 01:55:33 -070076/*
77 * Manage combined zone based / global counters
78 *
79 * vm_stat contains the global counters
80 */
81atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS];
82EXPORT_SYMBOL(vm_stat);
83
84#ifdef CONFIG_SMP
85
Christoph Lameterdf9ecab2006-08-31 21:27:35 -070086static int calculate_threshold(struct zone *zone)
87{
88 int threshold;
89 int mem; /* memory in 128 MB units */
90
91 /*
92 * The threshold scales with the number of processors and the amount
93 * of memory per zone. More memory means that we can defer updates for
94 * longer, more processors could lead to more contention.
95 * fls() is used to have a cheap way of logarithmic scaling.
96 *
97 * Some sample thresholds:
98 *
99 * Threshold Processors (fls) Zonesize fls(mem+1)
100 * ------------------------------------------------------------------
101 * 8 1 1 0.9-1 GB 4
102 * 16 2 2 0.9-1 GB 4
103 * 20 2 2 1-2 GB 5
104 * 24 2 2 2-4 GB 6
105 * 28 2 2 4-8 GB 7
106 * 32 2 2 8-16 GB 8
107 * 4 2 2 <128M 1
108 * 30 4 3 2-4 GB 5
109 * 48 4 3 8-16 GB 8
110 * 32 8 4 1-2 GB 4
111 * 32 8 4 0.9-1GB 4
112 * 10 16 5 <128M 1
113 * 40 16 5 900M 4
114 * 70 64 7 2-4 GB 5
115 * 84 64 7 4-8 GB 6
116 * 108 512 9 4-8 GB 6
117 * 125 1024 10 8-16 GB 8
118 * 125 1024 10 16-32 GB 9
119 */
120
121 mem = zone->present_pages >> (27 - PAGE_SHIFT);
122
123 threshold = 2 * fls(num_online_cpus()) * (1 + fls(mem));
124
125 /*
126 * Maximum threshold is 125
127 */
128 threshold = min(125, threshold);
129
130 return threshold;
131}
Christoph Lameter2244b952006-06-30 01:55:33 -0700132
133/*
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700134 * Refresh the thresholds for each zone.
Christoph Lameter2244b952006-06-30 01:55:33 -0700135 */
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700136static void refresh_zone_stat_thresholds(void)
Christoph Lameter2244b952006-06-30 01:55:33 -0700137{
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700138 struct zone *zone;
139 int cpu;
140 int threshold;
141
KOSAKI Motohiroee99c712009-03-31 15:19:31 -0700142 for_each_populated_zone(zone) {
Christoph Lameteraa454842010-09-09 16:38:17 -0700143 unsigned long max_drift, tolerate_drift;
144
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700145 threshold = calculate_threshold(zone);
146
147 for_each_online_cpu(cpu)
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900148 per_cpu_ptr(zone->pageset, cpu)->stat_threshold
149 = threshold;
Christoph Lameteraa454842010-09-09 16:38:17 -0700150
151 /*
152 * Only set percpu_drift_mark if there is a danger that
153 * NR_FREE_PAGES reports the low watermark is ok when in fact
154 * the min watermark could be breached by an allocation
155 */
156 tolerate_drift = low_wmark_pages(zone) - min_wmark_pages(zone);
157 max_drift = num_online_cpus() * threshold;
158 if (max_drift > tolerate_drift)
159 zone->percpu_drift_mark = high_wmark_pages(zone) +
160 max_drift;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700161 }
Christoph Lameter2244b952006-06-30 01:55:33 -0700162}
163
164/*
165 * For use when we know that interrupts are disabled.
166 */
167void __mod_zone_page_state(struct zone *zone, enum zone_stat_item item,
168 int delta)
169{
Christoph Lameter12938a92010-12-06 11:16:20 -0600170 struct per_cpu_pageset __percpu *pcp = zone->pageset;
171 s8 __percpu *p = pcp->vm_stat_diff + item;
Christoph Lameter2244b952006-06-30 01:55:33 -0700172 long x;
Christoph Lameter12938a92010-12-06 11:16:20 -0600173 long t;
Christoph Lameter2244b952006-06-30 01:55:33 -0700174
Christoph Lameter12938a92010-12-06 11:16:20 -0600175 x = delta + __this_cpu_read(*p);
Christoph Lameter2244b952006-06-30 01:55:33 -0700176
Christoph Lameter12938a92010-12-06 11:16:20 -0600177 t = __this_cpu_read(pcp->stat_threshold);
178
179 if (unlikely(x > t || x < -t)) {
Christoph Lameter2244b952006-06-30 01:55:33 -0700180 zone_page_state_add(x, zone, item);
181 x = 0;
182 }
Christoph Lameter12938a92010-12-06 11:16:20 -0600183 __this_cpu_write(*p, x);
Christoph Lameter2244b952006-06-30 01:55:33 -0700184}
185EXPORT_SYMBOL(__mod_zone_page_state);
186
187/*
188 * For an unknown interrupt state
189 */
190void mod_zone_page_state(struct zone *zone, enum zone_stat_item item,
191 int delta)
192{
193 unsigned long flags;
194
195 local_irq_save(flags);
196 __mod_zone_page_state(zone, item, delta);
197 local_irq_restore(flags);
198}
199EXPORT_SYMBOL(mod_zone_page_state);
200
201/*
202 * Optimized increment and decrement functions.
203 *
204 * These are only for a single page and therefore can take a struct page *
205 * argument instead of struct zone *. This allows the inclusion of the code
206 * generated for page_zone(page) into the optimized functions.
207 *
208 * No overflow check is necessary and therefore the differential can be
209 * incremented or decremented in place which may allow the compilers to
210 * generate better code.
Christoph Lameter2244b952006-06-30 01:55:33 -0700211 * The increment or decrement is known and therefore one boundary check can
212 * be omitted.
213 *
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700214 * NOTE: These functions are very performance sensitive. Change only
215 * with care.
216 *
Christoph Lameter2244b952006-06-30 01:55:33 -0700217 * Some processors have inc/dec instructions that are atomic vs an interrupt.
218 * However, the code must first determine the differential location in a zone
219 * based on the processor number and then inc/dec the counter. There is no
220 * guarantee without disabling preemption that the processor will not change
221 * in between and therefore the atomicity vs. interrupt cannot be exploited
222 * in a useful way here.
223 */
Christoph Lameterc8785382007-02-10 01:43:01 -0800224void __inc_zone_state(struct zone *zone, enum zone_stat_item item)
Christoph Lameter2244b952006-06-30 01:55:33 -0700225{
Christoph Lameter12938a92010-12-06 11:16:20 -0600226 struct per_cpu_pageset __percpu *pcp = zone->pageset;
227 s8 __percpu *p = pcp->vm_stat_diff + item;
228 s8 v, t;
Christoph Lameter2244b952006-06-30 01:55:33 -0700229
Christoph Lameter908ee0f2010-12-06 11:40:02 -0600230 v = __this_cpu_inc_return(*p);
Christoph Lameter12938a92010-12-06 11:16:20 -0600231 t = __this_cpu_read(pcp->stat_threshold);
232 if (unlikely(v > t)) {
233 s8 overstep = t >> 1;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700234
Christoph Lameter12938a92010-12-06 11:16:20 -0600235 zone_page_state_add(v + overstep, zone, item);
236 __this_cpu_write(*p, -overstep);
Christoph Lameter2244b952006-06-30 01:55:33 -0700237 }
238}
Christoph Lameterca889e62006-06-30 01:55:44 -0700239
240void __inc_zone_page_state(struct page *page, enum zone_stat_item item)
241{
242 __inc_zone_state(page_zone(page), item);
243}
Christoph Lameter2244b952006-06-30 01:55:33 -0700244EXPORT_SYMBOL(__inc_zone_page_state);
245
Christoph Lameterc8785382007-02-10 01:43:01 -0800246void __dec_zone_state(struct zone *zone, enum zone_stat_item item)
Christoph Lameter2244b952006-06-30 01:55:33 -0700247{
Christoph Lameter12938a92010-12-06 11:16:20 -0600248 struct per_cpu_pageset __percpu *pcp = zone->pageset;
249 s8 __percpu *p = pcp->vm_stat_diff + item;
250 s8 v, t;
Christoph Lameter2244b952006-06-30 01:55:33 -0700251
Christoph Lameter908ee0f2010-12-06 11:40:02 -0600252 v = __this_cpu_dec_return(*p);
Christoph Lameter12938a92010-12-06 11:16:20 -0600253 t = __this_cpu_read(pcp->stat_threshold);
254 if (unlikely(v < - t)) {
255 s8 overstep = t >> 1;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700256
Christoph Lameter12938a92010-12-06 11:16:20 -0600257 zone_page_state_add(v - overstep, zone, item);
258 __this_cpu_write(*p, overstep);
Christoph Lameter2244b952006-06-30 01:55:33 -0700259 }
260}
Christoph Lameterc8785382007-02-10 01:43:01 -0800261
262void __dec_zone_page_state(struct page *page, enum zone_stat_item item)
263{
264 __dec_zone_state(page_zone(page), item);
265}
Christoph Lameter2244b952006-06-30 01:55:33 -0700266EXPORT_SYMBOL(__dec_zone_page_state);
267
Christoph Lameterca889e62006-06-30 01:55:44 -0700268void inc_zone_state(struct zone *zone, enum zone_stat_item item)
269{
270 unsigned long flags;
271
272 local_irq_save(flags);
273 __inc_zone_state(zone, item);
274 local_irq_restore(flags);
275}
276
Christoph Lameter2244b952006-06-30 01:55:33 -0700277void inc_zone_page_state(struct page *page, enum zone_stat_item item)
278{
279 unsigned long flags;
280 struct zone *zone;
Christoph Lameter2244b952006-06-30 01:55:33 -0700281
282 zone = page_zone(page);
283 local_irq_save(flags);
Christoph Lameterca889e62006-06-30 01:55:44 -0700284 __inc_zone_state(zone, item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700285 local_irq_restore(flags);
286}
287EXPORT_SYMBOL(inc_zone_page_state);
288
289void dec_zone_page_state(struct page *page, enum zone_stat_item item)
290{
291 unsigned long flags;
Christoph Lameter2244b952006-06-30 01:55:33 -0700292
Christoph Lameter2244b952006-06-30 01:55:33 -0700293 local_irq_save(flags);
Christoph Lametera302eb42006-08-31 21:27:34 -0700294 __dec_zone_page_state(page, item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700295 local_irq_restore(flags);
296}
297EXPORT_SYMBOL(dec_zone_page_state);
298
299/*
300 * Update the zone counters for one cpu.
Christoph Lameter4037d452007-05-09 02:35:14 -0700301 *
Christoph Lametera7f75e22008-02-04 22:29:16 -0800302 * The cpu specified must be either the current cpu or a processor that
303 * is not online. If it is the current cpu then the execution thread must
304 * be pinned to the current cpu.
305 *
Christoph Lameter4037d452007-05-09 02:35:14 -0700306 * Note that refresh_cpu_vm_stats strives to only access
307 * node local memory. The per cpu pagesets on remote zones are placed
308 * in the memory local to the processor using that pageset. So the
309 * loop over all zones will access a series of cachelines local to
310 * the processor.
311 *
312 * The call to zone_page_state_add updates the cachelines with the
313 * statistics in the remote zone struct as well as the global cachelines
314 * with the global counters. These could cause remote node cache line
315 * bouncing and will have to be only done when necessary.
Christoph Lameter2244b952006-06-30 01:55:33 -0700316 */
317void refresh_cpu_vm_stats(int cpu)
318{
319 struct zone *zone;
320 int i;
Christoph Lametera7f75e22008-02-04 22:29:16 -0800321 int global_diff[NR_VM_ZONE_STAT_ITEMS] = { 0, };
Christoph Lameter2244b952006-06-30 01:55:33 -0700322
KOSAKI Motohiroee99c712009-03-31 15:19:31 -0700323 for_each_populated_zone(zone) {
Christoph Lameter4037d452007-05-09 02:35:14 -0700324 struct per_cpu_pageset *p;
Christoph Lameter2244b952006-06-30 01:55:33 -0700325
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900326 p = per_cpu_ptr(zone->pageset, cpu);
Christoph Lameter2244b952006-06-30 01:55:33 -0700327
328 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
Christoph Lameter4037d452007-05-09 02:35:14 -0700329 if (p->vm_stat_diff[i]) {
Christoph Lametera7f75e22008-02-04 22:29:16 -0800330 unsigned long flags;
331 int v;
332
Christoph Lameter2244b952006-06-30 01:55:33 -0700333 local_irq_save(flags);
Christoph Lametera7f75e22008-02-04 22:29:16 -0800334 v = p->vm_stat_diff[i];
Christoph Lameter4037d452007-05-09 02:35:14 -0700335 p->vm_stat_diff[i] = 0;
Christoph Lametera7f75e22008-02-04 22:29:16 -0800336 local_irq_restore(flags);
337 atomic_long_add(v, &zone->vm_stat[i]);
338 global_diff[i] += v;
Christoph Lameter4037d452007-05-09 02:35:14 -0700339#ifdef CONFIG_NUMA
340 /* 3 seconds idle till flush */
341 p->expire = 3;
342#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700343 }
Dimitri Sivanich468fd622008-04-28 02:13:37 -0700344 cond_resched();
Christoph Lameter4037d452007-05-09 02:35:14 -0700345#ifdef CONFIG_NUMA
346 /*
347 * Deal with draining the remote pageset of this
348 * processor
349 *
350 * Check if there are pages remaining in this pageset
351 * if not then there is nothing to expire.
352 */
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800353 if (!p->expire || !p->pcp.count)
Christoph Lameter4037d452007-05-09 02:35:14 -0700354 continue;
355
356 /*
357 * We never drain zones local to this processor.
358 */
359 if (zone_to_nid(zone) == numa_node_id()) {
360 p->expire = 0;
361 continue;
362 }
363
364 p->expire--;
365 if (p->expire)
366 continue;
367
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800368 if (p->pcp.count)
369 drain_zone_pages(zone, &p->pcp);
Christoph Lameter4037d452007-05-09 02:35:14 -0700370#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700371 }
Christoph Lametera7f75e22008-02-04 22:29:16 -0800372
373 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
374 if (global_diff[i])
375 atomic_long_add(global_diff[i], &vm_stat[i]);
Christoph Lameter2244b952006-06-30 01:55:33 -0700376}
377
Christoph Lameter2244b952006-06-30 01:55:33 -0700378#endif
379
Christoph Lameterca889e62006-06-30 01:55:44 -0700380#ifdef CONFIG_NUMA
381/*
382 * zonelist = the list of zones passed to the allocator
383 * z = the zone from which the allocation occurred.
384 *
385 * Must be called with interrupts disabled.
386 */
Mel Gorman18ea7e72008-04-28 02:12:14 -0700387void zone_statistics(struct zone *preferred_zone, struct zone *z)
Christoph Lameterca889e62006-06-30 01:55:44 -0700388{
Mel Gorman18ea7e72008-04-28 02:12:14 -0700389 if (z->zone_pgdat == preferred_zone->zone_pgdat) {
Christoph Lameterca889e62006-06-30 01:55:44 -0700390 __inc_zone_state(z, NUMA_HIT);
391 } else {
392 __inc_zone_state(z, NUMA_MISS);
Mel Gorman18ea7e72008-04-28 02:12:14 -0700393 __inc_zone_state(preferred_zone, NUMA_FOREIGN);
Christoph Lameterca889e62006-06-30 01:55:44 -0700394 }
Christoph Lameter5d292342006-09-27 01:50:10 -0700395 if (z->node == numa_node_id())
Christoph Lameterca889e62006-06-30 01:55:44 -0700396 __inc_zone_state(z, NUMA_LOCAL);
397 else
398 __inc_zone_state(z, NUMA_OTHER);
399}
400#endif
401
Mel Gormand7a57522010-05-24 14:32:25 -0700402#ifdef CONFIG_COMPACTION
Namhyung Kim36deb0b2010-10-26 14:22:04 -0700403
Mel Gormand7a57522010-05-24 14:32:25 -0700404struct contig_page_info {
405 unsigned long free_pages;
406 unsigned long free_blocks_total;
407 unsigned long free_blocks_suitable;
408};
409
410/*
411 * Calculate the number of free pages in a zone, how many contiguous
412 * pages are free and how many are large enough to satisfy an allocation of
413 * the target size. Note that this function makes no attempt to estimate
414 * how many suitable free blocks there *might* be if MOVABLE pages were
415 * migrated. Calculating that is possible, but expensive and can be
416 * figured out from userspace
417 */
418static void fill_contig_page_info(struct zone *zone,
419 unsigned int suitable_order,
420 struct contig_page_info *info)
421{
422 unsigned int order;
423
424 info->free_pages = 0;
425 info->free_blocks_total = 0;
426 info->free_blocks_suitable = 0;
427
428 for (order = 0; order < MAX_ORDER; order++) {
429 unsigned long blocks;
430
431 /* Count number of free blocks */
432 blocks = zone->free_area[order].nr_free;
433 info->free_blocks_total += blocks;
434
435 /* Count free base pages */
436 info->free_pages += blocks << order;
437
438 /* Count the suitable free blocks */
439 if (order >= suitable_order)
440 info->free_blocks_suitable += blocks <<
441 (order - suitable_order);
442 }
443}
Mel Gormanf1a5ab12010-05-24 14:32:26 -0700444
445/*
446 * A fragmentation index only makes sense if an allocation of a requested
447 * size would fail. If that is true, the fragmentation index indicates
448 * whether external fragmentation or a lack of memory was the problem.
449 * The value can be used to determine if page reclaim or compaction
450 * should be used
451 */
Mel Gorman56de7262010-05-24 14:32:30 -0700452static int __fragmentation_index(unsigned int order, struct contig_page_info *info)
Mel Gormanf1a5ab12010-05-24 14:32:26 -0700453{
454 unsigned long requested = 1UL << order;
455
456 if (!info->free_blocks_total)
457 return 0;
458
459 /* Fragmentation index only makes sense when a request would fail */
460 if (info->free_blocks_suitable)
461 return -1000;
462
463 /*
464 * Index is between 0 and 1 so return within 3 decimal places
465 *
466 * 0 => allocation would fail due to lack of memory
467 * 1 => allocation would fail due to fragmentation
468 */
469 return 1000 - div_u64( (1000+(div_u64(info->free_pages * 1000ULL, requested))), info->free_blocks_total);
470}
Mel Gorman56de7262010-05-24 14:32:30 -0700471
472/* Same as __fragmentation index but allocs contig_page_info on stack */
473int fragmentation_index(struct zone *zone, unsigned int order)
474{
475 struct contig_page_info info;
476
477 fill_contig_page_info(zone, order, &info);
478 return __fragmentation_index(order, &info);
479}
Mel Gormand7a57522010-05-24 14:32:25 -0700480#endif
481
482#if defined(CONFIG_PROC_FS) || defined(CONFIG_COMPACTION)
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400483#include <linux/proc_fs.h>
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700484#include <linux/seq_file.h>
485
Mel Gorman467c9962007-10-16 01:26:02 -0700486static char * const migratetype_names[MIGRATE_TYPES] = {
487 "Unmovable",
488 "Reclaimable",
489 "Movable",
490 "Reserve",
KOSAKI Motohiro91446b02008-04-15 14:34:42 -0700491 "Isolate",
Mel Gorman467c9962007-10-16 01:26:02 -0700492};
493
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700494static void *frag_start(struct seq_file *m, loff_t *pos)
495{
496 pg_data_t *pgdat;
497 loff_t node = *pos;
498 for (pgdat = first_online_pgdat();
499 pgdat && node;
500 pgdat = next_online_pgdat(pgdat))
501 --node;
502
503 return pgdat;
504}
505
506static void *frag_next(struct seq_file *m, void *arg, loff_t *pos)
507{
508 pg_data_t *pgdat = (pg_data_t *)arg;
509
510 (*pos)++;
511 return next_online_pgdat(pgdat);
512}
513
514static void frag_stop(struct seq_file *m, void *arg)
515{
516}
517
Mel Gorman467c9962007-10-16 01:26:02 -0700518/* Walk all the zones in a node and print using a callback */
519static void walk_zones_in_node(struct seq_file *m, pg_data_t *pgdat,
520 void (*print)(struct seq_file *m, pg_data_t *, struct zone *))
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700521{
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700522 struct zone *zone;
523 struct zone *node_zones = pgdat->node_zones;
524 unsigned long flags;
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700525
526 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
527 if (!populated_zone(zone))
528 continue;
529
530 spin_lock_irqsave(&zone->lock, flags);
Mel Gorman467c9962007-10-16 01:26:02 -0700531 print(m, pgdat, zone);
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700532 spin_unlock_irqrestore(&zone->lock, flags);
Mel Gorman467c9962007-10-16 01:26:02 -0700533 }
534}
Mel Gormand7a57522010-05-24 14:32:25 -0700535#endif
Mel Gorman467c9962007-10-16 01:26:02 -0700536
Mel Gormand7a57522010-05-24 14:32:25 -0700537#ifdef CONFIG_PROC_FS
Mel Gorman467c9962007-10-16 01:26:02 -0700538static void frag_show_print(struct seq_file *m, pg_data_t *pgdat,
539 struct zone *zone)
540{
541 int order;
542
543 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
544 for (order = 0; order < MAX_ORDER; ++order)
545 seq_printf(m, "%6lu ", zone->free_area[order].nr_free);
546 seq_putc(m, '\n');
547}
548
549/*
550 * This walks the free areas for each zone.
551 */
552static int frag_show(struct seq_file *m, void *arg)
553{
554 pg_data_t *pgdat = (pg_data_t *)arg;
555 walk_zones_in_node(m, pgdat, frag_show_print);
556 return 0;
557}
558
559static void pagetypeinfo_showfree_print(struct seq_file *m,
560 pg_data_t *pgdat, struct zone *zone)
561{
562 int order, mtype;
563
564 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++) {
565 seq_printf(m, "Node %4d, zone %8s, type %12s ",
566 pgdat->node_id,
567 zone->name,
568 migratetype_names[mtype]);
569 for (order = 0; order < MAX_ORDER; ++order) {
570 unsigned long freecount = 0;
571 struct free_area *area;
572 struct list_head *curr;
573
574 area = &(zone->free_area[order]);
575
576 list_for_each(curr, &area->free_list[mtype])
577 freecount++;
578 seq_printf(m, "%6lu ", freecount);
579 }
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700580 seq_putc(m, '\n');
581 }
Mel Gorman467c9962007-10-16 01:26:02 -0700582}
583
584/* Print out the free pages at each order for each migatetype */
585static int pagetypeinfo_showfree(struct seq_file *m, void *arg)
586{
587 int order;
588 pg_data_t *pgdat = (pg_data_t *)arg;
589
590 /* Print header */
591 seq_printf(m, "%-43s ", "Free pages count per migrate type at order");
592 for (order = 0; order < MAX_ORDER; ++order)
593 seq_printf(m, "%6d ", order);
594 seq_putc(m, '\n');
595
596 walk_zones_in_node(m, pgdat, pagetypeinfo_showfree_print);
597
598 return 0;
599}
600
601static void pagetypeinfo_showblockcount_print(struct seq_file *m,
602 pg_data_t *pgdat, struct zone *zone)
603{
604 int mtype;
605 unsigned long pfn;
606 unsigned long start_pfn = zone->zone_start_pfn;
607 unsigned long end_pfn = start_pfn + zone->spanned_pages;
608 unsigned long count[MIGRATE_TYPES] = { 0, };
609
610 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
611 struct page *page;
612
613 if (!pfn_valid(pfn))
614 continue;
615
616 page = pfn_to_page(pfn);
Mel Gormaneb335752009-05-13 17:34:48 +0100617
618 /* Watch for unexpected holes punched in the memmap */
619 if (!memmap_valid_within(pfn, page, zone))
Mel Gormane80d6a22008-08-14 11:10:14 +0100620 continue;
Mel Gormaneb335752009-05-13 17:34:48 +0100621
Mel Gorman467c9962007-10-16 01:26:02 -0700622 mtype = get_pageblock_migratetype(page);
623
Mel Gormane80d6a22008-08-14 11:10:14 +0100624 if (mtype < MIGRATE_TYPES)
625 count[mtype]++;
Mel Gorman467c9962007-10-16 01:26:02 -0700626 }
627
628 /* Print counts */
629 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
630 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
631 seq_printf(m, "%12lu ", count[mtype]);
632 seq_putc(m, '\n');
633}
634
635/* Print out the free pages at each order for each migratetype */
636static int pagetypeinfo_showblockcount(struct seq_file *m, void *arg)
637{
638 int mtype;
639 pg_data_t *pgdat = (pg_data_t *)arg;
640
641 seq_printf(m, "\n%-23s", "Number of blocks type ");
642 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
643 seq_printf(m, "%12s ", migratetype_names[mtype]);
644 seq_putc(m, '\n');
645 walk_zones_in_node(m, pgdat, pagetypeinfo_showblockcount_print);
646
647 return 0;
648}
649
650/*
651 * This prints out statistics in relation to grouping pages by mobility.
652 * It is expensive to collect so do not constantly read the file.
653 */
654static int pagetypeinfo_show(struct seq_file *m, void *arg)
655{
656 pg_data_t *pgdat = (pg_data_t *)arg;
657
KOSAKI Motohiro41b25a32008-04-30 00:52:13 -0700658 /* check memoryless node */
659 if (!node_state(pgdat->node_id, N_HIGH_MEMORY))
660 return 0;
661
Mel Gorman467c9962007-10-16 01:26:02 -0700662 seq_printf(m, "Page block order: %d\n", pageblock_order);
663 seq_printf(m, "Pages per block: %lu\n", pageblock_nr_pages);
664 seq_putc(m, '\n');
665 pagetypeinfo_showfree(m, pgdat);
666 pagetypeinfo_showblockcount(m, pgdat);
667
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700668 return 0;
669}
670
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400671static const struct seq_operations fragmentation_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700672 .start = frag_start,
673 .next = frag_next,
674 .stop = frag_stop,
675 .show = frag_show,
676};
677
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400678static int fragmentation_open(struct inode *inode, struct file *file)
679{
680 return seq_open(file, &fragmentation_op);
681}
682
683static const struct file_operations fragmentation_file_operations = {
684 .open = fragmentation_open,
685 .read = seq_read,
686 .llseek = seq_lseek,
687 .release = seq_release,
688};
689
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +0400690static const struct seq_operations pagetypeinfo_op = {
Mel Gorman467c9962007-10-16 01:26:02 -0700691 .start = frag_start,
692 .next = frag_next,
693 .stop = frag_stop,
694 .show = pagetypeinfo_show,
695};
696
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +0400697static int pagetypeinfo_open(struct inode *inode, struct file *file)
698{
699 return seq_open(file, &pagetypeinfo_op);
700}
701
702static const struct file_operations pagetypeinfo_file_ops = {
703 .open = pagetypeinfo_open,
704 .read = seq_read,
705 .llseek = seq_lseek,
706 .release = seq_release,
707};
708
Christoph Lameter4b51d662007-02-10 01:43:10 -0800709#ifdef CONFIG_ZONE_DMA
710#define TEXT_FOR_DMA(xx) xx "_dma",
711#else
712#define TEXT_FOR_DMA(xx)
713#endif
714
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700715#ifdef CONFIG_ZONE_DMA32
716#define TEXT_FOR_DMA32(xx) xx "_dma32",
717#else
718#define TEXT_FOR_DMA32(xx)
719#endif
720
721#ifdef CONFIG_HIGHMEM
722#define TEXT_FOR_HIGHMEM(xx) xx "_high",
723#else
724#define TEXT_FOR_HIGHMEM(xx)
725#endif
726
Christoph Lameter4b51d662007-02-10 01:43:10 -0800727#define TEXTS_FOR_ZONES(xx) TEXT_FOR_DMA(xx) TEXT_FOR_DMA32(xx) xx "_normal", \
Mel Gorman2a1e2742007-07-17 04:03:12 -0700728 TEXT_FOR_HIGHMEM(xx) xx "_movable",
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700729
Helge Deller15ad7cd2006-12-06 20:40:36 -0800730static const char * const vmstat_text[] = {
Christoph Lameter2244b952006-06-30 01:55:33 -0700731 /* Zoned VM counters */
Christoph Lameterd23ad422007-02-10 01:43:02 -0800732 "nr_free_pages",
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700733 "nr_inactive_anon",
734 "nr_active_anon",
735 "nr_inactive_file",
736 "nr_active_file",
Lee Schermerhorn7b854122008-10-18 20:26:40 -0700737 "nr_unevictable",
Nick Piggin5344b7e2008-10-18 20:26:51 -0700738 "nr_mlock",
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700739 "nr_anon_pages",
Christoph Lameter65ba55f2006-06-30 01:55:34 -0700740 "nr_mapped",
Christoph Lameter347ce432006-06-30 01:55:35 -0700741 "nr_file_pages",
Christoph Lameter51ed4492007-02-10 01:43:02 -0800742 "nr_dirty",
743 "nr_writeback",
Christoph Lameter972d1a72006-09-25 23:31:51 -0700744 "nr_slab_reclaimable",
745 "nr_slab_unreclaimable",
Christoph Lameterdf849a12006-06-30 01:55:38 -0700746 "nr_page_table_pages",
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -0700747 "nr_kernel_stack",
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700748 "nr_unstable",
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700749 "nr_bounce",
Andrew Mortone129b5c2006-09-27 01:50:00 -0700750 "nr_vmscan_write",
Miklos Szeredifc3ba692008-04-30 00:54:38 -0700751 "nr_writeback_temp",
KOSAKI Motohiroa7312862009-09-21 17:01:37 -0700752 "nr_isolated_anon",
753 "nr_isolated_file",
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700754 "nr_shmem",
Michael Rubinea941f02010-10-26 14:21:35 -0700755 "nr_dirtied",
756 "nr_written",
757
Christoph Lameterca889e62006-06-30 01:55:44 -0700758#ifdef CONFIG_NUMA
759 "numa_hit",
760 "numa_miss",
761 "numa_foreign",
762 "numa_interleave",
763 "numa_local",
764 "numa_other",
765#endif
Wu Fengguange1726622010-12-02 14:31:13 -0800766 "nr_dirty_threshold",
767 "nr_dirty_background_threshold",
Christoph Lameterca889e62006-06-30 01:55:44 -0700768
Christoph Lameterf8891e52006-06-30 01:55:45 -0700769#ifdef CONFIG_VM_EVENT_COUNTERS
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700770 "pgpgin",
771 "pgpgout",
772 "pswpin",
773 "pswpout",
774
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700775 TEXTS_FOR_ZONES("pgalloc")
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700776
777 "pgfree",
778 "pgactivate",
779 "pgdeactivate",
780
781 "pgfault",
782 "pgmajfault",
783
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700784 TEXTS_FOR_ZONES("pgrefill")
785 TEXTS_FOR_ZONES("pgsteal")
786 TEXTS_FOR_ZONES("pgscan_kswapd")
787 TEXTS_FOR_ZONES("pgscan_direct")
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700788
Mel Gorman24cf725182009-06-16 15:33:23 -0700789#ifdef CONFIG_NUMA
790 "zone_reclaim_failed",
791#endif
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700792 "pginodesteal",
793 "slabs_scanned",
794 "kswapd_steal",
795 "kswapd_inodesteal",
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -0800796 "kswapd_low_wmark_hit_quickly",
797 "kswapd_high_wmark_hit_quickly",
798 "kswapd_skip_congestion_wait",
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700799 "pageoutrun",
800 "allocstall",
801
802 "pgrotated",
Mel Gorman748446b2010-05-24 14:32:27 -0700803
804#ifdef CONFIG_COMPACTION
805 "compact_blocks_moved",
806 "compact_pages_moved",
807 "compact_pagemigrate_failed",
Mel Gorman56de7262010-05-24 14:32:30 -0700808 "compact_stall",
809 "compact_fail",
810 "compact_success",
Mel Gorman748446b2010-05-24 14:32:27 -0700811#endif
812
Adam Litke3b116302008-04-28 02:13:06 -0700813#ifdef CONFIG_HUGETLB_PAGE
814 "htlb_buddy_alloc_success",
815 "htlb_buddy_alloc_fail",
816#endif
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700817 "unevictable_pgs_culled",
818 "unevictable_pgs_scanned",
819 "unevictable_pgs_rescued",
Nick Piggin5344b7e2008-10-18 20:26:51 -0700820 "unevictable_pgs_mlocked",
821 "unevictable_pgs_munlocked",
822 "unevictable_pgs_cleared",
823 "unevictable_pgs_stranded",
Lee Schermerhorn985737c2008-10-18 20:26:53 -0700824 "unevictable_pgs_mlockfreed",
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700825#endif
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700826};
827
Mel Gorman467c9962007-10-16 01:26:02 -0700828static void zoneinfo_show_print(struct seq_file *m, pg_data_t *pgdat,
829 struct zone *zone)
830{
831 int i;
832 seq_printf(m, "Node %d, zone %8s", pgdat->node_id, zone->name);
833 seq_printf(m,
834 "\n pages free %lu"
835 "\n min %lu"
836 "\n low %lu"
837 "\n high %lu"
Wu Fengguang08d9ae72009-06-16 15:32:30 -0700838 "\n scanned %lu"
Mel Gorman467c9962007-10-16 01:26:02 -0700839 "\n spanned %lu"
840 "\n present %lu",
Christoph Lameteraa454842010-09-09 16:38:17 -0700841 zone_nr_free_pages(zone),
Mel Gorman41858962009-06-16 15:32:12 -0700842 min_wmark_pages(zone),
843 low_wmark_pages(zone),
844 high_wmark_pages(zone),
Mel Gorman467c9962007-10-16 01:26:02 -0700845 zone->pages_scanned,
Mel Gorman467c9962007-10-16 01:26:02 -0700846 zone->spanned_pages,
847 zone->present_pages);
848
849 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
850 seq_printf(m, "\n %-12s %lu", vmstat_text[i],
851 zone_page_state(zone, i));
852
853 seq_printf(m,
854 "\n protection: (%lu",
855 zone->lowmem_reserve[0]);
856 for (i = 1; i < ARRAY_SIZE(zone->lowmem_reserve); i++)
857 seq_printf(m, ", %lu", zone->lowmem_reserve[i]);
858 seq_printf(m,
859 ")"
860 "\n pagesets");
861 for_each_online_cpu(i) {
862 struct per_cpu_pageset *pageset;
Mel Gorman467c9962007-10-16 01:26:02 -0700863
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900864 pageset = per_cpu_ptr(zone->pageset, i);
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800865 seq_printf(m,
866 "\n cpu: %i"
867 "\n count: %i"
868 "\n high: %i"
869 "\n batch: %i",
870 i,
871 pageset->pcp.count,
872 pageset->pcp.high,
873 pageset->pcp.batch);
Mel Gorman467c9962007-10-16 01:26:02 -0700874#ifdef CONFIG_SMP
875 seq_printf(m, "\n vm stats threshold: %d",
876 pageset->stat_threshold);
877#endif
878 }
879 seq_printf(m,
880 "\n all_unreclaimable: %u"
Rik van Riel556adec2008-10-18 20:26:34 -0700881 "\n start_pfn: %lu"
882 "\n inactive_ratio: %u",
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -0800883 zone->all_unreclaimable,
Rik van Riel556adec2008-10-18 20:26:34 -0700884 zone->zone_start_pfn,
885 zone->inactive_ratio);
Mel Gorman467c9962007-10-16 01:26:02 -0700886 seq_putc(m, '\n');
887}
888
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700889/*
890 * Output information about zones in @pgdat.
891 */
892static int zoneinfo_show(struct seq_file *m, void *arg)
893{
Mel Gorman467c9962007-10-16 01:26:02 -0700894 pg_data_t *pgdat = (pg_data_t *)arg;
895 walk_zones_in_node(m, pgdat, zoneinfo_show_print);
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700896 return 0;
897}
898
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +0400899static const struct seq_operations zoneinfo_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700900 .start = frag_start, /* iterate over all zones. The same as in
901 * fragmentation. */
902 .next = frag_next,
903 .stop = frag_stop,
904 .show = zoneinfo_show,
905};
906
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +0400907static int zoneinfo_open(struct inode *inode, struct file *file)
908{
909 return seq_open(file, &zoneinfo_op);
910}
911
912static const struct file_operations proc_zoneinfo_file_operations = {
913 .open = zoneinfo_open,
914 .read = seq_read,
915 .llseek = seq_lseek,
916 .release = seq_release,
917};
918
Michael Rubin79da8262010-10-26 14:21:36 -0700919enum writeback_stat_item {
920 NR_DIRTY_THRESHOLD,
921 NR_DIRTY_BG_THRESHOLD,
922 NR_VM_WRITEBACK_STAT_ITEMS,
923};
924
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700925static void *vmstat_start(struct seq_file *m, loff_t *pos)
926{
Christoph Lameter2244b952006-06-30 01:55:33 -0700927 unsigned long *v;
Michael Rubin79da8262010-10-26 14:21:36 -0700928 int i, stat_items_size;
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700929
930 if (*pos >= ARRAY_SIZE(vmstat_text))
931 return NULL;
Michael Rubin79da8262010-10-26 14:21:36 -0700932 stat_items_size = NR_VM_ZONE_STAT_ITEMS * sizeof(unsigned long) +
933 NR_VM_WRITEBACK_STAT_ITEMS * sizeof(unsigned long);
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700934
Christoph Lameterf8891e52006-06-30 01:55:45 -0700935#ifdef CONFIG_VM_EVENT_COUNTERS
Michael Rubin79da8262010-10-26 14:21:36 -0700936 stat_items_size += sizeof(struct vm_event_state);
Christoph Lameterf8891e52006-06-30 01:55:45 -0700937#endif
Michael Rubin79da8262010-10-26 14:21:36 -0700938
939 v = kmalloc(stat_items_size, GFP_KERNEL);
Christoph Lameter2244b952006-06-30 01:55:33 -0700940 m->private = v;
941 if (!v)
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700942 return ERR_PTR(-ENOMEM);
Christoph Lameter2244b952006-06-30 01:55:33 -0700943 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
944 v[i] = global_page_state(i);
Michael Rubin79da8262010-10-26 14:21:36 -0700945 v += NR_VM_ZONE_STAT_ITEMS;
946
947 global_dirty_limits(v + NR_DIRTY_BG_THRESHOLD,
948 v + NR_DIRTY_THRESHOLD);
949 v += NR_VM_WRITEBACK_STAT_ITEMS;
950
Christoph Lameterf8891e52006-06-30 01:55:45 -0700951#ifdef CONFIG_VM_EVENT_COUNTERS
Michael Rubin79da8262010-10-26 14:21:36 -0700952 all_vm_events(v);
953 v[PGPGIN] /= 2; /* sectors -> kbytes */
954 v[PGPGOUT] /= 2;
Christoph Lameterf8891e52006-06-30 01:55:45 -0700955#endif
Wu Fengguangff8b16d2010-11-04 01:56:49 +0800956 return (unsigned long *)m->private + *pos;
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700957}
958
959static void *vmstat_next(struct seq_file *m, void *arg, loff_t *pos)
960{
961 (*pos)++;
962 if (*pos >= ARRAY_SIZE(vmstat_text))
963 return NULL;
964 return (unsigned long *)m->private + *pos;
965}
966
967static int vmstat_show(struct seq_file *m, void *arg)
968{
969 unsigned long *l = arg;
970 unsigned long off = l - (unsigned long *)m->private;
971
972 seq_printf(m, "%s %lu\n", vmstat_text[off], *l);
973 return 0;
974}
975
976static void vmstat_stop(struct seq_file *m, void *arg)
977{
978 kfree(m->private);
979 m->private = NULL;
980}
981
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +0400982static const struct seq_operations vmstat_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700983 .start = vmstat_start,
984 .next = vmstat_next,
985 .stop = vmstat_stop,
986 .show = vmstat_show,
987};
988
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +0400989static int vmstat_open(struct inode *inode, struct file *file)
990{
991 return seq_open(file, &vmstat_op);
992}
993
994static const struct file_operations proc_vmstat_file_operations = {
995 .open = vmstat_open,
996 .read = seq_read,
997 .llseek = seq_lseek,
998 .release = seq_release,
999};
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001000#endif /* CONFIG_PROC_FS */
1001
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001002#ifdef CONFIG_SMP
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001003static DEFINE_PER_CPU(struct delayed_work, vmstat_work);
Christoph Lameter77461ab2007-05-09 02:35:13 -07001004int sysctl_stat_interval __read_mostly = HZ;
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001005
1006static void vmstat_update(struct work_struct *w)
1007{
1008 refresh_cpu_vm_stats(smp_processor_id());
Christoph Lameter77461ab2007-05-09 02:35:13 -07001009 schedule_delayed_work(&__get_cpu_var(vmstat_work),
Anton Blanchard98f4ebb2009-04-02 16:56:39 -07001010 round_jiffies_relative(sysctl_stat_interval));
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001011}
1012
Randy Dunlap42614fc2007-11-14 17:00:12 -08001013static void __cpuinit start_cpu_timer(int cpu)
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001014{
Tejun Heo1871e522009-10-29 22:34:13 +09001015 struct delayed_work *work = &per_cpu(vmstat_work, cpu);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001016
Tejun Heo1871e522009-10-29 22:34:13 +09001017 INIT_DELAYED_WORK_DEFERRABLE(work, vmstat_update);
1018 schedule_delayed_work_on(cpu, work, __round_jiffies_relative(HZ, cpu));
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001019}
1020
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001021/*
1022 * Use the cpu notifier to insure that the thresholds are recalculated
1023 * when necessary.
1024 */
1025static int __cpuinit vmstat_cpuup_callback(struct notifier_block *nfb,
1026 unsigned long action,
1027 void *hcpu)
1028{
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001029 long cpu = (long)hcpu;
1030
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001031 switch (action) {
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001032 case CPU_ONLINE:
1033 case CPU_ONLINE_FROZEN:
KAMEZAWA Hiroyuki5ee28a42010-09-09 16:38:14 -07001034 refresh_zone_stat_thresholds();
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001035 start_cpu_timer(cpu);
Christoph Lameterad596922010-01-05 15:34:51 +09001036 node_set_state(cpu_to_node(cpu), N_CPU);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001037 break;
1038 case CPU_DOWN_PREPARE:
1039 case CPU_DOWN_PREPARE_FROZEN:
1040 cancel_rearming_delayed_work(&per_cpu(vmstat_work, cpu));
1041 per_cpu(vmstat_work, cpu).work.func = NULL;
1042 break;
1043 case CPU_DOWN_FAILED:
1044 case CPU_DOWN_FAILED_FROZEN:
1045 start_cpu_timer(cpu);
1046 break;
Andy Whitcroftce421c72006-12-06 20:33:08 -08001047 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001048 case CPU_DEAD_FROZEN:
Andy Whitcroftce421c72006-12-06 20:33:08 -08001049 refresh_zone_stat_thresholds();
1050 break;
1051 default:
1052 break;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001053 }
1054 return NOTIFY_OK;
1055}
1056
1057static struct notifier_block __cpuinitdata vmstat_notifier =
1058 { &vmstat_cpuup_callback, NULL, 0 };
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001059#endif
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001060
Adrian Bunke2fc88d2007-10-16 01:26:27 -07001061static int __init setup_vmstat(void)
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001062{
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001063#ifdef CONFIG_SMP
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001064 int cpu;
1065
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001066 refresh_zone_stat_thresholds();
1067 register_cpu_notifier(&vmstat_notifier);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001068
1069 for_each_online_cpu(cpu)
1070 start_cpu_timer(cpu);
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001071#endif
1072#ifdef CONFIG_PROC_FS
1073 proc_create("buddyinfo", S_IRUGO, NULL, &fragmentation_file_operations);
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +04001074 proc_create("pagetypeinfo", S_IRUGO, NULL, &pagetypeinfo_file_ops);
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +04001075 proc_create("vmstat", S_IRUGO, NULL, &proc_vmstat_file_operations);
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +04001076 proc_create("zoneinfo", S_IRUGO, NULL, &proc_zoneinfo_file_operations);
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001077#endif
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001078 return 0;
1079}
1080module_init(setup_vmstat)
Mel Gormand7a57522010-05-24 14:32:25 -07001081
1082#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_COMPACTION)
1083#include <linux/debugfs.h>
1084
1085static struct dentry *extfrag_debug_root;
1086
1087/*
1088 * Return an index indicating how much of the available free memory is
1089 * unusable for an allocation of the requested size.
1090 */
1091static int unusable_free_index(unsigned int order,
1092 struct contig_page_info *info)
1093{
1094 /* No free memory is interpreted as all free memory is unusable */
1095 if (info->free_pages == 0)
1096 return 1000;
1097
1098 /*
1099 * Index should be a value between 0 and 1. Return a value to 3
1100 * decimal places.
1101 *
1102 * 0 => no fragmentation
1103 * 1 => high fragmentation
1104 */
1105 return div_u64((info->free_pages - (info->free_blocks_suitable << order)) * 1000ULL, info->free_pages);
1106
1107}
1108
1109static void unusable_show_print(struct seq_file *m,
1110 pg_data_t *pgdat, struct zone *zone)
1111{
1112 unsigned int order;
1113 int index;
1114 struct contig_page_info info;
1115
1116 seq_printf(m, "Node %d, zone %8s ",
1117 pgdat->node_id,
1118 zone->name);
1119 for (order = 0; order < MAX_ORDER; ++order) {
1120 fill_contig_page_info(zone, order, &info);
1121 index = unusable_free_index(order, &info);
1122 seq_printf(m, "%d.%03d ", index / 1000, index % 1000);
1123 }
1124
1125 seq_putc(m, '\n');
1126}
1127
1128/*
1129 * Display unusable free space index
1130 *
1131 * The unusable free space index measures how much of the available free
1132 * memory cannot be used to satisfy an allocation of a given size and is a
1133 * value between 0 and 1. The higher the value, the more of free memory is
1134 * unusable and by implication, the worse the external fragmentation is. This
1135 * can be expressed as a percentage by multiplying by 100.
1136 */
1137static int unusable_show(struct seq_file *m, void *arg)
1138{
1139 pg_data_t *pgdat = (pg_data_t *)arg;
1140
1141 /* check memoryless node */
1142 if (!node_state(pgdat->node_id, N_HIGH_MEMORY))
1143 return 0;
1144
1145 walk_zones_in_node(m, pgdat, unusable_show_print);
1146
1147 return 0;
1148}
1149
1150static const struct seq_operations unusable_op = {
1151 .start = frag_start,
1152 .next = frag_next,
1153 .stop = frag_stop,
1154 .show = unusable_show,
1155};
1156
1157static int unusable_open(struct inode *inode, struct file *file)
1158{
1159 return seq_open(file, &unusable_op);
1160}
1161
1162static const struct file_operations unusable_file_ops = {
1163 .open = unusable_open,
1164 .read = seq_read,
1165 .llseek = seq_lseek,
1166 .release = seq_release,
1167};
1168
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001169static void extfrag_show_print(struct seq_file *m,
1170 pg_data_t *pgdat, struct zone *zone)
1171{
1172 unsigned int order;
1173 int index;
1174
1175 /* Alloc on stack as interrupts are disabled for zone walk */
1176 struct contig_page_info info;
1177
1178 seq_printf(m, "Node %d, zone %8s ",
1179 pgdat->node_id,
1180 zone->name);
1181 for (order = 0; order < MAX_ORDER; ++order) {
1182 fill_contig_page_info(zone, order, &info);
Mel Gorman56de7262010-05-24 14:32:30 -07001183 index = __fragmentation_index(order, &info);
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001184 seq_printf(m, "%d.%03d ", index / 1000, index % 1000);
1185 }
1186
1187 seq_putc(m, '\n');
1188}
1189
1190/*
1191 * Display fragmentation index for orders that allocations would fail for
1192 */
1193static int extfrag_show(struct seq_file *m, void *arg)
1194{
1195 pg_data_t *pgdat = (pg_data_t *)arg;
1196
1197 walk_zones_in_node(m, pgdat, extfrag_show_print);
1198
1199 return 0;
1200}
1201
1202static const struct seq_operations extfrag_op = {
1203 .start = frag_start,
1204 .next = frag_next,
1205 .stop = frag_stop,
1206 .show = extfrag_show,
1207};
1208
1209static int extfrag_open(struct inode *inode, struct file *file)
1210{
1211 return seq_open(file, &extfrag_op);
1212}
1213
1214static const struct file_operations extfrag_file_ops = {
1215 .open = extfrag_open,
1216 .read = seq_read,
1217 .llseek = seq_lseek,
1218 .release = seq_release,
1219};
1220
Mel Gormand7a57522010-05-24 14:32:25 -07001221static int __init extfrag_debug_init(void)
1222{
1223 extfrag_debug_root = debugfs_create_dir("extfrag", NULL);
1224 if (!extfrag_debug_root)
1225 return -ENOMEM;
1226
1227 if (!debugfs_create_file("unusable_index", 0444,
1228 extfrag_debug_root, NULL, &unusable_file_ops))
1229 return -ENOMEM;
1230
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001231 if (!debugfs_create_file("extfrag_index", 0444,
1232 extfrag_debug_root, NULL, &extfrag_file_ops))
1233 return -ENOMEM;
1234
Mel Gormand7a57522010-05-24 14:32:25 -07001235 return 0;
1236}
1237
1238module_init(extfrag_debug_init);
1239#endif