blob: 7329eb8a08aa693222950214134b9ade5452e988 [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/*
Christoph Lameter2244b952006-06-30 01:55:33 -0700188 * Optimized increment and decrement functions.
189 *
190 * These are only for a single page and therefore can take a struct page *
191 * argument instead of struct zone *. This allows the inclusion of the code
192 * generated for page_zone(page) into the optimized functions.
193 *
194 * No overflow check is necessary and therefore the differential can be
195 * incremented or decremented in place which may allow the compilers to
196 * generate better code.
Christoph Lameter2244b952006-06-30 01:55:33 -0700197 * The increment or decrement is known and therefore one boundary check can
198 * be omitted.
199 *
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700200 * NOTE: These functions are very performance sensitive. Change only
201 * with care.
202 *
Christoph Lameter2244b952006-06-30 01:55:33 -0700203 * Some processors have inc/dec instructions that are atomic vs an interrupt.
204 * However, the code must first determine the differential location in a zone
205 * based on the processor number and then inc/dec the counter. There is no
206 * guarantee without disabling preemption that the processor will not change
207 * in between and therefore the atomicity vs. interrupt cannot be exploited
208 * in a useful way here.
209 */
Christoph Lameterc8785382007-02-10 01:43:01 -0800210void __inc_zone_state(struct zone *zone, enum zone_stat_item item)
Christoph Lameter2244b952006-06-30 01:55:33 -0700211{
Christoph Lameter12938a92010-12-06 11:16:20 -0600212 struct per_cpu_pageset __percpu *pcp = zone->pageset;
213 s8 __percpu *p = pcp->vm_stat_diff + item;
214 s8 v, t;
Christoph Lameter2244b952006-06-30 01:55:33 -0700215
Christoph Lameter908ee0f2010-12-06 11:40:02 -0600216 v = __this_cpu_inc_return(*p);
Christoph Lameter12938a92010-12-06 11:16:20 -0600217 t = __this_cpu_read(pcp->stat_threshold);
218 if (unlikely(v > t)) {
219 s8 overstep = t >> 1;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700220
Christoph Lameter12938a92010-12-06 11:16:20 -0600221 zone_page_state_add(v + overstep, zone, item);
222 __this_cpu_write(*p, -overstep);
Christoph Lameter2244b952006-06-30 01:55:33 -0700223 }
224}
Christoph Lameterca889e62006-06-30 01:55:44 -0700225
226void __inc_zone_page_state(struct page *page, enum zone_stat_item item)
227{
228 __inc_zone_state(page_zone(page), item);
229}
Christoph Lameter2244b952006-06-30 01:55:33 -0700230EXPORT_SYMBOL(__inc_zone_page_state);
231
Christoph Lameterc8785382007-02-10 01:43:01 -0800232void __dec_zone_state(struct zone *zone, enum zone_stat_item item)
Christoph Lameter2244b952006-06-30 01:55:33 -0700233{
Christoph Lameter12938a92010-12-06 11:16:20 -0600234 struct per_cpu_pageset __percpu *pcp = zone->pageset;
235 s8 __percpu *p = pcp->vm_stat_diff + item;
236 s8 v, t;
Christoph Lameter2244b952006-06-30 01:55:33 -0700237
Christoph Lameter908ee0f2010-12-06 11:40:02 -0600238 v = __this_cpu_dec_return(*p);
Christoph Lameter12938a92010-12-06 11:16:20 -0600239 t = __this_cpu_read(pcp->stat_threshold);
240 if (unlikely(v < - t)) {
241 s8 overstep = t >> 1;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700242
Christoph Lameter12938a92010-12-06 11:16:20 -0600243 zone_page_state_add(v - overstep, zone, item);
244 __this_cpu_write(*p, overstep);
Christoph Lameter2244b952006-06-30 01:55:33 -0700245 }
246}
Christoph Lameterc8785382007-02-10 01:43:01 -0800247
248void __dec_zone_page_state(struct page *page, enum zone_stat_item item)
249{
250 __dec_zone_state(page_zone(page), item);
251}
Christoph Lameter2244b952006-06-30 01:55:33 -0700252EXPORT_SYMBOL(__dec_zone_page_state);
253
Christoph Lameter7c839122010-12-14 10:28:46 -0600254#ifdef CONFIG_CMPXCHG_LOCAL
255/*
256 * If we have cmpxchg_local support then we do not need to incur the overhead
257 * that comes with local_irq_save/restore if we use this_cpu_cmpxchg.
258 *
259 * mod_state() modifies the zone counter state through atomic per cpu
260 * operations.
261 *
262 * Overstep mode specifies how overstep should handled:
263 * 0 No overstepping
264 * 1 Overstepping half of threshold
265 * -1 Overstepping minus half of threshold
266*/
267static inline void mod_state(struct zone *zone,
268 enum zone_stat_item item, int delta, int overstep_mode)
269{
270 struct per_cpu_pageset __percpu *pcp = zone->pageset;
271 s8 __percpu *p = pcp->vm_stat_diff + item;
272 long o, n, t, z;
273
274 do {
275 z = 0; /* overflow to zone counters */
276
277 /*
278 * The fetching of the stat_threshold is racy. We may apply
279 * a counter threshold to the wrong the cpu if we get
280 * rescheduled while executing here. However, the following
281 * will apply the threshold again and therefore bring the
282 * counter under the threshold.
283 */
284 t = this_cpu_read(pcp->stat_threshold);
285
286 o = this_cpu_read(*p);
287 n = delta + o;
288
289 if (n > t || n < -t) {
290 int os = overstep_mode * (t >> 1) ;
291
292 /* Overflow must be added to zone counters */
293 z = n + os;
294 n = -os;
295 }
296 } while (this_cpu_cmpxchg(*p, o, n) != o);
297
298 if (z)
299 zone_page_state_add(z, zone, item);
300}
301
302void mod_zone_page_state(struct zone *zone, enum zone_stat_item item,
303 int delta)
304{
305 mod_state(zone, item, delta, 0);
306}
307EXPORT_SYMBOL(mod_zone_page_state);
308
309void inc_zone_state(struct zone *zone, enum zone_stat_item item)
310{
311 mod_state(zone, item, 1, 1);
312}
313
314void inc_zone_page_state(struct page *page, enum zone_stat_item item)
315{
316 mod_state(page_zone(page), item, 1, 1);
317}
318EXPORT_SYMBOL(inc_zone_page_state);
319
320void dec_zone_page_state(struct page *page, enum zone_stat_item item)
321{
322 mod_state(page_zone(page), item, -1, -1);
323}
324EXPORT_SYMBOL(dec_zone_page_state);
325#else
326/*
327 * Use interrupt disable to serialize counter updates
328 */
329void mod_zone_page_state(struct zone *zone, enum zone_stat_item item,
330 int delta)
331{
332 unsigned long flags;
333
334 local_irq_save(flags);
335 __mod_zone_page_state(zone, item, delta);
336 local_irq_restore(flags);
337}
338EXPORT_SYMBOL(mod_zone_page_state);
339
Christoph Lameterca889e62006-06-30 01:55:44 -0700340void inc_zone_state(struct zone *zone, enum zone_stat_item item)
341{
342 unsigned long flags;
343
344 local_irq_save(flags);
345 __inc_zone_state(zone, item);
346 local_irq_restore(flags);
347}
348
Christoph Lameter2244b952006-06-30 01:55:33 -0700349void inc_zone_page_state(struct page *page, enum zone_stat_item item)
350{
351 unsigned long flags;
352 struct zone *zone;
Christoph Lameter2244b952006-06-30 01:55:33 -0700353
354 zone = page_zone(page);
355 local_irq_save(flags);
Christoph Lameterca889e62006-06-30 01:55:44 -0700356 __inc_zone_state(zone, item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700357 local_irq_restore(flags);
358}
359EXPORT_SYMBOL(inc_zone_page_state);
360
361void dec_zone_page_state(struct page *page, enum zone_stat_item item)
362{
363 unsigned long flags;
Christoph Lameter2244b952006-06-30 01:55:33 -0700364
Christoph Lameter2244b952006-06-30 01:55:33 -0700365 local_irq_save(flags);
Christoph Lametera302eb42006-08-31 21:27:34 -0700366 __dec_zone_page_state(page, item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700367 local_irq_restore(flags);
368}
369EXPORT_SYMBOL(dec_zone_page_state);
Christoph Lameter7c839122010-12-14 10:28:46 -0600370#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700371
372/*
373 * Update the zone counters for one cpu.
Christoph Lameter4037d452007-05-09 02:35:14 -0700374 *
Christoph Lametera7f75e22008-02-04 22:29:16 -0800375 * The cpu specified must be either the current cpu or a processor that
376 * is not online. If it is the current cpu then the execution thread must
377 * be pinned to the current cpu.
378 *
Christoph Lameter4037d452007-05-09 02:35:14 -0700379 * Note that refresh_cpu_vm_stats strives to only access
380 * node local memory. The per cpu pagesets on remote zones are placed
381 * in the memory local to the processor using that pageset. So the
382 * loop over all zones will access a series of cachelines local to
383 * the processor.
384 *
385 * The call to zone_page_state_add updates the cachelines with the
386 * statistics in the remote zone struct as well as the global cachelines
387 * with the global counters. These could cause remote node cache line
388 * bouncing and will have to be only done when necessary.
Christoph Lameter2244b952006-06-30 01:55:33 -0700389 */
390void refresh_cpu_vm_stats(int cpu)
391{
392 struct zone *zone;
393 int i;
Christoph Lametera7f75e22008-02-04 22:29:16 -0800394 int global_diff[NR_VM_ZONE_STAT_ITEMS] = { 0, };
Christoph Lameter2244b952006-06-30 01:55:33 -0700395
KOSAKI Motohiroee99c712009-03-31 15:19:31 -0700396 for_each_populated_zone(zone) {
Christoph Lameter4037d452007-05-09 02:35:14 -0700397 struct per_cpu_pageset *p;
Christoph Lameter2244b952006-06-30 01:55:33 -0700398
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900399 p = per_cpu_ptr(zone->pageset, cpu);
Christoph Lameter2244b952006-06-30 01:55:33 -0700400
401 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
Christoph Lameter4037d452007-05-09 02:35:14 -0700402 if (p->vm_stat_diff[i]) {
Christoph Lametera7f75e22008-02-04 22:29:16 -0800403 unsigned long flags;
404 int v;
405
Christoph Lameter2244b952006-06-30 01:55:33 -0700406 local_irq_save(flags);
Christoph Lametera7f75e22008-02-04 22:29:16 -0800407 v = p->vm_stat_diff[i];
Christoph Lameter4037d452007-05-09 02:35:14 -0700408 p->vm_stat_diff[i] = 0;
Christoph Lametera7f75e22008-02-04 22:29:16 -0800409 local_irq_restore(flags);
410 atomic_long_add(v, &zone->vm_stat[i]);
411 global_diff[i] += v;
Christoph Lameter4037d452007-05-09 02:35:14 -0700412#ifdef CONFIG_NUMA
413 /* 3 seconds idle till flush */
414 p->expire = 3;
415#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700416 }
Dimitri Sivanich468fd622008-04-28 02:13:37 -0700417 cond_resched();
Christoph Lameter4037d452007-05-09 02:35:14 -0700418#ifdef CONFIG_NUMA
419 /*
420 * Deal with draining the remote pageset of this
421 * processor
422 *
423 * Check if there are pages remaining in this pageset
424 * if not then there is nothing to expire.
425 */
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800426 if (!p->expire || !p->pcp.count)
Christoph Lameter4037d452007-05-09 02:35:14 -0700427 continue;
428
429 /*
430 * We never drain zones local to this processor.
431 */
432 if (zone_to_nid(zone) == numa_node_id()) {
433 p->expire = 0;
434 continue;
435 }
436
437 p->expire--;
438 if (p->expire)
439 continue;
440
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800441 if (p->pcp.count)
442 drain_zone_pages(zone, &p->pcp);
Christoph Lameter4037d452007-05-09 02:35:14 -0700443#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700444 }
Christoph Lametera7f75e22008-02-04 22:29:16 -0800445
446 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
447 if (global_diff[i])
448 atomic_long_add(global_diff[i], &vm_stat[i]);
Christoph Lameter2244b952006-06-30 01:55:33 -0700449}
450
Christoph Lameter2244b952006-06-30 01:55:33 -0700451#endif
452
Christoph Lameterca889e62006-06-30 01:55:44 -0700453#ifdef CONFIG_NUMA
454/*
455 * zonelist = the list of zones passed to the allocator
456 * z = the zone from which the allocation occurred.
457 *
458 * Must be called with interrupts disabled.
459 */
Mel Gorman18ea7e72008-04-28 02:12:14 -0700460void zone_statistics(struct zone *preferred_zone, struct zone *z)
Christoph Lameterca889e62006-06-30 01:55:44 -0700461{
Mel Gorman18ea7e72008-04-28 02:12:14 -0700462 if (z->zone_pgdat == preferred_zone->zone_pgdat) {
Christoph Lameterca889e62006-06-30 01:55:44 -0700463 __inc_zone_state(z, NUMA_HIT);
464 } else {
465 __inc_zone_state(z, NUMA_MISS);
Mel Gorman18ea7e72008-04-28 02:12:14 -0700466 __inc_zone_state(preferred_zone, NUMA_FOREIGN);
Christoph Lameterca889e62006-06-30 01:55:44 -0700467 }
Christoph Lameter5d292342006-09-27 01:50:10 -0700468 if (z->node == numa_node_id())
Christoph Lameterca889e62006-06-30 01:55:44 -0700469 __inc_zone_state(z, NUMA_LOCAL);
470 else
471 __inc_zone_state(z, NUMA_OTHER);
472}
473#endif
474
Mel Gormand7a57522010-05-24 14:32:25 -0700475#ifdef CONFIG_COMPACTION
Namhyung Kim36deb0b2010-10-26 14:22:04 -0700476
Mel Gormand7a57522010-05-24 14:32:25 -0700477struct contig_page_info {
478 unsigned long free_pages;
479 unsigned long free_blocks_total;
480 unsigned long free_blocks_suitable;
481};
482
483/*
484 * Calculate the number of free pages in a zone, how many contiguous
485 * pages are free and how many are large enough to satisfy an allocation of
486 * the target size. Note that this function makes no attempt to estimate
487 * how many suitable free blocks there *might* be if MOVABLE pages were
488 * migrated. Calculating that is possible, but expensive and can be
489 * figured out from userspace
490 */
491static void fill_contig_page_info(struct zone *zone,
492 unsigned int suitable_order,
493 struct contig_page_info *info)
494{
495 unsigned int order;
496
497 info->free_pages = 0;
498 info->free_blocks_total = 0;
499 info->free_blocks_suitable = 0;
500
501 for (order = 0; order < MAX_ORDER; order++) {
502 unsigned long blocks;
503
504 /* Count number of free blocks */
505 blocks = zone->free_area[order].nr_free;
506 info->free_blocks_total += blocks;
507
508 /* Count free base pages */
509 info->free_pages += blocks << order;
510
511 /* Count the suitable free blocks */
512 if (order >= suitable_order)
513 info->free_blocks_suitable += blocks <<
514 (order - suitable_order);
515 }
516}
Mel Gormanf1a5ab12010-05-24 14:32:26 -0700517
518/*
519 * A fragmentation index only makes sense if an allocation of a requested
520 * size would fail. If that is true, the fragmentation index indicates
521 * whether external fragmentation or a lack of memory was the problem.
522 * The value can be used to determine if page reclaim or compaction
523 * should be used
524 */
Mel Gorman56de7262010-05-24 14:32:30 -0700525static int __fragmentation_index(unsigned int order, struct contig_page_info *info)
Mel Gormanf1a5ab12010-05-24 14:32:26 -0700526{
527 unsigned long requested = 1UL << order;
528
529 if (!info->free_blocks_total)
530 return 0;
531
532 /* Fragmentation index only makes sense when a request would fail */
533 if (info->free_blocks_suitable)
534 return -1000;
535
536 /*
537 * Index is between 0 and 1 so return within 3 decimal places
538 *
539 * 0 => allocation would fail due to lack of memory
540 * 1 => allocation would fail due to fragmentation
541 */
542 return 1000 - div_u64( (1000+(div_u64(info->free_pages * 1000ULL, requested))), info->free_blocks_total);
543}
Mel Gorman56de7262010-05-24 14:32:30 -0700544
545/* Same as __fragmentation index but allocs contig_page_info on stack */
546int fragmentation_index(struct zone *zone, unsigned int order)
547{
548 struct contig_page_info info;
549
550 fill_contig_page_info(zone, order, &info);
551 return __fragmentation_index(order, &info);
552}
Mel Gormand7a57522010-05-24 14:32:25 -0700553#endif
554
555#if defined(CONFIG_PROC_FS) || defined(CONFIG_COMPACTION)
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400556#include <linux/proc_fs.h>
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700557#include <linux/seq_file.h>
558
Mel Gorman467c9962007-10-16 01:26:02 -0700559static char * const migratetype_names[MIGRATE_TYPES] = {
560 "Unmovable",
561 "Reclaimable",
562 "Movable",
563 "Reserve",
KOSAKI Motohiro91446b02008-04-15 14:34:42 -0700564 "Isolate",
Mel Gorman467c9962007-10-16 01:26:02 -0700565};
566
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700567static void *frag_start(struct seq_file *m, loff_t *pos)
568{
569 pg_data_t *pgdat;
570 loff_t node = *pos;
571 for (pgdat = first_online_pgdat();
572 pgdat && node;
573 pgdat = next_online_pgdat(pgdat))
574 --node;
575
576 return pgdat;
577}
578
579static void *frag_next(struct seq_file *m, void *arg, loff_t *pos)
580{
581 pg_data_t *pgdat = (pg_data_t *)arg;
582
583 (*pos)++;
584 return next_online_pgdat(pgdat);
585}
586
587static void frag_stop(struct seq_file *m, void *arg)
588{
589}
590
Mel Gorman467c9962007-10-16 01:26:02 -0700591/* Walk all the zones in a node and print using a callback */
592static void walk_zones_in_node(struct seq_file *m, pg_data_t *pgdat,
593 void (*print)(struct seq_file *m, pg_data_t *, struct zone *))
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700594{
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700595 struct zone *zone;
596 struct zone *node_zones = pgdat->node_zones;
597 unsigned long flags;
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700598
599 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
600 if (!populated_zone(zone))
601 continue;
602
603 spin_lock_irqsave(&zone->lock, flags);
Mel Gorman467c9962007-10-16 01:26:02 -0700604 print(m, pgdat, zone);
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700605 spin_unlock_irqrestore(&zone->lock, flags);
Mel Gorman467c9962007-10-16 01:26:02 -0700606 }
607}
Mel Gormand7a57522010-05-24 14:32:25 -0700608#endif
Mel Gorman467c9962007-10-16 01:26:02 -0700609
Mel Gormand7a57522010-05-24 14:32:25 -0700610#ifdef CONFIG_PROC_FS
Mel Gorman467c9962007-10-16 01:26:02 -0700611static void frag_show_print(struct seq_file *m, pg_data_t *pgdat,
612 struct zone *zone)
613{
614 int order;
615
616 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
617 for (order = 0; order < MAX_ORDER; ++order)
618 seq_printf(m, "%6lu ", zone->free_area[order].nr_free);
619 seq_putc(m, '\n');
620}
621
622/*
623 * This walks the free areas for each zone.
624 */
625static int frag_show(struct seq_file *m, void *arg)
626{
627 pg_data_t *pgdat = (pg_data_t *)arg;
628 walk_zones_in_node(m, pgdat, frag_show_print);
629 return 0;
630}
631
632static void pagetypeinfo_showfree_print(struct seq_file *m,
633 pg_data_t *pgdat, struct zone *zone)
634{
635 int order, mtype;
636
637 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++) {
638 seq_printf(m, "Node %4d, zone %8s, type %12s ",
639 pgdat->node_id,
640 zone->name,
641 migratetype_names[mtype]);
642 for (order = 0; order < MAX_ORDER; ++order) {
643 unsigned long freecount = 0;
644 struct free_area *area;
645 struct list_head *curr;
646
647 area = &(zone->free_area[order]);
648
649 list_for_each(curr, &area->free_list[mtype])
650 freecount++;
651 seq_printf(m, "%6lu ", freecount);
652 }
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700653 seq_putc(m, '\n');
654 }
Mel Gorman467c9962007-10-16 01:26:02 -0700655}
656
657/* Print out the free pages at each order for each migatetype */
658static int pagetypeinfo_showfree(struct seq_file *m, void *arg)
659{
660 int order;
661 pg_data_t *pgdat = (pg_data_t *)arg;
662
663 /* Print header */
664 seq_printf(m, "%-43s ", "Free pages count per migrate type at order");
665 for (order = 0; order < MAX_ORDER; ++order)
666 seq_printf(m, "%6d ", order);
667 seq_putc(m, '\n');
668
669 walk_zones_in_node(m, pgdat, pagetypeinfo_showfree_print);
670
671 return 0;
672}
673
674static void pagetypeinfo_showblockcount_print(struct seq_file *m,
675 pg_data_t *pgdat, struct zone *zone)
676{
677 int mtype;
678 unsigned long pfn;
679 unsigned long start_pfn = zone->zone_start_pfn;
680 unsigned long end_pfn = start_pfn + zone->spanned_pages;
681 unsigned long count[MIGRATE_TYPES] = { 0, };
682
683 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
684 struct page *page;
685
686 if (!pfn_valid(pfn))
687 continue;
688
689 page = pfn_to_page(pfn);
Mel Gormaneb335752009-05-13 17:34:48 +0100690
691 /* Watch for unexpected holes punched in the memmap */
692 if (!memmap_valid_within(pfn, page, zone))
Mel Gormane80d6a22008-08-14 11:10:14 +0100693 continue;
Mel Gormaneb335752009-05-13 17:34:48 +0100694
Mel Gorman467c9962007-10-16 01:26:02 -0700695 mtype = get_pageblock_migratetype(page);
696
Mel Gormane80d6a22008-08-14 11:10:14 +0100697 if (mtype < MIGRATE_TYPES)
698 count[mtype]++;
Mel Gorman467c9962007-10-16 01:26:02 -0700699 }
700
701 /* Print counts */
702 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
703 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
704 seq_printf(m, "%12lu ", count[mtype]);
705 seq_putc(m, '\n');
706}
707
708/* Print out the free pages at each order for each migratetype */
709static int pagetypeinfo_showblockcount(struct seq_file *m, void *arg)
710{
711 int mtype;
712 pg_data_t *pgdat = (pg_data_t *)arg;
713
714 seq_printf(m, "\n%-23s", "Number of blocks type ");
715 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
716 seq_printf(m, "%12s ", migratetype_names[mtype]);
717 seq_putc(m, '\n');
718 walk_zones_in_node(m, pgdat, pagetypeinfo_showblockcount_print);
719
720 return 0;
721}
722
723/*
724 * This prints out statistics in relation to grouping pages by mobility.
725 * It is expensive to collect so do not constantly read the file.
726 */
727static int pagetypeinfo_show(struct seq_file *m, void *arg)
728{
729 pg_data_t *pgdat = (pg_data_t *)arg;
730
KOSAKI Motohiro41b25a32008-04-30 00:52:13 -0700731 /* check memoryless node */
732 if (!node_state(pgdat->node_id, N_HIGH_MEMORY))
733 return 0;
734
Mel Gorman467c9962007-10-16 01:26:02 -0700735 seq_printf(m, "Page block order: %d\n", pageblock_order);
736 seq_printf(m, "Pages per block: %lu\n", pageblock_nr_pages);
737 seq_putc(m, '\n');
738 pagetypeinfo_showfree(m, pgdat);
739 pagetypeinfo_showblockcount(m, pgdat);
740
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700741 return 0;
742}
743
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400744static const struct seq_operations fragmentation_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700745 .start = frag_start,
746 .next = frag_next,
747 .stop = frag_stop,
748 .show = frag_show,
749};
750
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400751static int fragmentation_open(struct inode *inode, struct file *file)
752{
753 return seq_open(file, &fragmentation_op);
754}
755
756static const struct file_operations fragmentation_file_operations = {
757 .open = fragmentation_open,
758 .read = seq_read,
759 .llseek = seq_lseek,
760 .release = seq_release,
761};
762
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +0400763static const struct seq_operations pagetypeinfo_op = {
Mel Gorman467c9962007-10-16 01:26:02 -0700764 .start = frag_start,
765 .next = frag_next,
766 .stop = frag_stop,
767 .show = pagetypeinfo_show,
768};
769
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +0400770static int pagetypeinfo_open(struct inode *inode, struct file *file)
771{
772 return seq_open(file, &pagetypeinfo_op);
773}
774
775static const struct file_operations pagetypeinfo_file_ops = {
776 .open = pagetypeinfo_open,
777 .read = seq_read,
778 .llseek = seq_lseek,
779 .release = seq_release,
780};
781
Christoph Lameter4b51d662007-02-10 01:43:10 -0800782#ifdef CONFIG_ZONE_DMA
783#define TEXT_FOR_DMA(xx) xx "_dma",
784#else
785#define TEXT_FOR_DMA(xx)
786#endif
787
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700788#ifdef CONFIG_ZONE_DMA32
789#define TEXT_FOR_DMA32(xx) xx "_dma32",
790#else
791#define TEXT_FOR_DMA32(xx)
792#endif
793
794#ifdef CONFIG_HIGHMEM
795#define TEXT_FOR_HIGHMEM(xx) xx "_high",
796#else
797#define TEXT_FOR_HIGHMEM(xx)
798#endif
799
Christoph Lameter4b51d662007-02-10 01:43:10 -0800800#define TEXTS_FOR_ZONES(xx) TEXT_FOR_DMA(xx) TEXT_FOR_DMA32(xx) xx "_normal", \
Mel Gorman2a1e2742007-07-17 04:03:12 -0700801 TEXT_FOR_HIGHMEM(xx) xx "_movable",
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700802
Helge Deller15ad7cd2006-12-06 20:40:36 -0800803static const char * const vmstat_text[] = {
Christoph Lameter2244b952006-06-30 01:55:33 -0700804 /* Zoned VM counters */
Christoph Lameterd23ad422007-02-10 01:43:02 -0800805 "nr_free_pages",
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700806 "nr_inactive_anon",
807 "nr_active_anon",
808 "nr_inactive_file",
809 "nr_active_file",
Lee Schermerhorn7b854122008-10-18 20:26:40 -0700810 "nr_unevictable",
Nick Piggin5344b7e2008-10-18 20:26:51 -0700811 "nr_mlock",
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700812 "nr_anon_pages",
Christoph Lameter65ba55f2006-06-30 01:55:34 -0700813 "nr_mapped",
Christoph Lameter347ce432006-06-30 01:55:35 -0700814 "nr_file_pages",
Christoph Lameter51ed4492007-02-10 01:43:02 -0800815 "nr_dirty",
816 "nr_writeback",
Christoph Lameter972d1a72006-09-25 23:31:51 -0700817 "nr_slab_reclaimable",
818 "nr_slab_unreclaimable",
Christoph Lameterdf849a12006-06-30 01:55:38 -0700819 "nr_page_table_pages",
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -0700820 "nr_kernel_stack",
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700821 "nr_unstable",
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700822 "nr_bounce",
Andrew Mortone129b5c2006-09-27 01:50:00 -0700823 "nr_vmscan_write",
Miklos Szeredifc3ba692008-04-30 00:54:38 -0700824 "nr_writeback_temp",
KOSAKI Motohiroa7312862009-09-21 17:01:37 -0700825 "nr_isolated_anon",
826 "nr_isolated_file",
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700827 "nr_shmem",
Michael Rubinea941f02010-10-26 14:21:35 -0700828 "nr_dirtied",
829 "nr_written",
830
Christoph Lameterca889e62006-06-30 01:55:44 -0700831#ifdef CONFIG_NUMA
832 "numa_hit",
833 "numa_miss",
834 "numa_foreign",
835 "numa_interleave",
836 "numa_local",
837 "numa_other",
838#endif
Wu Fengguange1726622010-12-02 14:31:13 -0800839 "nr_dirty_threshold",
840 "nr_dirty_background_threshold",
Christoph Lameterca889e62006-06-30 01:55:44 -0700841
Christoph Lameterf8891e52006-06-30 01:55:45 -0700842#ifdef CONFIG_VM_EVENT_COUNTERS
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700843 "pgpgin",
844 "pgpgout",
845 "pswpin",
846 "pswpout",
847
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700848 TEXTS_FOR_ZONES("pgalloc")
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700849
850 "pgfree",
851 "pgactivate",
852 "pgdeactivate",
853
854 "pgfault",
855 "pgmajfault",
856
Christoph Lameter27bf71c2006-09-25 23:31:15 -0700857 TEXTS_FOR_ZONES("pgrefill")
858 TEXTS_FOR_ZONES("pgsteal")
859 TEXTS_FOR_ZONES("pgscan_kswapd")
860 TEXTS_FOR_ZONES("pgscan_direct")
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700861
Mel Gorman24cf725182009-06-16 15:33:23 -0700862#ifdef CONFIG_NUMA
863 "zone_reclaim_failed",
864#endif
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700865 "pginodesteal",
866 "slabs_scanned",
867 "kswapd_steal",
868 "kswapd_inodesteal",
KOSAKI Motohirobb3ab592009-12-14 17:58:55 -0800869 "kswapd_low_wmark_hit_quickly",
870 "kswapd_high_wmark_hit_quickly",
871 "kswapd_skip_congestion_wait",
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700872 "pageoutrun",
873 "allocstall",
874
875 "pgrotated",
Mel Gorman748446b2010-05-24 14:32:27 -0700876
877#ifdef CONFIG_COMPACTION
878 "compact_blocks_moved",
879 "compact_pages_moved",
880 "compact_pagemigrate_failed",
Mel Gorman56de7262010-05-24 14:32:30 -0700881 "compact_stall",
882 "compact_fail",
883 "compact_success",
Mel Gorman748446b2010-05-24 14:32:27 -0700884#endif
885
Adam Litke3b116302008-04-28 02:13:06 -0700886#ifdef CONFIG_HUGETLB_PAGE
887 "htlb_buddy_alloc_success",
888 "htlb_buddy_alloc_fail",
889#endif
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700890 "unevictable_pgs_culled",
891 "unevictable_pgs_scanned",
892 "unevictable_pgs_rescued",
Nick Piggin5344b7e2008-10-18 20:26:51 -0700893 "unevictable_pgs_mlocked",
894 "unevictable_pgs_munlocked",
895 "unevictable_pgs_cleared",
896 "unevictable_pgs_stranded",
Lee Schermerhorn985737c2008-10-18 20:26:53 -0700897 "unevictable_pgs_mlockfreed",
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700898#endif
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700899};
900
Mel Gorman467c9962007-10-16 01:26:02 -0700901static void zoneinfo_show_print(struct seq_file *m, pg_data_t *pgdat,
902 struct zone *zone)
903{
904 int i;
905 seq_printf(m, "Node %d, zone %8s", pgdat->node_id, zone->name);
906 seq_printf(m,
907 "\n pages free %lu"
908 "\n min %lu"
909 "\n low %lu"
910 "\n high %lu"
Wu Fengguang08d9ae72009-06-16 15:32:30 -0700911 "\n scanned %lu"
Mel Gorman467c9962007-10-16 01:26:02 -0700912 "\n spanned %lu"
913 "\n present %lu",
Christoph Lameteraa454842010-09-09 16:38:17 -0700914 zone_nr_free_pages(zone),
Mel Gorman41858962009-06-16 15:32:12 -0700915 min_wmark_pages(zone),
916 low_wmark_pages(zone),
917 high_wmark_pages(zone),
Mel Gorman467c9962007-10-16 01:26:02 -0700918 zone->pages_scanned,
Mel Gorman467c9962007-10-16 01:26:02 -0700919 zone->spanned_pages,
920 zone->present_pages);
921
922 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
923 seq_printf(m, "\n %-12s %lu", vmstat_text[i],
924 zone_page_state(zone, i));
925
926 seq_printf(m,
927 "\n protection: (%lu",
928 zone->lowmem_reserve[0]);
929 for (i = 1; i < ARRAY_SIZE(zone->lowmem_reserve); i++)
930 seq_printf(m, ", %lu", zone->lowmem_reserve[i]);
931 seq_printf(m,
932 ")"
933 "\n pagesets");
934 for_each_online_cpu(i) {
935 struct per_cpu_pageset *pageset;
Mel Gorman467c9962007-10-16 01:26:02 -0700936
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900937 pageset = per_cpu_ptr(zone->pageset, i);
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800938 seq_printf(m,
939 "\n cpu: %i"
940 "\n count: %i"
941 "\n high: %i"
942 "\n batch: %i",
943 i,
944 pageset->pcp.count,
945 pageset->pcp.high,
946 pageset->pcp.batch);
Mel Gorman467c9962007-10-16 01:26:02 -0700947#ifdef CONFIG_SMP
948 seq_printf(m, "\n vm stats threshold: %d",
949 pageset->stat_threshold);
950#endif
951 }
952 seq_printf(m,
953 "\n all_unreclaimable: %u"
Rik van Riel556adec2008-10-18 20:26:34 -0700954 "\n start_pfn: %lu"
955 "\n inactive_ratio: %u",
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -0800956 zone->all_unreclaimable,
Rik van Riel556adec2008-10-18 20:26:34 -0700957 zone->zone_start_pfn,
958 zone->inactive_ratio);
Mel Gorman467c9962007-10-16 01:26:02 -0700959 seq_putc(m, '\n');
960}
961
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700962/*
963 * Output information about zones in @pgdat.
964 */
965static int zoneinfo_show(struct seq_file *m, void *arg)
966{
Mel Gorman467c9962007-10-16 01:26:02 -0700967 pg_data_t *pgdat = (pg_data_t *)arg;
968 walk_zones_in_node(m, pgdat, zoneinfo_show_print);
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700969 return 0;
970}
971
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +0400972static const struct seq_operations zoneinfo_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700973 .start = frag_start, /* iterate over all zones. The same as in
974 * fragmentation. */
975 .next = frag_next,
976 .stop = frag_stop,
977 .show = zoneinfo_show,
978};
979
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +0400980static int zoneinfo_open(struct inode *inode, struct file *file)
981{
982 return seq_open(file, &zoneinfo_op);
983}
984
985static const struct file_operations proc_zoneinfo_file_operations = {
986 .open = zoneinfo_open,
987 .read = seq_read,
988 .llseek = seq_lseek,
989 .release = seq_release,
990};
991
Michael Rubin79da8262010-10-26 14:21:36 -0700992enum writeback_stat_item {
993 NR_DIRTY_THRESHOLD,
994 NR_DIRTY_BG_THRESHOLD,
995 NR_VM_WRITEBACK_STAT_ITEMS,
996};
997
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700998static void *vmstat_start(struct seq_file *m, loff_t *pos)
999{
Christoph Lameter2244b952006-06-30 01:55:33 -07001000 unsigned long *v;
Michael Rubin79da8262010-10-26 14:21:36 -07001001 int i, stat_items_size;
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001002
1003 if (*pos >= ARRAY_SIZE(vmstat_text))
1004 return NULL;
Michael Rubin79da8262010-10-26 14:21:36 -07001005 stat_items_size = NR_VM_ZONE_STAT_ITEMS * sizeof(unsigned long) +
1006 NR_VM_WRITEBACK_STAT_ITEMS * sizeof(unsigned long);
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001007
Christoph Lameterf8891e52006-06-30 01:55:45 -07001008#ifdef CONFIG_VM_EVENT_COUNTERS
Michael Rubin79da8262010-10-26 14:21:36 -07001009 stat_items_size += sizeof(struct vm_event_state);
Christoph Lameterf8891e52006-06-30 01:55:45 -07001010#endif
Michael Rubin79da8262010-10-26 14:21:36 -07001011
1012 v = kmalloc(stat_items_size, GFP_KERNEL);
Christoph Lameter2244b952006-06-30 01:55:33 -07001013 m->private = v;
1014 if (!v)
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001015 return ERR_PTR(-ENOMEM);
Christoph Lameter2244b952006-06-30 01:55:33 -07001016 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
1017 v[i] = global_page_state(i);
Michael Rubin79da8262010-10-26 14:21:36 -07001018 v += NR_VM_ZONE_STAT_ITEMS;
1019
1020 global_dirty_limits(v + NR_DIRTY_BG_THRESHOLD,
1021 v + NR_DIRTY_THRESHOLD);
1022 v += NR_VM_WRITEBACK_STAT_ITEMS;
1023
Christoph Lameterf8891e52006-06-30 01:55:45 -07001024#ifdef CONFIG_VM_EVENT_COUNTERS
Michael Rubin79da8262010-10-26 14:21:36 -07001025 all_vm_events(v);
1026 v[PGPGIN] /= 2; /* sectors -> kbytes */
1027 v[PGPGOUT] /= 2;
Christoph Lameterf8891e52006-06-30 01:55:45 -07001028#endif
Wu Fengguangff8b16d2010-11-04 01:56:49 +08001029 return (unsigned long *)m->private + *pos;
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001030}
1031
1032static void *vmstat_next(struct seq_file *m, void *arg, loff_t *pos)
1033{
1034 (*pos)++;
1035 if (*pos >= ARRAY_SIZE(vmstat_text))
1036 return NULL;
1037 return (unsigned long *)m->private + *pos;
1038}
1039
1040static int vmstat_show(struct seq_file *m, void *arg)
1041{
1042 unsigned long *l = arg;
1043 unsigned long off = l - (unsigned long *)m->private;
1044
1045 seq_printf(m, "%s %lu\n", vmstat_text[off], *l);
1046 return 0;
1047}
1048
1049static void vmstat_stop(struct seq_file *m, void *arg)
1050{
1051 kfree(m->private);
1052 m->private = NULL;
1053}
1054
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +04001055static const struct seq_operations vmstat_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001056 .start = vmstat_start,
1057 .next = vmstat_next,
1058 .stop = vmstat_stop,
1059 .show = vmstat_show,
1060};
1061
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +04001062static int vmstat_open(struct inode *inode, struct file *file)
1063{
1064 return seq_open(file, &vmstat_op);
1065}
1066
1067static const struct file_operations proc_vmstat_file_operations = {
1068 .open = vmstat_open,
1069 .read = seq_read,
1070 .llseek = seq_lseek,
1071 .release = seq_release,
1072};
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001073#endif /* CONFIG_PROC_FS */
1074
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001075#ifdef CONFIG_SMP
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001076static DEFINE_PER_CPU(struct delayed_work, vmstat_work);
Christoph Lameter77461ab2007-05-09 02:35:13 -07001077int sysctl_stat_interval __read_mostly = HZ;
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001078
1079static void vmstat_update(struct work_struct *w)
1080{
1081 refresh_cpu_vm_stats(smp_processor_id());
Christoph Lameter77461ab2007-05-09 02:35:13 -07001082 schedule_delayed_work(&__get_cpu_var(vmstat_work),
Anton Blanchard98f4ebb2009-04-02 16:56:39 -07001083 round_jiffies_relative(sysctl_stat_interval));
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001084}
1085
Randy Dunlap42614fc2007-11-14 17:00:12 -08001086static void __cpuinit start_cpu_timer(int cpu)
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001087{
Tejun Heo1871e522009-10-29 22:34:13 +09001088 struct delayed_work *work = &per_cpu(vmstat_work, cpu);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001089
Tejun Heo1871e522009-10-29 22:34:13 +09001090 INIT_DELAYED_WORK_DEFERRABLE(work, vmstat_update);
1091 schedule_delayed_work_on(cpu, work, __round_jiffies_relative(HZ, cpu));
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001092}
1093
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001094/*
1095 * Use the cpu notifier to insure that the thresholds are recalculated
1096 * when necessary.
1097 */
1098static int __cpuinit vmstat_cpuup_callback(struct notifier_block *nfb,
1099 unsigned long action,
1100 void *hcpu)
1101{
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001102 long cpu = (long)hcpu;
1103
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001104 switch (action) {
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001105 case CPU_ONLINE:
1106 case CPU_ONLINE_FROZEN:
KAMEZAWA Hiroyuki5ee28a42010-09-09 16:38:14 -07001107 refresh_zone_stat_thresholds();
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001108 start_cpu_timer(cpu);
Christoph Lameterad596922010-01-05 15:34:51 +09001109 node_set_state(cpu_to_node(cpu), N_CPU);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001110 break;
1111 case CPU_DOWN_PREPARE:
1112 case CPU_DOWN_PREPARE_FROZEN:
1113 cancel_rearming_delayed_work(&per_cpu(vmstat_work, cpu));
1114 per_cpu(vmstat_work, cpu).work.func = NULL;
1115 break;
1116 case CPU_DOWN_FAILED:
1117 case CPU_DOWN_FAILED_FROZEN:
1118 start_cpu_timer(cpu);
1119 break;
Andy Whitcroftce421c72006-12-06 20:33:08 -08001120 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001121 case CPU_DEAD_FROZEN:
Andy Whitcroftce421c72006-12-06 20:33:08 -08001122 refresh_zone_stat_thresholds();
1123 break;
1124 default:
1125 break;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001126 }
1127 return NOTIFY_OK;
1128}
1129
1130static struct notifier_block __cpuinitdata vmstat_notifier =
1131 { &vmstat_cpuup_callback, NULL, 0 };
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001132#endif
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001133
Adrian Bunke2fc88d2007-10-16 01:26:27 -07001134static int __init setup_vmstat(void)
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001135{
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001136#ifdef CONFIG_SMP
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001137 int cpu;
1138
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001139 refresh_zone_stat_thresholds();
1140 register_cpu_notifier(&vmstat_notifier);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001141
1142 for_each_online_cpu(cpu)
1143 start_cpu_timer(cpu);
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001144#endif
1145#ifdef CONFIG_PROC_FS
1146 proc_create("buddyinfo", S_IRUGO, NULL, &fragmentation_file_operations);
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +04001147 proc_create("pagetypeinfo", S_IRUGO, NULL, &pagetypeinfo_file_ops);
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +04001148 proc_create("vmstat", S_IRUGO, NULL, &proc_vmstat_file_operations);
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +04001149 proc_create("zoneinfo", S_IRUGO, NULL, &proc_zoneinfo_file_operations);
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001150#endif
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001151 return 0;
1152}
1153module_init(setup_vmstat)
Mel Gormand7a57522010-05-24 14:32:25 -07001154
1155#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_COMPACTION)
1156#include <linux/debugfs.h>
1157
1158static struct dentry *extfrag_debug_root;
1159
1160/*
1161 * Return an index indicating how much of the available free memory is
1162 * unusable for an allocation of the requested size.
1163 */
1164static int unusable_free_index(unsigned int order,
1165 struct contig_page_info *info)
1166{
1167 /* No free memory is interpreted as all free memory is unusable */
1168 if (info->free_pages == 0)
1169 return 1000;
1170
1171 /*
1172 * Index should be a value between 0 and 1. Return a value to 3
1173 * decimal places.
1174 *
1175 * 0 => no fragmentation
1176 * 1 => high fragmentation
1177 */
1178 return div_u64((info->free_pages - (info->free_blocks_suitable << order)) * 1000ULL, info->free_pages);
1179
1180}
1181
1182static void unusable_show_print(struct seq_file *m,
1183 pg_data_t *pgdat, struct zone *zone)
1184{
1185 unsigned int order;
1186 int index;
1187 struct contig_page_info info;
1188
1189 seq_printf(m, "Node %d, zone %8s ",
1190 pgdat->node_id,
1191 zone->name);
1192 for (order = 0; order < MAX_ORDER; ++order) {
1193 fill_contig_page_info(zone, order, &info);
1194 index = unusable_free_index(order, &info);
1195 seq_printf(m, "%d.%03d ", index / 1000, index % 1000);
1196 }
1197
1198 seq_putc(m, '\n');
1199}
1200
1201/*
1202 * Display unusable free space index
1203 *
1204 * The unusable free space index measures how much of the available free
1205 * memory cannot be used to satisfy an allocation of a given size and is a
1206 * value between 0 and 1. The higher the value, the more of free memory is
1207 * unusable and by implication, the worse the external fragmentation is. This
1208 * can be expressed as a percentage by multiplying by 100.
1209 */
1210static int unusable_show(struct seq_file *m, void *arg)
1211{
1212 pg_data_t *pgdat = (pg_data_t *)arg;
1213
1214 /* check memoryless node */
1215 if (!node_state(pgdat->node_id, N_HIGH_MEMORY))
1216 return 0;
1217
1218 walk_zones_in_node(m, pgdat, unusable_show_print);
1219
1220 return 0;
1221}
1222
1223static const struct seq_operations unusable_op = {
1224 .start = frag_start,
1225 .next = frag_next,
1226 .stop = frag_stop,
1227 .show = unusable_show,
1228};
1229
1230static int unusable_open(struct inode *inode, struct file *file)
1231{
1232 return seq_open(file, &unusable_op);
1233}
1234
1235static const struct file_operations unusable_file_ops = {
1236 .open = unusable_open,
1237 .read = seq_read,
1238 .llseek = seq_lseek,
1239 .release = seq_release,
1240};
1241
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001242static void extfrag_show_print(struct seq_file *m,
1243 pg_data_t *pgdat, struct zone *zone)
1244{
1245 unsigned int order;
1246 int index;
1247
1248 /* Alloc on stack as interrupts are disabled for zone walk */
1249 struct contig_page_info info;
1250
1251 seq_printf(m, "Node %d, zone %8s ",
1252 pgdat->node_id,
1253 zone->name);
1254 for (order = 0; order < MAX_ORDER; ++order) {
1255 fill_contig_page_info(zone, order, &info);
Mel Gorman56de7262010-05-24 14:32:30 -07001256 index = __fragmentation_index(order, &info);
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001257 seq_printf(m, "%d.%03d ", index / 1000, index % 1000);
1258 }
1259
1260 seq_putc(m, '\n');
1261}
1262
1263/*
1264 * Display fragmentation index for orders that allocations would fail for
1265 */
1266static int extfrag_show(struct seq_file *m, void *arg)
1267{
1268 pg_data_t *pgdat = (pg_data_t *)arg;
1269
1270 walk_zones_in_node(m, pgdat, extfrag_show_print);
1271
1272 return 0;
1273}
1274
1275static const struct seq_operations extfrag_op = {
1276 .start = frag_start,
1277 .next = frag_next,
1278 .stop = frag_stop,
1279 .show = extfrag_show,
1280};
1281
1282static int extfrag_open(struct inode *inode, struct file *file)
1283{
1284 return seq_open(file, &extfrag_op);
1285}
1286
1287static const struct file_operations extfrag_file_ops = {
1288 .open = extfrag_open,
1289 .read = seq_read,
1290 .llseek = seq_lseek,
1291 .release = seq_release,
1292};
1293
Mel Gormand7a57522010-05-24 14:32:25 -07001294static int __init extfrag_debug_init(void)
1295{
1296 extfrag_debug_root = debugfs_create_dir("extfrag", NULL);
1297 if (!extfrag_debug_root)
1298 return -ENOMEM;
1299
1300 if (!debugfs_create_file("unusable_index", 0444,
1301 extfrag_debug_root, NULL, &unusable_file_ops))
1302 return -ENOMEM;
1303
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001304 if (!debugfs_create_file("extfrag_index", 0444,
1305 extfrag_debug_root, NULL, &extfrag_file_ops))
1306 return -ENOMEM;
1307
Mel Gormand7a57522010-05-24 14:32:25 -07001308 return 0;
1309}
1310
1311module_init(extfrag_debug_init);
1312#endif