blob: 3ad909d9600f76ad2dc710d5940ad470a26f5d8a [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 Lameter12938a92010-12-06 11:16:20 -0600230 __this_cpu_inc(*p);
Christoph Lameter2244b952006-06-30 01:55:33 -0700231
Christoph Lameter12938a92010-12-06 11:16:20 -0600232 v = __this_cpu_read(*p);
233 t = __this_cpu_read(pcp->stat_threshold);
234 if (unlikely(v > t)) {
235 s8 overstep = t >> 1;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700236
Christoph Lameter12938a92010-12-06 11:16:20 -0600237 zone_page_state_add(v + overstep, zone, item);
238 __this_cpu_write(*p, -overstep);
Christoph Lameter2244b952006-06-30 01:55:33 -0700239 }
240}
Christoph Lameterca889e62006-06-30 01:55:44 -0700241
242void __inc_zone_page_state(struct page *page, enum zone_stat_item item)
243{
244 __inc_zone_state(page_zone(page), item);
245}
Christoph Lameter2244b952006-06-30 01:55:33 -0700246EXPORT_SYMBOL(__inc_zone_page_state);
247
Christoph Lameterc8785382007-02-10 01:43:01 -0800248void __dec_zone_state(struct zone *zone, enum zone_stat_item item)
Christoph Lameter2244b952006-06-30 01:55:33 -0700249{
Christoph Lameter12938a92010-12-06 11:16:20 -0600250 struct per_cpu_pageset __percpu *pcp = zone->pageset;
251 s8 __percpu *p = pcp->vm_stat_diff + item;
252 s8 v, t;
Christoph Lameter2244b952006-06-30 01:55:33 -0700253
Christoph Lameter12938a92010-12-06 11:16:20 -0600254 __this_cpu_dec(*p);
Christoph Lameter2244b952006-06-30 01:55:33 -0700255
Christoph Lameter12938a92010-12-06 11:16:20 -0600256 v = __this_cpu_read(*p);
257 t = __this_cpu_read(pcp->stat_threshold);
258 if (unlikely(v < - t)) {
259 s8 overstep = t >> 1;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700260
Christoph Lameter12938a92010-12-06 11:16:20 -0600261 zone_page_state_add(v - overstep, zone, item);
262 __this_cpu_write(*p, overstep);
Christoph Lameter2244b952006-06-30 01:55:33 -0700263 }
264}
Christoph Lameterc8785382007-02-10 01:43:01 -0800265
266void __dec_zone_page_state(struct page *page, enum zone_stat_item item)
267{
268 __dec_zone_state(page_zone(page), item);
269}
Christoph Lameter2244b952006-06-30 01:55:33 -0700270EXPORT_SYMBOL(__dec_zone_page_state);
271
Christoph Lameterca889e62006-06-30 01:55:44 -0700272void inc_zone_state(struct zone *zone, enum zone_stat_item item)
273{
274 unsigned long flags;
275
276 local_irq_save(flags);
277 __inc_zone_state(zone, item);
278 local_irq_restore(flags);
279}
280
Christoph Lameter2244b952006-06-30 01:55:33 -0700281void inc_zone_page_state(struct page *page, enum zone_stat_item item)
282{
283 unsigned long flags;
284 struct zone *zone;
Christoph Lameter2244b952006-06-30 01:55:33 -0700285
286 zone = page_zone(page);
287 local_irq_save(flags);
Christoph Lameterca889e62006-06-30 01:55:44 -0700288 __inc_zone_state(zone, item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700289 local_irq_restore(flags);
290}
291EXPORT_SYMBOL(inc_zone_page_state);
292
293void dec_zone_page_state(struct page *page, enum zone_stat_item item)
294{
295 unsigned long flags;
Christoph Lameter2244b952006-06-30 01:55:33 -0700296
Christoph Lameter2244b952006-06-30 01:55:33 -0700297 local_irq_save(flags);
Christoph Lametera302eb42006-08-31 21:27:34 -0700298 __dec_zone_page_state(page, item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700299 local_irq_restore(flags);
300}
301EXPORT_SYMBOL(dec_zone_page_state);
302
303/*
304 * Update the zone counters for one cpu.
Christoph Lameter4037d452007-05-09 02:35:14 -0700305 *
Christoph Lametera7f75e22008-02-04 22:29:16 -0800306 * The cpu specified must be either the current cpu or a processor that
307 * is not online. If it is the current cpu then the execution thread must
308 * be pinned to the current cpu.
309 *
Christoph Lameter4037d452007-05-09 02:35:14 -0700310 * Note that refresh_cpu_vm_stats strives to only access
311 * node local memory. The per cpu pagesets on remote zones are placed
312 * in the memory local to the processor using that pageset. So the
313 * loop over all zones will access a series of cachelines local to
314 * the processor.
315 *
316 * The call to zone_page_state_add updates the cachelines with the
317 * statistics in the remote zone struct as well as the global cachelines
318 * with the global counters. These could cause remote node cache line
319 * bouncing and will have to be only done when necessary.
Christoph Lameter2244b952006-06-30 01:55:33 -0700320 */
321void refresh_cpu_vm_stats(int cpu)
322{
323 struct zone *zone;
324 int i;
Christoph Lametera7f75e22008-02-04 22:29:16 -0800325 int global_diff[NR_VM_ZONE_STAT_ITEMS] = { 0, };
Christoph Lameter2244b952006-06-30 01:55:33 -0700326
KOSAKI Motohiroee99c712009-03-31 15:19:31 -0700327 for_each_populated_zone(zone) {
Christoph Lameter4037d452007-05-09 02:35:14 -0700328 struct per_cpu_pageset *p;
Christoph Lameter2244b952006-06-30 01:55:33 -0700329
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900330 p = per_cpu_ptr(zone->pageset, cpu);
Christoph Lameter2244b952006-06-30 01:55:33 -0700331
332 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
Christoph Lameter4037d452007-05-09 02:35:14 -0700333 if (p->vm_stat_diff[i]) {
Christoph Lametera7f75e22008-02-04 22:29:16 -0800334 unsigned long flags;
335 int v;
336
Christoph Lameter2244b952006-06-30 01:55:33 -0700337 local_irq_save(flags);
Christoph Lametera7f75e22008-02-04 22:29:16 -0800338 v = p->vm_stat_diff[i];
Christoph Lameter4037d452007-05-09 02:35:14 -0700339 p->vm_stat_diff[i] = 0;
Christoph Lametera7f75e22008-02-04 22:29:16 -0800340 local_irq_restore(flags);
341 atomic_long_add(v, &zone->vm_stat[i]);
342 global_diff[i] += v;
Christoph Lameter4037d452007-05-09 02:35:14 -0700343#ifdef CONFIG_NUMA
344 /* 3 seconds idle till flush */
345 p->expire = 3;
346#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700347 }
Dimitri Sivanich468fd622008-04-28 02:13:37 -0700348 cond_resched();
Christoph Lameter4037d452007-05-09 02:35:14 -0700349#ifdef CONFIG_NUMA
350 /*
351 * Deal with draining the remote pageset of this
352 * processor
353 *
354 * Check if there are pages remaining in this pageset
355 * if not then there is nothing to expire.
356 */
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800357 if (!p->expire || !p->pcp.count)
Christoph Lameter4037d452007-05-09 02:35:14 -0700358 continue;
359
360 /*
361 * We never drain zones local to this processor.
362 */
363 if (zone_to_nid(zone) == numa_node_id()) {
364 p->expire = 0;
365 continue;
366 }
367
368 p->expire--;
369 if (p->expire)
370 continue;
371
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800372 if (p->pcp.count)
373 drain_zone_pages(zone, &p->pcp);
Christoph Lameter4037d452007-05-09 02:35:14 -0700374#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700375 }
Christoph Lametera7f75e22008-02-04 22:29:16 -0800376
377 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
378 if (global_diff[i])
379 atomic_long_add(global_diff[i], &vm_stat[i]);
Christoph Lameter2244b952006-06-30 01:55:33 -0700380}
381
Christoph Lameter2244b952006-06-30 01:55:33 -0700382#endif
383
Christoph Lameterca889e62006-06-30 01:55:44 -0700384#ifdef CONFIG_NUMA
385/*
386 * zonelist = the list of zones passed to the allocator
387 * z = the zone from which the allocation occurred.
388 *
389 * Must be called with interrupts disabled.
390 */
Mel Gorman18ea7e72008-04-28 02:12:14 -0700391void zone_statistics(struct zone *preferred_zone, struct zone *z)
Christoph Lameterca889e62006-06-30 01:55:44 -0700392{
Mel Gorman18ea7e72008-04-28 02:12:14 -0700393 if (z->zone_pgdat == preferred_zone->zone_pgdat) {
Christoph Lameterca889e62006-06-30 01:55:44 -0700394 __inc_zone_state(z, NUMA_HIT);
395 } else {
396 __inc_zone_state(z, NUMA_MISS);
Mel Gorman18ea7e72008-04-28 02:12:14 -0700397 __inc_zone_state(preferred_zone, NUMA_FOREIGN);
Christoph Lameterca889e62006-06-30 01:55:44 -0700398 }
Christoph Lameter5d292342006-09-27 01:50:10 -0700399 if (z->node == numa_node_id())
Christoph Lameterca889e62006-06-30 01:55:44 -0700400 __inc_zone_state(z, NUMA_LOCAL);
401 else
402 __inc_zone_state(z, NUMA_OTHER);
403}
404#endif
405
Mel Gormand7a57522010-05-24 14:32:25 -0700406#ifdef CONFIG_COMPACTION
Namhyung Kim36deb0b2010-10-26 14:22:04 -0700407
Mel Gormand7a57522010-05-24 14:32:25 -0700408struct contig_page_info {
409 unsigned long free_pages;
410 unsigned long free_blocks_total;
411 unsigned long free_blocks_suitable;
412};
413
414/*
415 * Calculate the number of free pages in a zone, how many contiguous
416 * pages are free and how many are large enough to satisfy an allocation of
417 * the target size. Note that this function makes no attempt to estimate
418 * how many suitable free blocks there *might* be if MOVABLE pages were
419 * migrated. Calculating that is possible, but expensive and can be
420 * figured out from userspace
421 */
422static void fill_contig_page_info(struct zone *zone,
423 unsigned int suitable_order,
424 struct contig_page_info *info)
425{
426 unsigned int order;
427
428 info->free_pages = 0;
429 info->free_blocks_total = 0;
430 info->free_blocks_suitable = 0;
431
432 for (order = 0; order < MAX_ORDER; order++) {
433 unsigned long blocks;
434
435 /* Count number of free blocks */
436 blocks = zone->free_area[order].nr_free;
437 info->free_blocks_total += blocks;
438
439 /* Count free base pages */
440 info->free_pages += blocks << order;
441
442 /* Count the suitable free blocks */
443 if (order >= suitable_order)
444 info->free_blocks_suitable += blocks <<
445 (order - suitable_order);
446 }
447}
Mel Gormanf1a5ab12010-05-24 14:32:26 -0700448
449/*
450 * A fragmentation index only makes sense if an allocation of a requested
451 * size would fail. If that is true, the fragmentation index indicates
452 * whether external fragmentation or a lack of memory was the problem.
453 * The value can be used to determine if page reclaim or compaction
454 * should be used
455 */
Mel Gorman56de7262010-05-24 14:32:30 -0700456static int __fragmentation_index(unsigned int order, struct contig_page_info *info)
Mel Gormanf1a5ab12010-05-24 14:32:26 -0700457{
458 unsigned long requested = 1UL << order;
459
460 if (!info->free_blocks_total)
461 return 0;
462
463 /* Fragmentation index only makes sense when a request would fail */
464 if (info->free_blocks_suitable)
465 return -1000;
466
467 /*
468 * Index is between 0 and 1 so return within 3 decimal places
469 *
470 * 0 => allocation would fail due to lack of memory
471 * 1 => allocation would fail due to fragmentation
472 */
473 return 1000 - div_u64( (1000+(div_u64(info->free_pages * 1000ULL, requested))), info->free_blocks_total);
474}
Mel Gorman56de7262010-05-24 14:32:30 -0700475
476/* Same as __fragmentation index but allocs contig_page_info on stack */
477int fragmentation_index(struct zone *zone, unsigned int order)
478{
479 struct contig_page_info info;
480
481 fill_contig_page_info(zone, order, &info);
482 return __fragmentation_index(order, &info);
483}
Mel Gormand7a57522010-05-24 14:32:25 -0700484#endif
485
486#if defined(CONFIG_PROC_FS) || defined(CONFIG_COMPACTION)
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400487#include <linux/proc_fs.h>
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700488#include <linux/seq_file.h>
489
Mel Gorman467c9962007-10-16 01:26:02 -0700490static char * const migratetype_names[MIGRATE_TYPES] = {
491 "Unmovable",
492 "Reclaimable",
493 "Movable",
494 "Reserve",
KOSAKI Motohiro91446b02008-04-15 14:34:42 -0700495 "Isolate",
Mel Gorman467c9962007-10-16 01:26:02 -0700496};
497
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700498static void *frag_start(struct seq_file *m, loff_t *pos)
499{
500 pg_data_t *pgdat;
501 loff_t node = *pos;
502 for (pgdat = first_online_pgdat();
503 pgdat && node;
504 pgdat = next_online_pgdat(pgdat))
505 --node;
506
507 return pgdat;
508}
509
510static void *frag_next(struct seq_file *m, void *arg, loff_t *pos)
511{
512 pg_data_t *pgdat = (pg_data_t *)arg;
513
514 (*pos)++;
515 return next_online_pgdat(pgdat);
516}
517
518static void frag_stop(struct seq_file *m, void *arg)
519{
520}
521
Mel Gorman467c9962007-10-16 01:26:02 -0700522/* Walk all the zones in a node and print using a callback */
523static void walk_zones_in_node(struct seq_file *m, pg_data_t *pgdat,
524 void (*print)(struct seq_file *m, pg_data_t *, struct zone *))
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700525{
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700526 struct zone *zone;
527 struct zone *node_zones = pgdat->node_zones;
528 unsigned long flags;
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700529
530 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
531 if (!populated_zone(zone))
532 continue;
533
534 spin_lock_irqsave(&zone->lock, flags);
Mel Gorman467c9962007-10-16 01:26:02 -0700535 print(m, pgdat, zone);
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700536 spin_unlock_irqrestore(&zone->lock, flags);
Mel Gorman467c9962007-10-16 01:26:02 -0700537 }
538}
Mel Gormand7a57522010-05-24 14:32:25 -0700539#endif
Mel Gorman467c9962007-10-16 01:26:02 -0700540
Mel Gormand7a57522010-05-24 14:32:25 -0700541#ifdef CONFIG_PROC_FS
Mel Gorman467c9962007-10-16 01:26:02 -0700542static void frag_show_print(struct seq_file *m, pg_data_t *pgdat,
543 struct zone *zone)
544{
545 int order;
546
547 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
548 for (order = 0; order < MAX_ORDER; ++order)
549 seq_printf(m, "%6lu ", zone->free_area[order].nr_free);
550 seq_putc(m, '\n');
551}
552
553/*
554 * This walks the free areas for each zone.
555 */
556static int frag_show(struct seq_file *m, void *arg)
557{
558 pg_data_t *pgdat = (pg_data_t *)arg;
559 walk_zones_in_node(m, pgdat, frag_show_print);
560 return 0;
561}
562
563static void pagetypeinfo_showfree_print(struct seq_file *m,
564 pg_data_t *pgdat, struct zone *zone)
565{
566 int order, mtype;
567
568 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++) {
569 seq_printf(m, "Node %4d, zone %8s, type %12s ",
570 pgdat->node_id,
571 zone->name,
572 migratetype_names[mtype]);
573 for (order = 0; order < MAX_ORDER; ++order) {
574 unsigned long freecount = 0;
575 struct free_area *area;
576 struct list_head *curr;
577
578 area = &(zone->free_area[order]);
579
580 list_for_each(curr, &area->free_list[mtype])
581 freecount++;
582 seq_printf(m, "%6lu ", freecount);
583 }
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700584 seq_putc(m, '\n');
585 }
Mel Gorman467c9962007-10-16 01:26:02 -0700586}
587
588/* Print out the free pages at each order for each migatetype */
589static int pagetypeinfo_showfree(struct seq_file *m, void *arg)
590{
591 int order;
592 pg_data_t *pgdat = (pg_data_t *)arg;
593
594 /* Print header */
595 seq_printf(m, "%-43s ", "Free pages count per migrate type at order");
596 for (order = 0; order < MAX_ORDER; ++order)
597 seq_printf(m, "%6d ", order);
598 seq_putc(m, '\n');
599
600 walk_zones_in_node(m, pgdat, pagetypeinfo_showfree_print);
601
602 return 0;
603}
604
605static void pagetypeinfo_showblockcount_print(struct seq_file *m,
606 pg_data_t *pgdat, struct zone *zone)
607{
608 int mtype;
609 unsigned long pfn;
610 unsigned long start_pfn = zone->zone_start_pfn;
611 unsigned long end_pfn = start_pfn + zone->spanned_pages;
612 unsigned long count[MIGRATE_TYPES] = { 0, };
613
614 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
615 struct page *page;
616
617 if (!pfn_valid(pfn))
618 continue;
619
620 page = pfn_to_page(pfn);
Mel Gormaneb335752009-05-13 17:34:48 +0100621
622 /* Watch for unexpected holes punched in the memmap */
623 if (!memmap_valid_within(pfn, page, zone))
Mel Gormane80d6a22008-08-14 11:10:14 +0100624 continue;
Mel Gormaneb335752009-05-13 17:34:48 +0100625
Mel Gorman467c9962007-10-16 01:26:02 -0700626 mtype = get_pageblock_migratetype(page);
627
Mel Gormane80d6a22008-08-14 11:10:14 +0100628 if (mtype < MIGRATE_TYPES)
629 count[mtype]++;
Mel Gorman467c9962007-10-16 01:26:02 -0700630 }
631
632 /* Print counts */
633 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
634 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
635 seq_printf(m, "%12lu ", count[mtype]);
636 seq_putc(m, '\n');
637}
638
639/* Print out the free pages at each order for each migratetype */
640static int pagetypeinfo_showblockcount(struct seq_file *m, void *arg)
641{
642 int mtype;
643 pg_data_t *pgdat = (pg_data_t *)arg;
644
645 seq_printf(m, "\n%-23s", "Number of blocks type ");
646 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
647 seq_printf(m, "%12s ", migratetype_names[mtype]);
648 seq_putc(m, '\n');
649 walk_zones_in_node(m, pgdat, pagetypeinfo_showblockcount_print);
650
651 return 0;
652}
653
654/*
655 * This prints out statistics in relation to grouping pages by mobility.
656 * It is expensive to collect so do not constantly read the file.
657 */
658static int pagetypeinfo_show(struct seq_file *m, void *arg)
659{
660 pg_data_t *pgdat = (pg_data_t *)arg;
661
KOSAKI Motohiro41b25a32008-04-30 00:52:13 -0700662 /* check memoryless node */
663 if (!node_state(pgdat->node_id, N_HIGH_MEMORY))
664 return 0;
665
Mel Gorman467c9962007-10-16 01:26:02 -0700666 seq_printf(m, "Page block order: %d\n", pageblock_order);
667 seq_printf(m, "Pages per block: %lu\n", pageblock_nr_pages);
668 seq_putc(m, '\n');
669 pagetypeinfo_showfree(m, pgdat);
670 pagetypeinfo_showblockcount(m, pgdat);
671
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700672 return 0;
673}
674
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400675static const struct seq_operations fragmentation_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700676 .start = frag_start,
677 .next = frag_next,
678 .stop = frag_stop,
679 .show = frag_show,
680};
681
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400682static int fragmentation_open(struct inode *inode, struct file *file)
683{
684 return seq_open(file, &fragmentation_op);
685}
686
687static const struct file_operations fragmentation_file_operations = {
688 .open = fragmentation_open,
689 .read = seq_read,
690 .llseek = seq_lseek,
691 .release = seq_release,
692};
693
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +0400694static const struct seq_operations pagetypeinfo_op = {
Mel Gorman467c9962007-10-16 01:26:02 -0700695 .start = frag_start,
696 .next = frag_next,
697 .stop = frag_stop,
698 .show = pagetypeinfo_show,
699};
700
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +0400701static int pagetypeinfo_open(struct inode *inode, struct file *file)
702{
703 return seq_open(file, &pagetypeinfo_op);
704}
705
706static const struct file_operations pagetypeinfo_file_ops = {
707 .open = pagetypeinfo_open,
708 .read = seq_read,
709 .llseek = seq_lseek,
710 .release = seq_release,
711};
712
Christoph Lameter4b51d662007-02-10 01:43:10 -0800713#ifdef CONFIG_ZONE_DMA
714#define TEXT_FOR_DMA(xx) xx "_dma",
715#else
716#define TEXT_FOR_DMA(xx)
717#endif
718
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700719#ifdef CONFIG_ZONE_DMA32
720#define TEXT_FOR_DMA32(xx) xx "_dma32",
721#else
722#define TEXT_FOR_DMA32(xx)
723#endif
724
725#ifdef CONFIG_HIGHMEM
726#define TEXT_FOR_HIGHMEM(xx) xx "_high",
727#else
728#define TEXT_FOR_HIGHMEM(xx)
729#endif
730
Christoph Lameter4b51d662007-02-10 01:43:10 -0800731#define TEXTS_FOR_ZONES(xx) TEXT_FOR_DMA(xx) TEXT_FOR_DMA32(xx) xx "_normal", \
Mel Gorman2a1e2742007-07-17 04:03:12 -0700732 TEXT_FOR_HIGHMEM(xx) xx "_movable",
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700733
Helge Deller15ad7cd2006-12-06 20:40:36 -0800734static const char * const vmstat_text[] = {
Christoph Lameter2244b952006-06-30 01:55:33 -0700735 /* Zoned VM counters */
Christoph Lameterd23ad422007-02-10 01:43:02 -0800736 "nr_free_pages",
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700737 "nr_inactive_anon",
738 "nr_active_anon",
739 "nr_inactive_file",
740 "nr_active_file",
Lee Schermerhorn7b854122008-10-18 20:26:40 -0700741 "nr_unevictable",
Nick Piggin5344b7e2008-10-18 20:26:51 -0700742 "nr_mlock",
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700743 "nr_anon_pages",
Christoph Lameter65ba55f2006-06-30 01:55:34 -0700744 "nr_mapped",
Christoph Lameter347ce432006-06-30 01:55:35 -0700745 "nr_file_pages",
Christoph Lameter51ed4492007-02-10 01:43:02 -0800746 "nr_dirty",
747 "nr_writeback",
Christoph Lameter972d1a72006-09-25 23:31:51 -0700748 "nr_slab_reclaimable",
749 "nr_slab_unreclaimable",
Christoph Lameterdf849a12006-06-30 01:55:38 -0700750 "nr_page_table_pages",
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -0700751 "nr_kernel_stack",
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700752 "nr_unstable",
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700753 "nr_bounce",
Andrew Mortone129b5c2006-09-27 01:50:00 -0700754 "nr_vmscan_write",
Miklos Szeredifc3ba692008-04-30 00:54:38 -0700755 "nr_writeback_temp",
KOSAKI Motohiroa7312862009-09-21 17:01:37 -0700756 "nr_isolated_anon",
757 "nr_isolated_file",
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700758 "nr_shmem",
Michael Rubinea941f02010-10-26 14:21:35 -0700759 "nr_dirtied",
760 "nr_written",
761
Christoph Lameterca889e62006-06-30 01:55:44 -0700762#ifdef CONFIG_NUMA
763 "numa_hit",
764 "numa_miss",
765 "numa_foreign",
766 "numa_interleave",
767 "numa_local",
768 "numa_other",
769#endif
Wu Fengguange1726622010-12-02 14:31:13 -0800770 "nr_dirty_threshold",
771 "nr_dirty_background_threshold",
Christoph Lameterca889e62006-06-30 01:55:44 -0700772
Christoph Lameterf8891e52006-06-30 01:55:45 -0700773#ifdef CONFIG_VM_EVENT_COUNTERS
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700774 "pgpgin",
775 "pgpgout",
776 "pswpin",
777 "pswpout",
778
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700779 TEXTS_FOR_ZONES("pgalloc")
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700780
781 "pgfree",
782 "pgactivate",
783 "pgdeactivate",
784
785 "pgfault",
786 "pgmajfault",
787
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700788 TEXTS_FOR_ZONES("pgrefill")
789 TEXTS_FOR_ZONES("pgsteal")
790 TEXTS_FOR_ZONES("pgscan_kswapd")
791 TEXTS_FOR_ZONES("pgscan_direct")
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700792
Mel Gorman24cf725182009-06-16 15:33:23 -0700793#ifdef CONFIG_NUMA
794 "zone_reclaim_failed",
795#endif
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700796 "pginodesteal",
797 "slabs_scanned",
798 "kswapd_steal",
799 "kswapd_inodesteal",
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -0800800 "kswapd_low_wmark_hit_quickly",
801 "kswapd_high_wmark_hit_quickly",
802 "kswapd_skip_congestion_wait",
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700803 "pageoutrun",
804 "allocstall",
805
806 "pgrotated",
Mel Gorman748446b2010-05-24 14:32:27 -0700807
808#ifdef CONFIG_COMPACTION
809 "compact_blocks_moved",
810 "compact_pages_moved",
811 "compact_pagemigrate_failed",
Mel Gorman56de7262010-05-24 14:32:30 -0700812 "compact_stall",
813 "compact_fail",
814 "compact_success",
Mel Gorman748446b2010-05-24 14:32:27 -0700815#endif
816
Adam Litke3b116302008-04-28 02:13:06 -0700817#ifdef CONFIG_HUGETLB_PAGE
818 "htlb_buddy_alloc_success",
819 "htlb_buddy_alloc_fail",
820#endif
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700821 "unevictable_pgs_culled",
822 "unevictable_pgs_scanned",
823 "unevictable_pgs_rescued",
Nick Piggin5344b7e2008-10-18 20:26:51 -0700824 "unevictable_pgs_mlocked",
825 "unevictable_pgs_munlocked",
826 "unevictable_pgs_cleared",
827 "unevictable_pgs_stranded",
Lee Schermerhorn985737c2008-10-18 20:26:53 -0700828 "unevictable_pgs_mlockfreed",
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700829#endif
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700830};
831
Mel Gorman467c9962007-10-16 01:26:02 -0700832static void zoneinfo_show_print(struct seq_file *m, pg_data_t *pgdat,
833 struct zone *zone)
834{
835 int i;
836 seq_printf(m, "Node %d, zone %8s", pgdat->node_id, zone->name);
837 seq_printf(m,
838 "\n pages free %lu"
839 "\n min %lu"
840 "\n low %lu"
841 "\n high %lu"
Wu Fengguang08d9ae72009-06-16 15:32:30 -0700842 "\n scanned %lu"
Mel Gorman467c9962007-10-16 01:26:02 -0700843 "\n spanned %lu"
844 "\n present %lu",
Christoph Lameteraa454842010-09-09 16:38:17 -0700845 zone_nr_free_pages(zone),
Mel Gorman41858962009-06-16 15:32:12 -0700846 min_wmark_pages(zone),
847 low_wmark_pages(zone),
848 high_wmark_pages(zone),
Mel Gorman467c9962007-10-16 01:26:02 -0700849 zone->pages_scanned,
Mel Gorman467c9962007-10-16 01:26:02 -0700850 zone->spanned_pages,
851 zone->present_pages);
852
853 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
854 seq_printf(m, "\n %-12s %lu", vmstat_text[i],
855 zone_page_state(zone, i));
856
857 seq_printf(m,
858 "\n protection: (%lu",
859 zone->lowmem_reserve[0]);
860 for (i = 1; i < ARRAY_SIZE(zone->lowmem_reserve); i++)
861 seq_printf(m, ", %lu", zone->lowmem_reserve[i]);
862 seq_printf(m,
863 ")"
864 "\n pagesets");
865 for_each_online_cpu(i) {
866 struct per_cpu_pageset *pageset;
Mel Gorman467c9962007-10-16 01:26:02 -0700867
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900868 pageset = per_cpu_ptr(zone->pageset, i);
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800869 seq_printf(m,
870 "\n cpu: %i"
871 "\n count: %i"
872 "\n high: %i"
873 "\n batch: %i",
874 i,
875 pageset->pcp.count,
876 pageset->pcp.high,
877 pageset->pcp.batch);
Mel Gorman467c9962007-10-16 01:26:02 -0700878#ifdef CONFIG_SMP
879 seq_printf(m, "\n vm stats threshold: %d",
880 pageset->stat_threshold);
881#endif
882 }
883 seq_printf(m,
884 "\n all_unreclaimable: %u"
Rik van Riel556adec2008-10-18 20:26:34 -0700885 "\n start_pfn: %lu"
886 "\n inactive_ratio: %u",
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -0800887 zone->all_unreclaimable,
Rik van Riel556adec2008-10-18 20:26:34 -0700888 zone->zone_start_pfn,
889 zone->inactive_ratio);
Mel Gorman467c9962007-10-16 01:26:02 -0700890 seq_putc(m, '\n');
891}
892
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700893/*
894 * Output information about zones in @pgdat.
895 */
896static int zoneinfo_show(struct seq_file *m, void *arg)
897{
Mel Gorman467c9962007-10-16 01:26:02 -0700898 pg_data_t *pgdat = (pg_data_t *)arg;
899 walk_zones_in_node(m, pgdat, zoneinfo_show_print);
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700900 return 0;
901}
902
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +0400903static const struct seq_operations zoneinfo_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700904 .start = frag_start, /* iterate over all zones. The same as in
905 * fragmentation. */
906 .next = frag_next,
907 .stop = frag_stop,
908 .show = zoneinfo_show,
909};
910
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +0400911static int zoneinfo_open(struct inode *inode, struct file *file)
912{
913 return seq_open(file, &zoneinfo_op);
914}
915
916static const struct file_operations proc_zoneinfo_file_operations = {
917 .open = zoneinfo_open,
918 .read = seq_read,
919 .llseek = seq_lseek,
920 .release = seq_release,
921};
922
Michael Rubin79da8262010-10-26 14:21:36 -0700923enum writeback_stat_item {
924 NR_DIRTY_THRESHOLD,
925 NR_DIRTY_BG_THRESHOLD,
926 NR_VM_WRITEBACK_STAT_ITEMS,
927};
928
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700929static void *vmstat_start(struct seq_file *m, loff_t *pos)
930{
Christoph Lameter2244b952006-06-30 01:55:33 -0700931 unsigned long *v;
Michael Rubin79da8262010-10-26 14:21:36 -0700932 int i, stat_items_size;
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700933
934 if (*pos >= ARRAY_SIZE(vmstat_text))
935 return NULL;
Michael Rubin79da8262010-10-26 14:21:36 -0700936 stat_items_size = NR_VM_ZONE_STAT_ITEMS * sizeof(unsigned long) +
937 NR_VM_WRITEBACK_STAT_ITEMS * sizeof(unsigned long);
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700938
Christoph Lameterf8891e52006-06-30 01:55:45 -0700939#ifdef CONFIG_VM_EVENT_COUNTERS
Michael Rubin79da8262010-10-26 14:21:36 -0700940 stat_items_size += sizeof(struct vm_event_state);
Christoph Lameterf8891e52006-06-30 01:55:45 -0700941#endif
Michael Rubin79da8262010-10-26 14:21:36 -0700942
943 v = kmalloc(stat_items_size, GFP_KERNEL);
Christoph Lameter2244b952006-06-30 01:55:33 -0700944 m->private = v;
945 if (!v)
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700946 return ERR_PTR(-ENOMEM);
Christoph Lameter2244b952006-06-30 01:55:33 -0700947 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
948 v[i] = global_page_state(i);
Michael Rubin79da8262010-10-26 14:21:36 -0700949 v += NR_VM_ZONE_STAT_ITEMS;
950
951 global_dirty_limits(v + NR_DIRTY_BG_THRESHOLD,
952 v + NR_DIRTY_THRESHOLD);
953 v += NR_VM_WRITEBACK_STAT_ITEMS;
954
Christoph Lameterf8891e52006-06-30 01:55:45 -0700955#ifdef CONFIG_VM_EVENT_COUNTERS
Michael Rubin79da8262010-10-26 14:21:36 -0700956 all_vm_events(v);
957 v[PGPGIN] /= 2; /* sectors -> kbytes */
958 v[PGPGOUT] /= 2;
Christoph Lameterf8891e52006-06-30 01:55:45 -0700959#endif
Wu Fengguangff8b16d2010-11-04 01:56:49 +0800960 return (unsigned long *)m->private + *pos;
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700961}
962
963static void *vmstat_next(struct seq_file *m, void *arg, loff_t *pos)
964{
965 (*pos)++;
966 if (*pos >= ARRAY_SIZE(vmstat_text))
967 return NULL;
968 return (unsigned long *)m->private + *pos;
969}
970
971static int vmstat_show(struct seq_file *m, void *arg)
972{
973 unsigned long *l = arg;
974 unsigned long off = l - (unsigned long *)m->private;
975
976 seq_printf(m, "%s %lu\n", vmstat_text[off], *l);
977 return 0;
978}
979
980static void vmstat_stop(struct seq_file *m, void *arg)
981{
982 kfree(m->private);
983 m->private = NULL;
984}
985
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +0400986static const struct seq_operations vmstat_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700987 .start = vmstat_start,
988 .next = vmstat_next,
989 .stop = vmstat_stop,
990 .show = vmstat_show,
991};
992
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +0400993static int vmstat_open(struct inode *inode, struct file *file)
994{
995 return seq_open(file, &vmstat_op);
996}
997
998static const struct file_operations proc_vmstat_file_operations = {
999 .open = vmstat_open,
1000 .read = seq_read,
1001 .llseek = seq_lseek,
1002 .release = seq_release,
1003};
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001004#endif /* CONFIG_PROC_FS */
1005
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001006#ifdef CONFIG_SMP
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001007static DEFINE_PER_CPU(struct delayed_work, vmstat_work);
Christoph Lameter77461ab2007-05-09 02:35:13 -07001008int sysctl_stat_interval __read_mostly = HZ;
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001009
1010static void vmstat_update(struct work_struct *w)
1011{
1012 refresh_cpu_vm_stats(smp_processor_id());
Christoph Lameter77461ab2007-05-09 02:35:13 -07001013 schedule_delayed_work(&__get_cpu_var(vmstat_work),
Anton Blanchard98f4ebb2009-04-02 16:56:39 -07001014 round_jiffies_relative(sysctl_stat_interval));
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001015}
1016
Randy Dunlap42614fc2007-11-14 17:00:12 -08001017static void __cpuinit start_cpu_timer(int cpu)
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001018{
Tejun Heo1871e522009-10-29 22:34:13 +09001019 struct delayed_work *work = &per_cpu(vmstat_work, cpu);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001020
Tejun Heo1871e522009-10-29 22:34:13 +09001021 INIT_DELAYED_WORK_DEFERRABLE(work, vmstat_update);
1022 schedule_delayed_work_on(cpu, work, __round_jiffies_relative(HZ, cpu));
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001023}
1024
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001025/*
1026 * Use the cpu notifier to insure that the thresholds are recalculated
1027 * when necessary.
1028 */
1029static int __cpuinit vmstat_cpuup_callback(struct notifier_block *nfb,
1030 unsigned long action,
1031 void *hcpu)
1032{
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001033 long cpu = (long)hcpu;
1034
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001035 switch (action) {
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001036 case CPU_ONLINE:
1037 case CPU_ONLINE_FROZEN:
KAMEZAWA Hiroyuki5ee28a42010-09-09 16:38:14 -07001038 refresh_zone_stat_thresholds();
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001039 start_cpu_timer(cpu);
Christoph Lameterad596922010-01-05 15:34:51 +09001040 node_set_state(cpu_to_node(cpu), N_CPU);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001041 break;
1042 case CPU_DOWN_PREPARE:
1043 case CPU_DOWN_PREPARE_FROZEN:
1044 cancel_rearming_delayed_work(&per_cpu(vmstat_work, cpu));
1045 per_cpu(vmstat_work, cpu).work.func = NULL;
1046 break;
1047 case CPU_DOWN_FAILED:
1048 case CPU_DOWN_FAILED_FROZEN:
1049 start_cpu_timer(cpu);
1050 break;
Andy Whitcroftce421c72006-12-06 20:33:08 -08001051 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001052 case CPU_DEAD_FROZEN:
Andy Whitcroftce421c72006-12-06 20:33:08 -08001053 refresh_zone_stat_thresholds();
1054 break;
1055 default:
1056 break;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001057 }
1058 return NOTIFY_OK;
1059}
1060
1061static struct notifier_block __cpuinitdata vmstat_notifier =
1062 { &vmstat_cpuup_callback, NULL, 0 };
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001063#endif
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001064
Adrian Bunke2fc88d2007-10-16 01:26:27 -07001065static int __init setup_vmstat(void)
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001066{
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001067#ifdef CONFIG_SMP
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001068 int cpu;
1069
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001070 refresh_zone_stat_thresholds();
1071 register_cpu_notifier(&vmstat_notifier);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001072
1073 for_each_online_cpu(cpu)
1074 start_cpu_timer(cpu);
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001075#endif
1076#ifdef CONFIG_PROC_FS
1077 proc_create("buddyinfo", S_IRUGO, NULL, &fragmentation_file_operations);
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +04001078 proc_create("pagetypeinfo", S_IRUGO, NULL, &pagetypeinfo_file_ops);
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +04001079 proc_create("vmstat", S_IRUGO, NULL, &proc_vmstat_file_operations);
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +04001080 proc_create("zoneinfo", S_IRUGO, NULL, &proc_zoneinfo_file_operations);
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001081#endif
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001082 return 0;
1083}
1084module_init(setup_vmstat)
Mel Gormand7a57522010-05-24 14:32:25 -07001085
1086#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_COMPACTION)
1087#include <linux/debugfs.h>
1088
1089static struct dentry *extfrag_debug_root;
1090
1091/*
1092 * Return an index indicating how much of the available free memory is
1093 * unusable for an allocation of the requested size.
1094 */
1095static int unusable_free_index(unsigned int order,
1096 struct contig_page_info *info)
1097{
1098 /* No free memory is interpreted as all free memory is unusable */
1099 if (info->free_pages == 0)
1100 return 1000;
1101
1102 /*
1103 * Index should be a value between 0 and 1. Return a value to 3
1104 * decimal places.
1105 *
1106 * 0 => no fragmentation
1107 * 1 => high fragmentation
1108 */
1109 return div_u64((info->free_pages - (info->free_blocks_suitable << order)) * 1000ULL, info->free_pages);
1110
1111}
1112
1113static void unusable_show_print(struct seq_file *m,
1114 pg_data_t *pgdat, struct zone *zone)
1115{
1116 unsigned int order;
1117 int index;
1118 struct contig_page_info info;
1119
1120 seq_printf(m, "Node %d, zone %8s ",
1121 pgdat->node_id,
1122 zone->name);
1123 for (order = 0; order < MAX_ORDER; ++order) {
1124 fill_contig_page_info(zone, order, &info);
1125 index = unusable_free_index(order, &info);
1126 seq_printf(m, "%d.%03d ", index / 1000, index % 1000);
1127 }
1128
1129 seq_putc(m, '\n');
1130}
1131
1132/*
1133 * Display unusable free space index
1134 *
1135 * The unusable free space index measures how much of the available free
1136 * memory cannot be used to satisfy an allocation of a given size and is a
1137 * value between 0 and 1. The higher the value, the more of free memory is
1138 * unusable and by implication, the worse the external fragmentation is. This
1139 * can be expressed as a percentage by multiplying by 100.
1140 */
1141static int unusable_show(struct seq_file *m, void *arg)
1142{
1143 pg_data_t *pgdat = (pg_data_t *)arg;
1144
1145 /* check memoryless node */
1146 if (!node_state(pgdat->node_id, N_HIGH_MEMORY))
1147 return 0;
1148
1149 walk_zones_in_node(m, pgdat, unusable_show_print);
1150
1151 return 0;
1152}
1153
1154static const struct seq_operations unusable_op = {
1155 .start = frag_start,
1156 .next = frag_next,
1157 .stop = frag_stop,
1158 .show = unusable_show,
1159};
1160
1161static int unusable_open(struct inode *inode, struct file *file)
1162{
1163 return seq_open(file, &unusable_op);
1164}
1165
1166static const struct file_operations unusable_file_ops = {
1167 .open = unusable_open,
1168 .read = seq_read,
1169 .llseek = seq_lseek,
1170 .release = seq_release,
1171};
1172
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001173static void extfrag_show_print(struct seq_file *m,
1174 pg_data_t *pgdat, struct zone *zone)
1175{
1176 unsigned int order;
1177 int index;
1178
1179 /* Alloc on stack as interrupts are disabled for zone walk */
1180 struct contig_page_info info;
1181
1182 seq_printf(m, "Node %d, zone %8s ",
1183 pgdat->node_id,
1184 zone->name);
1185 for (order = 0; order < MAX_ORDER; ++order) {
1186 fill_contig_page_info(zone, order, &info);
Mel Gorman56de7262010-05-24 14:32:30 -07001187 index = __fragmentation_index(order, &info);
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001188 seq_printf(m, "%d.%03d ", index / 1000, index % 1000);
1189 }
1190
1191 seq_putc(m, '\n');
1192}
1193
1194/*
1195 * Display fragmentation index for orders that allocations would fail for
1196 */
1197static int extfrag_show(struct seq_file *m, void *arg)
1198{
1199 pg_data_t *pgdat = (pg_data_t *)arg;
1200
1201 walk_zones_in_node(m, pgdat, extfrag_show_print);
1202
1203 return 0;
1204}
1205
1206static const struct seq_operations extfrag_op = {
1207 .start = frag_start,
1208 .next = frag_next,
1209 .stop = frag_stop,
1210 .show = extfrag_show,
1211};
1212
1213static int extfrag_open(struct inode *inode, struct file *file)
1214{
1215 return seq_open(file, &extfrag_op);
1216}
1217
1218static const struct file_operations extfrag_file_ops = {
1219 .open = extfrag_open,
1220 .read = seq_read,
1221 .llseek = seq_lseek,
1222 .release = seq_release,
1223};
1224
Mel Gormand7a57522010-05-24 14:32:25 -07001225static int __init extfrag_debug_init(void)
1226{
1227 extfrag_debug_root = debugfs_create_dir("extfrag", NULL);
1228 if (!extfrag_debug_root)
1229 return -ENOMEM;
1230
1231 if (!debugfs_create_file("unusable_index", 0444,
1232 extfrag_debug_root, NULL, &unusable_file_ops))
1233 return -ENOMEM;
1234
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001235 if (!debugfs_create_file("extfrag_index", 0444,
1236 extfrag_debug_root, NULL, &extfrag_file_ops))
1237 return -ENOMEM;
1238
Mel Gormand7a57522010-05-24 14:32:25 -07001239 return 0;
1240}
1241
1242module_init(extfrag_debug_init);
1243#endif