blob: 6d9bace4e5893c39e1998154b94bc1acc4b7c085 [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>
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +010017#include <linux/cpumask.h>
Adrian Bunkc748e132008-07-23 21:27:03 -070018#include <linux/vmstat.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040019#include <linux/sched.h>
Mel Gormanf1a5ab12010-05-24 14:32:26 -070020#include <linux/math64.h>
Michael Rubin79da8262010-10-26 14:21:36 -070021#include <linux/writeback.h>
Namhyung Kim36deb0b2010-10-26 14:22:04 -070022#include <linux/compaction.h>
Christoph Lameterf6ac2352006-06-30 01:55:32 -070023
Christoph Lameterf8891e52006-06-30 01:55:45 -070024#ifdef CONFIG_VM_EVENT_COUNTERS
25DEFINE_PER_CPU(struct vm_event_state, vm_event_states) = {{0}};
26EXPORT_PER_CPU_SYMBOL(vm_event_states);
27
Minchan Kim31f961a2010-08-09 17:18:59 -070028static void sum_vm_events(unsigned long *ret)
Christoph Lameterf8891e52006-06-30 01:55:45 -070029{
Christoph Lameter9eccf2a2008-02-04 22:29:22 -080030 int cpu;
Christoph Lameterf8891e52006-06-30 01:55:45 -070031 int i;
32
33 memset(ret, 0, NR_VM_EVENT_ITEMS * sizeof(unsigned long));
34
Minchan Kim31f961a2010-08-09 17:18:59 -070035 for_each_online_cpu(cpu) {
Christoph Lameterf8891e52006-06-30 01:55:45 -070036 struct vm_event_state *this = &per_cpu(vm_event_states, cpu);
37
Christoph Lameterf8891e52006-06-30 01:55:45 -070038 for (i = 0; i < NR_VM_EVENT_ITEMS; i++)
39 ret[i] += this->event[i];
40 }
41}
42
43/*
44 * Accumulate the vm event counters across all CPUs.
45 * The result is unavoidably approximate - it can change
46 * during and after execution of this function.
47*/
48void all_vm_events(unsigned long *ret)
49{
KOSAKI Motohirob5be1132008-05-12 14:02:06 -070050 get_online_cpus();
Minchan Kim31f961a2010-08-09 17:18:59 -070051 sum_vm_events(ret);
KOSAKI Motohirob5be1132008-05-12 14:02:06 -070052 put_online_cpus();
Christoph Lameterf8891e52006-06-30 01:55:45 -070053}
Heiko Carstens32dd66f2006-07-10 04:44:31 -070054EXPORT_SYMBOL_GPL(all_vm_events);
Christoph Lameterf8891e52006-06-30 01:55:45 -070055
Christoph Lameterf8891e52006-06-30 01:55:45 -070056/*
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}
Christoph Lameterf8891e52006-06-30 01:55:45 -070072
73#endif /* CONFIG_VM_EVENT_COUNTERS */
74
Christoph Lameter2244b952006-06-30 01:55:33 -070075/*
76 * Manage combined zone based / global counters
77 *
78 * vm_stat contains the global counters
79 */
Dimitri Sivanicha1cb2c62011-10-31 17:09:46 -070080atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS] __cacheline_aligned_in_smp;
Christoph Lameter2244b952006-06-30 01:55:33 -070081EXPORT_SYMBOL(vm_stat);
82
83#ifdef CONFIG_SMP
84
Mel Gormanb44129b2011-01-13 15:45:43 -080085int calculate_pressure_threshold(struct zone *zone)
Mel Gorman88f5acf2011-01-13 15:45:41 -080086{
87 int threshold;
88 int watermark_distance;
89
90 /*
91 * As vmstats are not up to date, there is drift between the estimated
92 * and real values. For high thresholds and a high number of CPUs, it
93 * is possible for the min watermark to be breached while the estimated
94 * value looks fine. The pressure threshold is a reduced value such
95 * that even the maximum amount of drift will not accidentally breach
96 * the min watermark
97 */
98 watermark_distance = low_wmark_pages(zone) - min_wmark_pages(zone);
99 threshold = max(1, (int)(watermark_distance / num_online_cpus()));
100
101 /*
102 * Maximum threshold is 125
103 */
104 threshold = min(125, threshold);
105
106 return threshold;
107}
108
Mel Gormanb44129b2011-01-13 15:45:43 -0800109int calculate_normal_threshold(struct zone *zone)
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700110{
111 int threshold;
112 int mem; /* memory in 128 MB units */
113
114 /*
115 * The threshold scales with the number of processors and the amount
116 * of memory per zone. More memory means that we can defer updates for
117 * longer, more processors could lead to more contention.
118 * fls() is used to have a cheap way of logarithmic scaling.
119 *
120 * Some sample thresholds:
121 *
122 * Threshold Processors (fls) Zonesize fls(mem+1)
123 * ------------------------------------------------------------------
124 * 8 1 1 0.9-1 GB 4
125 * 16 2 2 0.9-1 GB 4
126 * 20 2 2 1-2 GB 5
127 * 24 2 2 2-4 GB 6
128 * 28 2 2 4-8 GB 7
129 * 32 2 2 8-16 GB 8
130 * 4 2 2 <128M 1
131 * 30 4 3 2-4 GB 5
132 * 48 4 3 8-16 GB 8
133 * 32 8 4 1-2 GB 4
134 * 32 8 4 0.9-1GB 4
135 * 10 16 5 <128M 1
136 * 40 16 5 900M 4
137 * 70 64 7 2-4 GB 5
138 * 84 64 7 4-8 GB 6
139 * 108 512 9 4-8 GB 6
140 * 125 1024 10 8-16 GB 8
141 * 125 1024 10 16-32 GB 9
142 */
143
Jiang Liub40da042013-02-22 16:33:52 -0800144 mem = zone->managed_pages >> (27 - PAGE_SHIFT);
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700145
146 threshold = 2 * fls(num_online_cpus()) * (1 + fls(mem));
147
148 /*
149 * Maximum threshold is 125
150 */
151 threshold = min(125, threshold);
152
153 return threshold;
154}
Christoph Lameter2244b952006-06-30 01:55:33 -0700155
156/*
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700157 * Refresh the thresholds for each zone.
Christoph Lameter2244b952006-06-30 01:55:33 -0700158 */
KOSAKI Motohiroa6cccdc2011-05-24 17:11:33 -0700159void refresh_zone_stat_thresholds(void)
Christoph Lameter2244b952006-06-30 01:55:33 -0700160{
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700161 struct zone *zone;
162 int cpu;
163 int threshold;
164
KOSAKI Motohiroee99c712009-03-31 15:19:31 -0700165 for_each_populated_zone(zone) {
Christoph Lameteraa454842010-09-09 16:38:17 -0700166 unsigned long max_drift, tolerate_drift;
167
Mel Gormanb44129b2011-01-13 15:45:43 -0800168 threshold = calculate_normal_threshold(zone);
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700169
170 for_each_online_cpu(cpu)
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900171 per_cpu_ptr(zone->pageset, cpu)->stat_threshold
172 = threshold;
Christoph Lameteraa454842010-09-09 16:38:17 -0700173
174 /*
175 * Only set percpu_drift_mark if there is a danger that
176 * NR_FREE_PAGES reports the low watermark is ok when in fact
177 * the min watermark could be breached by an allocation
178 */
179 tolerate_drift = low_wmark_pages(zone) - min_wmark_pages(zone);
180 max_drift = num_online_cpus() * threshold;
181 if (max_drift > tolerate_drift)
182 zone->percpu_drift_mark = high_wmark_pages(zone) +
183 max_drift;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700184 }
Christoph Lameter2244b952006-06-30 01:55:33 -0700185}
186
Mel Gormanb44129b2011-01-13 15:45:43 -0800187void set_pgdat_percpu_threshold(pg_data_t *pgdat,
188 int (*calculate_pressure)(struct zone *))
Mel Gorman88f5acf2011-01-13 15:45:41 -0800189{
190 struct zone *zone;
191 int cpu;
192 int threshold;
193 int i;
194
Mel Gorman88f5acf2011-01-13 15:45:41 -0800195 for (i = 0; i < pgdat->nr_zones; i++) {
196 zone = &pgdat->node_zones[i];
197 if (!zone->percpu_drift_mark)
198 continue;
199
Mel Gormanb44129b2011-01-13 15:45:43 -0800200 threshold = (*calculate_pressure)(zone);
201 for_each_possible_cpu(cpu)
Mel Gorman88f5acf2011-01-13 15:45:41 -0800202 per_cpu_ptr(zone->pageset, cpu)->stat_threshold
203 = threshold;
204 }
Mel Gorman88f5acf2011-01-13 15:45:41 -0800205}
206
Christoph Lameter2244b952006-06-30 01:55:33 -0700207/*
208 * For use when we know that interrupts are disabled.
209 */
210void __mod_zone_page_state(struct zone *zone, enum zone_stat_item item,
211 int delta)
212{
Christoph Lameter12938a92010-12-06 11:16:20 -0600213 struct per_cpu_pageset __percpu *pcp = zone->pageset;
214 s8 __percpu *p = pcp->vm_stat_diff + item;
Christoph Lameter2244b952006-06-30 01:55:33 -0700215 long x;
Christoph Lameter12938a92010-12-06 11:16:20 -0600216 long t;
Christoph Lameter2244b952006-06-30 01:55:33 -0700217
Christoph Lameter12938a92010-12-06 11:16:20 -0600218 x = delta + __this_cpu_read(*p);
Christoph Lameter2244b952006-06-30 01:55:33 -0700219
Christoph Lameter12938a92010-12-06 11:16:20 -0600220 t = __this_cpu_read(pcp->stat_threshold);
221
222 if (unlikely(x > t || x < -t)) {
Christoph Lameter2244b952006-06-30 01:55:33 -0700223 zone_page_state_add(x, zone, item);
224 x = 0;
225 }
Christoph Lameter12938a92010-12-06 11:16:20 -0600226 __this_cpu_write(*p, x);
Christoph Lameter2244b952006-06-30 01:55:33 -0700227}
228EXPORT_SYMBOL(__mod_zone_page_state);
229
230/*
Christoph Lameter2244b952006-06-30 01:55:33 -0700231 * Optimized increment and decrement functions.
232 *
233 * These are only for a single page and therefore can take a struct page *
234 * argument instead of struct zone *. This allows the inclusion of the code
235 * generated for page_zone(page) into the optimized functions.
236 *
237 * No overflow check is necessary and therefore the differential can be
238 * incremented or decremented in place which may allow the compilers to
239 * generate better code.
Christoph Lameter2244b952006-06-30 01:55:33 -0700240 * The increment or decrement is known and therefore one boundary check can
241 * be omitted.
242 *
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700243 * NOTE: These functions are very performance sensitive. Change only
244 * with care.
245 *
Christoph Lameter2244b952006-06-30 01:55:33 -0700246 * Some processors have inc/dec instructions that are atomic vs an interrupt.
247 * However, the code must first determine the differential location in a zone
248 * based on the processor number and then inc/dec the counter. There is no
249 * guarantee without disabling preemption that the processor will not change
250 * in between and therefore the atomicity vs. interrupt cannot be exploited
251 * in a useful way here.
252 */
Christoph Lameterc8785382007-02-10 01:43:01 -0800253void __inc_zone_state(struct zone *zone, enum zone_stat_item item)
Christoph Lameter2244b952006-06-30 01:55:33 -0700254{
Christoph Lameter12938a92010-12-06 11:16:20 -0600255 struct per_cpu_pageset __percpu *pcp = zone->pageset;
256 s8 __percpu *p = pcp->vm_stat_diff + item;
257 s8 v, t;
Christoph Lameter2244b952006-06-30 01:55:33 -0700258
Christoph Lameter908ee0f2010-12-06 11:40:02 -0600259 v = __this_cpu_inc_return(*p);
Christoph Lameter12938a92010-12-06 11:16:20 -0600260 t = __this_cpu_read(pcp->stat_threshold);
261 if (unlikely(v > t)) {
262 s8 overstep = t >> 1;
Christoph Lameter2244b952006-06-30 01:55:33 -0700263
Christoph Lameter12938a92010-12-06 11:16:20 -0600264 zone_page_state_add(v + overstep, zone, item);
265 __this_cpu_write(*p, -overstep);
Christoph Lameter2244b952006-06-30 01:55:33 -0700266 }
267}
Christoph Lameterca889e62006-06-30 01:55:44 -0700268
269void __inc_zone_page_state(struct page *page, enum zone_stat_item item)
270{
271 __inc_zone_state(page_zone(page), item);
272}
Christoph Lameter2244b952006-06-30 01:55:33 -0700273EXPORT_SYMBOL(__inc_zone_page_state);
274
Christoph Lameterc8785382007-02-10 01:43:01 -0800275void __dec_zone_state(struct zone *zone, enum zone_stat_item item)
Christoph Lameter2244b952006-06-30 01:55:33 -0700276{
Christoph Lameter12938a92010-12-06 11:16:20 -0600277 struct per_cpu_pageset __percpu *pcp = zone->pageset;
278 s8 __percpu *p = pcp->vm_stat_diff + item;
279 s8 v, t;
Christoph Lameter2244b952006-06-30 01:55:33 -0700280
Christoph Lameter908ee0f2010-12-06 11:40:02 -0600281 v = __this_cpu_dec_return(*p);
Christoph Lameter12938a92010-12-06 11:16:20 -0600282 t = __this_cpu_read(pcp->stat_threshold);
283 if (unlikely(v < - t)) {
284 s8 overstep = t >> 1;
Christoph Lameter2244b952006-06-30 01:55:33 -0700285
Christoph Lameter12938a92010-12-06 11:16:20 -0600286 zone_page_state_add(v - overstep, zone, item);
287 __this_cpu_write(*p, overstep);
Christoph Lameter2244b952006-06-30 01:55:33 -0700288 }
289}
Christoph Lameterc8785382007-02-10 01:43:01 -0800290
291void __dec_zone_page_state(struct page *page, enum zone_stat_item item)
292{
293 __dec_zone_state(page_zone(page), item);
294}
Christoph Lameter2244b952006-06-30 01:55:33 -0700295EXPORT_SYMBOL(__dec_zone_page_state);
296
Heiko Carstens41561532012-01-12 17:17:30 -0800297#ifdef CONFIG_HAVE_CMPXCHG_LOCAL
Christoph Lameter7c839122010-12-14 10:28:46 -0600298/*
299 * If we have cmpxchg_local support then we do not need to incur the overhead
300 * that comes with local_irq_save/restore if we use this_cpu_cmpxchg.
301 *
302 * mod_state() modifies the zone counter state through atomic per cpu
303 * operations.
304 *
305 * Overstep mode specifies how overstep should handled:
306 * 0 No overstepping
307 * 1 Overstepping half of threshold
308 * -1 Overstepping minus half of threshold
309*/
310static inline void mod_state(struct zone *zone,
311 enum zone_stat_item item, int delta, int overstep_mode)
312{
313 struct per_cpu_pageset __percpu *pcp = zone->pageset;
314 s8 __percpu *p = pcp->vm_stat_diff + item;
315 long o, n, t, z;
316
317 do {
318 z = 0; /* overflow to zone counters */
319
320 /*
321 * The fetching of the stat_threshold is racy. We may apply
322 * a counter threshold to the wrong the cpu if we get
Christoph Lameterd3bc2362011-04-14 15:21:58 -0700323 * rescheduled while executing here. However, the next
324 * counter update will apply the threshold again and
325 * therefore bring the counter under the threshold again.
326 *
327 * Most of the time the thresholds are the same anyways
328 * for all cpus in a zone.
Christoph Lameter7c839122010-12-14 10:28:46 -0600329 */
330 t = this_cpu_read(pcp->stat_threshold);
331
332 o = this_cpu_read(*p);
333 n = delta + o;
334
335 if (n > t || n < -t) {
336 int os = overstep_mode * (t >> 1) ;
337
338 /* Overflow must be added to zone counters */
339 z = n + os;
340 n = -os;
341 }
342 } while (this_cpu_cmpxchg(*p, o, n) != o);
343
344 if (z)
345 zone_page_state_add(z, zone, item);
346}
347
348void mod_zone_page_state(struct zone *zone, enum zone_stat_item item,
349 int delta)
350{
351 mod_state(zone, item, delta, 0);
352}
353EXPORT_SYMBOL(mod_zone_page_state);
354
355void inc_zone_state(struct zone *zone, enum zone_stat_item item)
356{
357 mod_state(zone, item, 1, 1);
358}
359
360void inc_zone_page_state(struct page *page, enum zone_stat_item item)
361{
362 mod_state(page_zone(page), item, 1, 1);
363}
364EXPORT_SYMBOL(inc_zone_page_state);
365
366void dec_zone_page_state(struct page *page, enum zone_stat_item item)
367{
368 mod_state(page_zone(page), item, -1, -1);
369}
370EXPORT_SYMBOL(dec_zone_page_state);
371#else
372/*
373 * Use interrupt disable to serialize counter updates
374 */
375void mod_zone_page_state(struct zone *zone, enum zone_stat_item item,
376 int delta)
377{
378 unsigned long flags;
379
380 local_irq_save(flags);
381 __mod_zone_page_state(zone, item, delta);
382 local_irq_restore(flags);
383}
384EXPORT_SYMBOL(mod_zone_page_state);
385
Christoph Lameterca889e62006-06-30 01:55:44 -0700386void inc_zone_state(struct zone *zone, enum zone_stat_item item)
387{
388 unsigned long flags;
389
390 local_irq_save(flags);
391 __inc_zone_state(zone, item);
392 local_irq_restore(flags);
393}
394
Christoph Lameter2244b952006-06-30 01:55:33 -0700395void inc_zone_page_state(struct page *page, enum zone_stat_item item)
396{
397 unsigned long flags;
398 struct zone *zone;
Christoph Lameter2244b952006-06-30 01:55:33 -0700399
400 zone = page_zone(page);
401 local_irq_save(flags);
Christoph Lameterca889e62006-06-30 01:55:44 -0700402 __inc_zone_state(zone, item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700403 local_irq_restore(flags);
404}
405EXPORT_SYMBOL(inc_zone_page_state);
406
407void dec_zone_page_state(struct page *page, enum zone_stat_item item)
408{
409 unsigned long flags;
Christoph Lameter2244b952006-06-30 01:55:33 -0700410
Christoph Lameter2244b952006-06-30 01:55:33 -0700411 local_irq_save(flags);
Christoph Lametera302eb42006-08-31 21:27:34 -0700412 __dec_zone_page_state(page, item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700413 local_irq_restore(flags);
414}
415EXPORT_SYMBOL(dec_zone_page_state);
Christoph Lameter7c839122010-12-14 10:28:46 -0600416#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700417
418/*
419 * Update the zone counters for one cpu.
Christoph Lameter4037d452007-05-09 02:35:14 -0700420 *
Christoph Lametera7f75e22008-02-04 22:29:16 -0800421 * The cpu specified must be either the current cpu or a processor that
422 * is not online. If it is the current cpu then the execution thread must
423 * be pinned to the current cpu.
424 *
Christoph Lameter4037d452007-05-09 02:35:14 -0700425 * Note that refresh_cpu_vm_stats strives to only access
426 * node local memory. The per cpu pagesets on remote zones are placed
427 * in the memory local to the processor using that pageset. So the
428 * loop over all zones will access a series of cachelines local to
429 * the processor.
430 *
431 * The call to zone_page_state_add updates the cachelines with the
432 * statistics in the remote zone struct as well as the global cachelines
433 * with the global counters. These could cause remote node cache line
434 * bouncing and will have to be only done when necessary.
Christoph Lameter2244b952006-06-30 01:55:33 -0700435 */
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +0100436bool refresh_cpu_vm_stats(int cpu)
Christoph Lameter2244b952006-06-30 01:55:33 -0700437{
438 struct zone *zone;
439 int i;
Christoph Lametera7f75e22008-02-04 22:29:16 -0800440 int global_diff[NR_VM_ZONE_STAT_ITEMS] = { 0, };
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +0100441 bool vm_activity = false;
Christoph Lameter2244b952006-06-30 01:55:33 -0700442
KOSAKI Motohiroee99c712009-03-31 15:19:31 -0700443 for_each_populated_zone(zone) {
Christoph Lameter4037d452007-05-09 02:35:14 -0700444 struct per_cpu_pageset *p;
Christoph Lameter2244b952006-06-30 01:55:33 -0700445
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900446 p = per_cpu_ptr(zone->pageset, cpu);
Christoph Lameter2244b952006-06-30 01:55:33 -0700447
448 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
Christoph Lameter4037d452007-05-09 02:35:14 -0700449 if (p->vm_stat_diff[i]) {
Christoph Lametera7f75e22008-02-04 22:29:16 -0800450 unsigned long flags;
451 int v;
452
Christoph Lameter2244b952006-06-30 01:55:33 -0700453 local_irq_save(flags);
Christoph Lametera7f75e22008-02-04 22:29:16 -0800454 v = p->vm_stat_diff[i];
Christoph Lameter4037d452007-05-09 02:35:14 -0700455 p->vm_stat_diff[i] = 0;
Christoph Lametera7f75e22008-02-04 22:29:16 -0800456 local_irq_restore(flags);
457 atomic_long_add(v, &zone->vm_stat[i]);
458 global_diff[i] += v;
Christoph Lameter4037d452007-05-09 02:35:14 -0700459#ifdef CONFIG_NUMA
460 /* 3 seconds idle till flush */
461 p->expire = 3;
462#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700463 }
Dimitri Sivanich468fd622008-04-28 02:13:37 -0700464 cond_resched();
Christoph Lameter4037d452007-05-09 02:35:14 -0700465#ifdef CONFIG_NUMA
466 /*
467 * Deal with draining the remote pageset of this
468 * processor
469 *
470 * Check if there are pages remaining in this pageset
471 * if not then there is nothing to expire.
472 */
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800473 if (!p->expire || !p->pcp.count)
Christoph Lameter4037d452007-05-09 02:35:14 -0700474 continue;
475
476 /*
477 * We never drain zones local to this processor.
478 */
479 if (zone_to_nid(zone) == numa_node_id()) {
480 p->expire = 0;
481 continue;
482 }
483
484 p->expire--;
485 if (p->expire)
486 continue;
487
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +0100488 if (p->pcp.count) {
489 vm_activity = true;
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800490 drain_zone_pages(zone, &p->pcp);
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +0100491 }
Christoph Lameter4037d452007-05-09 02:35:14 -0700492#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700493 }
Christoph Lametera7f75e22008-02-04 22:29:16 -0800494
495 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +0100496 if (global_diff[i]) {
Christoph Lametera7f75e22008-02-04 22:29:16 -0800497 atomic_long_add(global_diff[i], &vm_stat[i]);
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +0100498 vm_activity = true;
499 }
500
501 return vm_activity;
502
Christoph Lameter2244b952006-06-30 01:55:33 -0700503}
504
Cody P Schafer40f4b1e2013-04-29 15:08:38 -0700505/*
506 * this is only called if !populated_zone(zone), which implies no other users of
507 * pset->vm_stat_diff[] exsist.
508 */
Minchan Kim5a883812012-10-08 16:33:39 -0700509void drain_zonestat(struct zone *zone, struct per_cpu_pageset *pset)
510{
511 int i;
512
513 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
514 if (pset->vm_stat_diff[i]) {
515 int v = pset->vm_stat_diff[i];
516 pset->vm_stat_diff[i] = 0;
517 atomic_long_add(v, &zone->vm_stat[i]);
518 atomic_long_add(v, &vm_stat[i]);
519 }
520}
Christoph Lameter2244b952006-06-30 01:55:33 -0700521#endif
522
Christoph Lameterca889e62006-06-30 01:55:44 -0700523#ifdef CONFIG_NUMA
524/*
525 * zonelist = the list of zones passed to the allocator
526 * z = the zone from which the allocation occurred.
527 *
528 * Must be called with interrupts disabled.
Andi Kleen78afd562011-03-22 16:33:12 -0700529 *
530 * When __GFP_OTHER_NODE is set assume the node of the preferred
531 * zone is the local node. This is useful for daemons who allocate
532 * memory on behalf of other processes.
Christoph Lameterca889e62006-06-30 01:55:44 -0700533 */
Andi Kleen78afd562011-03-22 16:33:12 -0700534void zone_statistics(struct zone *preferred_zone, struct zone *z, gfp_t flags)
Christoph Lameterca889e62006-06-30 01:55:44 -0700535{
Mel Gorman18ea7e72008-04-28 02:12:14 -0700536 if (z->zone_pgdat == preferred_zone->zone_pgdat) {
Christoph Lameterca889e62006-06-30 01:55:44 -0700537 __inc_zone_state(z, NUMA_HIT);
538 } else {
539 __inc_zone_state(z, NUMA_MISS);
Mel Gorman18ea7e72008-04-28 02:12:14 -0700540 __inc_zone_state(preferred_zone, NUMA_FOREIGN);
Christoph Lameterca889e62006-06-30 01:55:44 -0700541 }
Andi Kleen78afd562011-03-22 16:33:12 -0700542 if (z->node == ((flags & __GFP_OTHER_NODE) ?
543 preferred_zone->node : numa_node_id()))
Christoph Lameterca889e62006-06-30 01:55:44 -0700544 __inc_zone_state(z, NUMA_LOCAL);
545 else
546 __inc_zone_state(z, NUMA_OTHER);
547}
548#endif
549
Mel Gormand7a57522010-05-24 14:32:25 -0700550#ifdef CONFIG_COMPACTION
Namhyung Kim36deb0b2010-10-26 14:22:04 -0700551
Mel Gormand7a57522010-05-24 14:32:25 -0700552struct contig_page_info {
553 unsigned long free_pages;
554 unsigned long free_blocks_total;
555 unsigned long free_blocks_suitable;
556};
557
558/*
559 * Calculate the number of free pages in a zone, how many contiguous
560 * pages are free and how many are large enough to satisfy an allocation of
561 * the target size. Note that this function makes no attempt to estimate
562 * how many suitable free blocks there *might* be if MOVABLE pages were
563 * migrated. Calculating that is possible, but expensive and can be
564 * figured out from userspace
565 */
566static void fill_contig_page_info(struct zone *zone,
567 unsigned int suitable_order,
568 struct contig_page_info *info)
569{
570 unsigned int order;
571
572 info->free_pages = 0;
573 info->free_blocks_total = 0;
574 info->free_blocks_suitable = 0;
575
576 for (order = 0; order < MAX_ORDER; order++) {
577 unsigned long blocks;
578
579 /* Count number of free blocks */
580 blocks = zone->free_area[order].nr_free;
581 info->free_blocks_total += blocks;
582
583 /* Count free base pages */
584 info->free_pages += blocks << order;
585
586 /* Count the suitable free blocks */
587 if (order >= suitable_order)
588 info->free_blocks_suitable += blocks <<
589 (order - suitable_order);
590 }
591}
Mel Gormanf1a5ab12010-05-24 14:32:26 -0700592
593/*
594 * A fragmentation index only makes sense if an allocation of a requested
595 * size would fail. If that is true, the fragmentation index indicates
596 * whether external fragmentation or a lack of memory was the problem.
597 * The value can be used to determine if page reclaim or compaction
598 * should be used
599 */
Mel Gorman56de7262010-05-24 14:32:30 -0700600static int __fragmentation_index(unsigned int order, struct contig_page_info *info)
Mel Gormanf1a5ab12010-05-24 14:32:26 -0700601{
602 unsigned long requested = 1UL << order;
603
604 if (!info->free_blocks_total)
605 return 0;
606
607 /* Fragmentation index only makes sense when a request would fail */
608 if (info->free_blocks_suitable)
609 return -1000;
610
611 /*
612 * Index is between 0 and 1 so return within 3 decimal places
613 *
614 * 0 => allocation would fail due to lack of memory
615 * 1 => allocation would fail due to fragmentation
616 */
617 return 1000 - div_u64( (1000+(div_u64(info->free_pages * 1000ULL, requested))), info->free_blocks_total);
618}
Mel Gorman56de7262010-05-24 14:32:30 -0700619
620/* Same as __fragmentation index but allocs contig_page_info on stack */
621int fragmentation_index(struct zone *zone, unsigned int order)
622{
623 struct contig_page_info info;
624
625 fill_contig_page_info(zone, order, &info);
626 return __fragmentation_index(order, &info);
627}
Mel Gormand7a57522010-05-24 14:32:25 -0700628#endif
629
630#if defined(CONFIG_PROC_FS) || defined(CONFIG_COMPACTION)
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400631#include <linux/proc_fs.h>
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700632#include <linux/seq_file.h>
633
Mel Gorman467c9962007-10-16 01:26:02 -0700634static char * const migratetype_names[MIGRATE_TYPES] = {
635 "Unmovable",
636 "Reclaimable",
637 "Movable",
638 "Reserve",
Michal Nazarewicz47118af2011-12-29 13:09:50 +0100639#ifdef CONFIG_CMA
640 "CMA",
641#endif
Minchan Kim194159f2013-02-22 16:33:58 -0800642#ifdef CONFIG_MEMORY_ISOLATION
KOSAKI Motohiro91446b02008-04-15 14:34:42 -0700643 "Isolate",
Minchan Kim194159f2013-02-22 16:33:58 -0800644#endif
Mel Gorman467c9962007-10-16 01:26:02 -0700645};
646
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700647static void *frag_start(struct seq_file *m, loff_t *pos)
648{
649 pg_data_t *pgdat;
650 loff_t node = *pos;
651 for (pgdat = first_online_pgdat();
652 pgdat && node;
653 pgdat = next_online_pgdat(pgdat))
654 --node;
655
656 return pgdat;
657}
658
659static void *frag_next(struct seq_file *m, void *arg, loff_t *pos)
660{
661 pg_data_t *pgdat = (pg_data_t *)arg;
662
663 (*pos)++;
664 return next_online_pgdat(pgdat);
665}
666
667static void frag_stop(struct seq_file *m, void *arg)
668{
669}
670
Mel Gorman467c9962007-10-16 01:26:02 -0700671/* Walk all the zones in a node and print using a callback */
672static void walk_zones_in_node(struct seq_file *m, pg_data_t *pgdat,
673 void (*print)(struct seq_file *m, pg_data_t *, struct zone *))
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700674{
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700675 struct zone *zone;
676 struct zone *node_zones = pgdat->node_zones;
677 unsigned long flags;
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700678
679 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
680 if (!populated_zone(zone))
681 continue;
682
683 spin_lock_irqsave(&zone->lock, flags);
Mel Gorman467c9962007-10-16 01:26:02 -0700684 print(m, pgdat, zone);
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700685 spin_unlock_irqrestore(&zone->lock, flags);
Mel Gorman467c9962007-10-16 01:26:02 -0700686 }
687}
Mel Gormand7a57522010-05-24 14:32:25 -0700688#endif
Mel Gorman467c9962007-10-16 01:26:02 -0700689
David Rientjes0d6617c2011-09-14 16:21:05 -0700690#if defined(CONFIG_PROC_FS) || defined(CONFIG_SYSFS) || defined(CONFIG_NUMA)
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700691#ifdef CONFIG_ZONE_DMA
692#define TEXT_FOR_DMA(xx) xx "_dma",
693#else
694#define TEXT_FOR_DMA(xx)
695#endif
696
697#ifdef CONFIG_ZONE_DMA32
698#define TEXT_FOR_DMA32(xx) xx "_dma32",
699#else
700#define TEXT_FOR_DMA32(xx)
701#endif
702
703#ifdef CONFIG_HIGHMEM
704#define TEXT_FOR_HIGHMEM(xx) xx "_high",
705#else
706#define TEXT_FOR_HIGHMEM(xx)
707#endif
708
709#define TEXTS_FOR_ZONES(xx) TEXT_FOR_DMA(xx) TEXT_FOR_DMA32(xx) xx "_normal", \
710 TEXT_FOR_HIGHMEM(xx) xx "_movable",
711
712const char * const vmstat_text[] = {
713 /* Zoned VM counters */
714 "nr_free_pages",
715 "nr_inactive_anon",
716 "nr_active_anon",
717 "nr_inactive_file",
718 "nr_active_file",
719 "nr_unevictable",
720 "nr_mlock",
721 "nr_anon_pages",
722 "nr_mapped",
723 "nr_file_pages",
724 "nr_dirty",
725 "nr_writeback",
726 "nr_slab_reclaimable",
727 "nr_slab_unreclaimable",
728 "nr_page_table_pages",
729 "nr_kernel_stack",
730 "nr_unstable",
731 "nr_bounce",
732 "nr_vmscan_write",
Mel Gorman49ea7eb2011-10-31 17:07:59 -0700733 "nr_vmscan_immediate_reclaim",
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700734 "nr_writeback_temp",
735 "nr_isolated_anon",
736 "nr_isolated_file",
737 "nr_shmem",
738 "nr_dirtied",
739 "nr_written",
740
741#ifdef CONFIG_NUMA
742 "numa_hit",
743 "numa_miss",
744 "numa_foreign",
745 "numa_interleave",
746 "numa_local",
747 "numa_other",
748#endif
749 "nr_anon_transparent_hugepages",
Bartlomiej Zolnierkiewiczd1ce7492012-10-08 16:32:02 -0700750 "nr_free_cma",
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700751 "nr_dirty_threshold",
752 "nr_dirty_background_threshold",
753
754#ifdef CONFIG_VM_EVENT_COUNTERS
755 "pgpgin",
756 "pgpgout",
757 "pswpin",
758 "pswpout",
759
760 TEXTS_FOR_ZONES("pgalloc")
761
762 "pgfree",
763 "pgactivate",
764 "pgdeactivate",
765
766 "pgfault",
767 "pgmajfault",
768
769 TEXTS_FOR_ZONES("pgrefill")
Ying Han904249a2012-04-25 16:01:48 -0700770 TEXTS_FOR_ZONES("pgsteal_kswapd")
771 TEXTS_FOR_ZONES("pgsteal_direct")
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700772 TEXTS_FOR_ZONES("pgscan_kswapd")
773 TEXTS_FOR_ZONES("pgscan_direct")
Mel Gorman68243e72012-07-31 16:44:39 -0700774 "pgscan_direct_throttle",
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700775
776#ifdef CONFIG_NUMA
777 "zone_reclaim_failed",
778#endif
779 "pginodesteal",
780 "slabs_scanned",
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700781 "kswapd_inodesteal",
782 "kswapd_low_wmark_hit_quickly",
783 "kswapd_high_wmark_hit_quickly",
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700784 "pageoutrun",
785 "allocstall",
786
787 "pgrotated",
788
Mel Gorman03c5a6e2012-11-02 14:52:48 +0000789#ifdef CONFIG_NUMA_BALANCING
790 "numa_pte_updates",
Mel Gormanf99510d2013-11-12 15:08:32 -0800791 "numa_huge_pte_updates",
Mel Gorman03c5a6e2012-11-02 14:52:48 +0000792 "numa_hint_faults",
793 "numa_hint_faults_local",
794 "numa_pages_migrated",
795#endif
Mel Gorman5647bc22012-10-19 10:46:20 +0100796#ifdef CONFIG_MIGRATION
797 "pgmigrate_success",
798 "pgmigrate_fail",
799#endif
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700800#ifdef CONFIG_COMPACTION
Mel Gorman397487d2012-10-19 12:00:10 +0100801 "compact_migrate_scanned",
802 "compact_free_scanned",
803 "compact_isolated",
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700804 "compact_stall",
805 "compact_fail",
806 "compact_success",
807#endif
808
809#ifdef CONFIG_HUGETLB_PAGE
810 "htlb_buddy_alloc_success",
811 "htlb_buddy_alloc_fail",
812#endif
813 "unevictable_pgs_culled",
814 "unevictable_pgs_scanned",
815 "unevictable_pgs_rescued",
816 "unevictable_pgs_mlocked",
817 "unevictable_pgs_munlocked",
818 "unevictable_pgs_cleared",
819 "unevictable_pgs_stranded",
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700820
821#ifdef CONFIG_TRANSPARENT_HUGEPAGE
822 "thp_fault_alloc",
823 "thp_fault_fallback",
824 "thp_collapse_alloc",
825 "thp_collapse_alloc_failed",
826 "thp_split",
Kirill A. Shutemovd8a8e1f2012-12-12 13:51:09 -0800827 "thp_zero_page_alloc",
828 "thp_zero_page_alloc_failed",
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700829#endif
830
831#endif /* CONFIG_VM_EVENTS_COUNTERS */
832};
David Rientjes0d6617c2011-09-14 16:21:05 -0700833#endif /* CONFIG_PROC_FS || CONFIG_SYSFS || CONFIG_NUMA */
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700834
835
Mel Gormand7a57522010-05-24 14:32:25 -0700836#ifdef CONFIG_PROC_FS
Mel Gorman467c9962007-10-16 01:26:02 -0700837static void frag_show_print(struct seq_file *m, pg_data_t *pgdat,
838 struct zone *zone)
839{
840 int order;
841
842 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
843 for (order = 0; order < MAX_ORDER; ++order)
844 seq_printf(m, "%6lu ", zone->free_area[order].nr_free);
845 seq_putc(m, '\n');
846}
847
848/*
849 * This walks the free areas for each zone.
850 */
851static int frag_show(struct seq_file *m, void *arg)
852{
853 pg_data_t *pgdat = (pg_data_t *)arg;
854 walk_zones_in_node(m, pgdat, frag_show_print);
855 return 0;
856}
857
858static void pagetypeinfo_showfree_print(struct seq_file *m,
859 pg_data_t *pgdat, struct zone *zone)
860{
861 int order, mtype;
862
863 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++) {
864 seq_printf(m, "Node %4d, zone %8s, type %12s ",
865 pgdat->node_id,
866 zone->name,
867 migratetype_names[mtype]);
868 for (order = 0; order < MAX_ORDER; ++order) {
869 unsigned long freecount = 0;
870 struct free_area *area;
871 struct list_head *curr;
872
873 area = &(zone->free_area[order]);
874
875 list_for_each(curr, &area->free_list[mtype])
876 freecount++;
877 seq_printf(m, "%6lu ", freecount);
878 }
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700879 seq_putc(m, '\n');
880 }
Mel Gorman467c9962007-10-16 01:26:02 -0700881}
882
883/* Print out the free pages at each order for each migatetype */
884static int pagetypeinfo_showfree(struct seq_file *m, void *arg)
885{
886 int order;
887 pg_data_t *pgdat = (pg_data_t *)arg;
888
889 /* Print header */
890 seq_printf(m, "%-43s ", "Free pages count per migrate type at order");
891 for (order = 0; order < MAX_ORDER; ++order)
892 seq_printf(m, "%6d ", order);
893 seq_putc(m, '\n');
894
895 walk_zones_in_node(m, pgdat, pagetypeinfo_showfree_print);
896
897 return 0;
898}
899
900static void pagetypeinfo_showblockcount_print(struct seq_file *m,
901 pg_data_t *pgdat, struct zone *zone)
902{
903 int mtype;
904 unsigned long pfn;
905 unsigned long start_pfn = zone->zone_start_pfn;
Cody P Schafer108bcc92013-02-22 16:35:23 -0800906 unsigned long end_pfn = zone_end_pfn(zone);
Mel Gorman467c9962007-10-16 01:26:02 -0700907 unsigned long count[MIGRATE_TYPES] = { 0, };
908
909 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
910 struct page *page;
911
912 if (!pfn_valid(pfn))
913 continue;
914
915 page = pfn_to_page(pfn);
Mel Gormaneb335752009-05-13 17:34:48 +0100916
917 /* Watch for unexpected holes punched in the memmap */
918 if (!memmap_valid_within(pfn, page, zone))
Mel Gormane80d6a22008-08-14 11:10:14 +0100919 continue;
Mel Gormaneb335752009-05-13 17:34:48 +0100920
Mel Gorman467c9962007-10-16 01:26:02 -0700921 mtype = get_pageblock_migratetype(page);
922
Mel Gormane80d6a22008-08-14 11:10:14 +0100923 if (mtype < MIGRATE_TYPES)
924 count[mtype]++;
Mel Gorman467c9962007-10-16 01:26:02 -0700925 }
926
927 /* Print counts */
928 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
929 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
930 seq_printf(m, "%12lu ", count[mtype]);
931 seq_putc(m, '\n');
932}
933
934/* Print out the free pages at each order for each migratetype */
935static int pagetypeinfo_showblockcount(struct seq_file *m, void *arg)
936{
937 int mtype;
938 pg_data_t *pgdat = (pg_data_t *)arg;
939
940 seq_printf(m, "\n%-23s", "Number of blocks type ");
941 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
942 seq_printf(m, "%12s ", migratetype_names[mtype]);
943 seq_putc(m, '\n');
944 walk_zones_in_node(m, pgdat, pagetypeinfo_showblockcount_print);
945
946 return 0;
947}
948
949/*
950 * This prints out statistics in relation to grouping pages by mobility.
951 * It is expensive to collect so do not constantly read the file.
952 */
953static int pagetypeinfo_show(struct seq_file *m, void *arg)
954{
955 pg_data_t *pgdat = (pg_data_t *)arg;
956
KOSAKI Motohiro41b25a32008-04-30 00:52:13 -0700957 /* check memoryless node */
Lai Jiangshana47b53c2012-12-12 13:51:37 -0800958 if (!node_state(pgdat->node_id, N_MEMORY))
KOSAKI Motohiro41b25a32008-04-30 00:52:13 -0700959 return 0;
960
Mel Gorman467c9962007-10-16 01:26:02 -0700961 seq_printf(m, "Page block order: %d\n", pageblock_order);
962 seq_printf(m, "Pages per block: %lu\n", pageblock_nr_pages);
963 seq_putc(m, '\n');
964 pagetypeinfo_showfree(m, pgdat);
965 pagetypeinfo_showblockcount(m, pgdat);
966
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700967 return 0;
968}
969
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400970static const struct seq_operations fragmentation_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700971 .start = frag_start,
972 .next = frag_next,
973 .stop = frag_stop,
974 .show = frag_show,
975};
976
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +0400977static int fragmentation_open(struct inode *inode, struct file *file)
978{
979 return seq_open(file, &fragmentation_op);
980}
981
982static const struct file_operations fragmentation_file_operations = {
983 .open = fragmentation_open,
984 .read = seq_read,
985 .llseek = seq_lseek,
986 .release = seq_release,
987};
988
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +0400989static const struct seq_operations pagetypeinfo_op = {
Mel Gorman467c9962007-10-16 01:26:02 -0700990 .start = frag_start,
991 .next = frag_next,
992 .stop = frag_stop,
993 .show = pagetypeinfo_show,
994};
995
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +0400996static int pagetypeinfo_open(struct inode *inode, struct file *file)
997{
998 return seq_open(file, &pagetypeinfo_op);
999}
1000
1001static const struct file_operations pagetypeinfo_file_ops = {
1002 .open = pagetypeinfo_open,
1003 .read = seq_read,
1004 .llseek = seq_lseek,
1005 .release = seq_release,
1006};
1007
Mel Gorman467c9962007-10-16 01:26:02 -07001008static void zoneinfo_show_print(struct seq_file *m, pg_data_t *pgdat,
1009 struct zone *zone)
1010{
1011 int i;
1012 seq_printf(m, "Node %d, zone %8s", pgdat->node_id, zone->name);
1013 seq_printf(m,
1014 "\n pages free %lu"
1015 "\n min %lu"
1016 "\n low %lu"
1017 "\n high %lu"
Wu Fengguang08d9ae72009-06-16 15:32:30 -07001018 "\n scanned %lu"
Mel Gorman467c9962007-10-16 01:26:02 -07001019 "\n spanned %lu"
Jiang Liu9feedc92012-12-12 13:52:12 -08001020 "\n present %lu"
1021 "\n managed %lu",
Mel Gorman88f5acf2011-01-13 15:45:41 -08001022 zone_page_state(zone, NR_FREE_PAGES),
Mel Gorman41858962009-06-16 15:32:12 -07001023 min_wmark_pages(zone),
1024 low_wmark_pages(zone),
1025 high_wmark_pages(zone),
Mel Gorman467c9962007-10-16 01:26:02 -07001026 zone->pages_scanned,
Mel Gorman467c9962007-10-16 01:26:02 -07001027 zone->spanned_pages,
Jiang Liu9feedc92012-12-12 13:52:12 -08001028 zone->present_pages,
1029 zone->managed_pages);
Mel Gorman467c9962007-10-16 01:26:02 -07001030
1031 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
1032 seq_printf(m, "\n %-12s %lu", vmstat_text[i],
1033 zone_page_state(zone, i));
1034
1035 seq_printf(m,
1036 "\n protection: (%lu",
1037 zone->lowmem_reserve[0]);
1038 for (i = 1; i < ARRAY_SIZE(zone->lowmem_reserve); i++)
1039 seq_printf(m, ", %lu", zone->lowmem_reserve[i]);
1040 seq_printf(m,
1041 ")"
1042 "\n pagesets");
1043 for_each_online_cpu(i) {
1044 struct per_cpu_pageset *pageset;
Mel Gorman467c9962007-10-16 01:26:02 -07001045
Christoph Lameter99dcc3e2010-01-05 15:34:51 +09001046 pageset = per_cpu_ptr(zone->pageset, i);
Christoph Lameter3dfa5722008-02-04 22:29:19 -08001047 seq_printf(m,
1048 "\n cpu: %i"
1049 "\n count: %i"
1050 "\n high: %i"
1051 "\n batch: %i",
1052 i,
1053 pageset->pcp.count,
1054 pageset->pcp.high,
1055 pageset->pcp.batch);
Mel Gorman467c9962007-10-16 01:26:02 -07001056#ifdef CONFIG_SMP
1057 seq_printf(m, "\n vm stats threshold: %d",
1058 pageset->stat_threshold);
1059#endif
1060 }
1061 seq_printf(m,
1062 "\n all_unreclaimable: %u"
Rik van Riel556adec2008-10-18 20:26:34 -07001063 "\n start_pfn: %lu"
1064 "\n inactive_ratio: %u",
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -08001065 zone->all_unreclaimable,
Rik van Riel556adec2008-10-18 20:26:34 -07001066 zone->zone_start_pfn,
1067 zone->inactive_ratio);
Mel Gorman467c9962007-10-16 01:26:02 -07001068 seq_putc(m, '\n');
1069}
1070
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001071/*
1072 * Output information about zones in @pgdat.
1073 */
1074static int zoneinfo_show(struct seq_file *m, void *arg)
1075{
Mel Gorman467c9962007-10-16 01:26:02 -07001076 pg_data_t *pgdat = (pg_data_t *)arg;
1077 walk_zones_in_node(m, pgdat, zoneinfo_show_print);
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001078 return 0;
1079}
1080
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +04001081static const struct seq_operations zoneinfo_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001082 .start = frag_start, /* iterate over all zones. The same as in
1083 * fragmentation. */
1084 .next = frag_next,
1085 .stop = frag_stop,
1086 .show = zoneinfo_show,
1087};
1088
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +04001089static int zoneinfo_open(struct inode *inode, struct file *file)
1090{
1091 return seq_open(file, &zoneinfo_op);
1092}
1093
1094static const struct file_operations proc_zoneinfo_file_operations = {
1095 .open = zoneinfo_open,
1096 .read = seq_read,
1097 .llseek = seq_lseek,
1098 .release = seq_release,
1099};
1100
Michael Rubin79da8262010-10-26 14:21:36 -07001101enum writeback_stat_item {
1102 NR_DIRTY_THRESHOLD,
1103 NR_DIRTY_BG_THRESHOLD,
1104 NR_VM_WRITEBACK_STAT_ITEMS,
1105};
1106
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001107static void *vmstat_start(struct seq_file *m, loff_t *pos)
1108{
Christoph Lameter2244b952006-06-30 01:55:33 -07001109 unsigned long *v;
Michael Rubin79da8262010-10-26 14:21:36 -07001110 int i, stat_items_size;
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001111
1112 if (*pos >= ARRAY_SIZE(vmstat_text))
1113 return NULL;
Michael Rubin79da8262010-10-26 14:21:36 -07001114 stat_items_size = NR_VM_ZONE_STAT_ITEMS * sizeof(unsigned long) +
1115 NR_VM_WRITEBACK_STAT_ITEMS * sizeof(unsigned long);
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001116
Christoph Lameterf8891e52006-06-30 01:55:45 -07001117#ifdef CONFIG_VM_EVENT_COUNTERS
Michael Rubin79da8262010-10-26 14:21:36 -07001118 stat_items_size += sizeof(struct vm_event_state);
Christoph Lameterf8891e52006-06-30 01:55:45 -07001119#endif
Michael Rubin79da8262010-10-26 14:21:36 -07001120
1121 v = kmalloc(stat_items_size, GFP_KERNEL);
Christoph Lameter2244b952006-06-30 01:55:33 -07001122 m->private = v;
1123 if (!v)
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001124 return ERR_PTR(-ENOMEM);
Christoph Lameter2244b952006-06-30 01:55:33 -07001125 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
1126 v[i] = global_page_state(i);
Michael Rubin79da8262010-10-26 14:21:36 -07001127 v += NR_VM_ZONE_STAT_ITEMS;
1128
1129 global_dirty_limits(v + NR_DIRTY_BG_THRESHOLD,
1130 v + NR_DIRTY_THRESHOLD);
1131 v += NR_VM_WRITEBACK_STAT_ITEMS;
1132
Christoph Lameterf8891e52006-06-30 01:55:45 -07001133#ifdef CONFIG_VM_EVENT_COUNTERS
Michael Rubin79da8262010-10-26 14:21:36 -07001134 all_vm_events(v);
1135 v[PGPGIN] /= 2; /* sectors -> kbytes */
1136 v[PGPGOUT] /= 2;
Christoph Lameterf8891e52006-06-30 01:55:45 -07001137#endif
Wu Fengguangff8b16d2010-11-04 01:56:49 +08001138 return (unsigned long *)m->private + *pos;
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001139}
1140
1141static void *vmstat_next(struct seq_file *m, void *arg, loff_t *pos)
1142{
1143 (*pos)++;
1144 if (*pos >= ARRAY_SIZE(vmstat_text))
1145 return NULL;
1146 return (unsigned long *)m->private + *pos;
1147}
1148
1149static int vmstat_show(struct seq_file *m, void *arg)
1150{
1151 unsigned long *l = arg;
1152 unsigned long off = l - (unsigned long *)m->private;
1153
1154 seq_printf(m, "%s %lu\n", vmstat_text[off], *l);
1155 return 0;
1156}
1157
1158static void vmstat_stop(struct seq_file *m, void *arg)
1159{
1160 kfree(m->private);
1161 m->private = NULL;
1162}
1163
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +04001164static const struct seq_operations vmstat_op = {
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001165 .start = vmstat_start,
1166 .next = vmstat_next,
1167 .stop = vmstat_stop,
1168 .show = vmstat_show,
1169};
1170
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +04001171static int vmstat_open(struct inode *inode, struct file *file)
1172{
1173 return seq_open(file, &vmstat_op);
1174}
1175
1176static const struct file_operations proc_vmstat_file_operations = {
1177 .open = vmstat_open,
1178 .read = seq_read,
1179 .llseek = seq_lseek,
1180 .release = seq_release,
1181};
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001182#endif /* CONFIG_PROC_FS */
1183
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001184#ifdef CONFIG_SMP
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001185static DEFINE_PER_CPU(struct delayed_work, vmstat_work);
Christoph Lameter77461ab2007-05-09 02:35:13 -07001186int sysctl_stat_interval __read_mostly = HZ;
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +01001187static struct cpumask vmstat_off_cpus;
1188struct delayed_work vmstat_monitor_work;
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001189
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +01001190static inline bool need_vmstat(int cpu)
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001191{
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +01001192 struct zone *zone;
1193 int i;
1194
1195 for_each_populated_zone(zone) {
1196 struct per_cpu_pageset *p;
1197
1198 p = per_cpu_ptr(zone->pageset, cpu);
1199
1200 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
1201 if (p->vm_stat_diff[i])
1202 return true;
1203
1204 if (zone_to_nid(zone) != numa_node_id() && p->pcp.count)
1205 return true;
1206 }
1207
1208 return false;
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001209}
1210
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +01001211static void vmstat_update(struct work_struct *w);
1212
1213static void start_cpu_timer(int cpu)
1214{
1215 struct delayed_work *work = &per_cpu(vmstat_work, cpu);
1216
1217 cpumask_clear_cpu(cpu, &vmstat_off_cpus);
1218 schedule_delayed_work_on(cpu, work, __round_jiffies_relative(HZ, cpu));
1219}
1220
1221static void __cpuinit setup_cpu_timer(int cpu)
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001222{
Tejun Heo1871e522009-10-29 22:34:13 +09001223 struct delayed_work *work = &per_cpu(vmstat_work, cpu);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001224
Tejun Heo203b42f2012-08-21 13:18:23 -07001225 INIT_DEFERRABLE_WORK(work, vmstat_update);
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +01001226 start_cpu_timer(cpu);
1227}
1228
1229static void vmstat_update_monitor(struct work_struct *w)
1230{
1231 int cpu;
1232
1233 for_each_cpu_and(cpu, &vmstat_off_cpus, cpu_online_mask)
1234 if (need_vmstat(cpu))
1235 start_cpu_timer(cpu);
1236
1237 queue_delayed_work(system_unbound_wq, &vmstat_monitor_work,
1238 round_jiffies_relative(sysctl_stat_interval));
1239}
1240
1241
1242static void vmstat_update(struct work_struct *w)
1243{
1244 int cpu = smp_processor_id();
1245
1246 if (likely(refresh_cpu_vm_stats(cpu)))
1247 schedule_delayed_work(&__get_cpu_var(vmstat_work),
1248 round_jiffies_relative(sysctl_stat_interval));
1249 else
1250 cpumask_set_cpu(cpu, &vmstat_off_cpus);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001251}
1252
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001253/*
1254 * Use the cpu notifier to insure that the thresholds are recalculated
1255 * when necessary.
1256 */
1257static int __cpuinit vmstat_cpuup_callback(struct notifier_block *nfb,
1258 unsigned long action,
1259 void *hcpu)
1260{
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001261 long cpu = (long)hcpu;
1262
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001263 switch (action) {
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001264 case CPU_ONLINE:
1265 case CPU_ONLINE_FROZEN:
KAMEZAWA Hiroyuki5ee28a42010-09-09 16:38:14 -07001266 refresh_zone_stat_thresholds();
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +01001267 setup_cpu_timer(cpu);
Christoph Lameterad596922010-01-05 15:34:51 +09001268 node_set_state(cpu_to_node(cpu), N_CPU);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001269 break;
1270 case CPU_DOWN_PREPARE:
1271 case CPU_DOWN_PREPARE_FROZEN:
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +01001272 if (!cpumask_test_cpu(cpu, &vmstat_off_cpus)) {
1273 cancel_delayed_work_sync(&per_cpu(vmstat_work, cpu));
1274 per_cpu(vmstat_work, cpu).work.func = NULL;
1275 }
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001276 break;
1277 case CPU_DOWN_FAILED:
1278 case CPU_DOWN_FAILED_FROZEN:
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +01001279 setup_cpu_timer(cpu);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001280 break;
Andy Whitcroftce421c72006-12-06 20:33:08 -08001281 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001282 case CPU_DEAD_FROZEN:
Andy Whitcroftce421c72006-12-06 20:33:08 -08001283 refresh_zone_stat_thresholds();
1284 break;
1285 default:
1286 break;
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001287 }
1288 return NOTIFY_OK;
1289}
1290
1291static struct notifier_block __cpuinitdata vmstat_notifier =
1292 { &vmstat_cpuup_callback, NULL, 0 };
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001293#endif
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001294
Adrian Bunke2fc88d2007-10-16 01:26:27 -07001295static int __init setup_vmstat(void)
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001296{
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001297#ifdef CONFIG_SMP
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001298 int cpu;
1299
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001300 register_cpu_notifier(&vmstat_notifier);
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001301
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +01001302 INIT_DEFERRABLE_WORK(&vmstat_monitor_work,
1303 vmstat_update_monitor);
1304 queue_delayed_work(system_unbound_wq,
1305 &vmstat_monitor_work,
1306 round_jiffies_relative(HZ));
1307
Christoph Lameterd1187ed2007-05-09 02:35:12 -07001308 for_each_online_cpu(cpu)
Gilad Ben-Yossef7d252cd2013-06-26 17:24:59 +01001309 setup_cpu_timer(cpu);
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001310#endif
1311#ifdef CONFIG_PROC_FS
1312 proc_create("buddyinfo", S_IRUGO, NULL, &fragmentation_file_operations);
Alexey Dobriyan74e2e8e2008-10-06 04:15:36 +04001313 proc_create("pagetypeinfo", S_IRUGO, NULL, &pagetypeinfo_file_ops);
Alexey Dobriyanb6aa44a2008-10-06 04:17:48 +04001314 proc_create("vmstat", S_IRUGO, NULL, &proc_vmstat_file_operations);
Alexey Dobriyan5c9fe622008-10-06 04:19:42 +04001315 proc_create("zoneinfo", S_IRUGO, NULL, &proc_zoneinfo_file_operations);
Alexey Dobriyan8f32f7e2008-10-06 04:13:52 +04001316#endif
Christoph Lameterdf9ecab2006-08-31 21:27:35 -07001317 return 0;
1318}
1319module_init(setup_vmstat)
Mel Gormand7a57522010-05-24 14:32:25 -07001320
1321#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_COMPACTION)
1322#include <linux/debugfs.h>
1323
Mel Gormand7a57522010-05-24 14:32:25 -07001324
1325/*
1326 * Return an index indicating how much of the available free memory is
1327 * unusable for an allocation of the requested size.
1328 */
1329static int unusable_free_index(unsigned int order,
1330 struct contig_page_info *info)
1331{
1332 /* No free memory is interpreted as all free memory is unusable */
1333 if (info->free_pages == 0)
1334 return 1000;
1335
1336 /*
1337 * Index should be a value between 0 and 1. Return a value to 3
1338 * decimal places.
1339 *
1340 * 0 => no fragmentation
1341 * 1 => high fragmentation
1342 */
1343 return div_u64((info->free_pages - (info->free_blocks_suitable << order)) * 1000ULL, info->free_pages);
1344
1345}
1346
1347static void unusable_show_print(struct seq_file *m,
1348 pg_data_t *pgdat, struct zone *zone)
1349{
1350 unsigned int order;
1351 int index;
1352 struct contig_page_info info;
1353
1354 seq_printf(m, "Node %d, zone %8s ",
1355 pgdat->node_id,
1356 zone->name);
1357 for (order = 0; order < MAX_ORDER; ++order) {
1358 fill_contig_page_info(zone, order, &info);
1359 index = unusable_free_index(order, &info);
1360 seq_printf(m, "%d.%03d ", index / 1000, index % 1000);
1361 }
1362
1363 seq_putc(m, '\n');
1364}
1365
1366/*
1367 * Display unusable free space index
1368 *
1369 * The unusable free space index measures how much of the available free
1370 * memory cannot be used to satisfy an allocation of a given size and is a
1371 * value between 0 and 1. The higher the value, the more of free memory is
1372 * unusable and by implication, the worse the external fragmentation is. This
1373 * can be expressed as a percentage by multiplying by 100.
1374 */
1375static int unusable_show(struct seq_file *m, void *arg)
1376{
1377 pg_data_t *pgdat = (pg_data_t *)arg;
1378
1379 /* check memoryless node */
Lai Jiangshana47b53c2012-12-12 13:51:37 -08001380 if (!node_state(pgdat->node_id, N_MEMORY))
Mel Gormand7a57522010-05-24 14:32:25 -07001381 return 0;
1382
1383 walk_zones_in_node(m, pgdat, unusable_show_print);
1384
1385 return 0;
1386}
1387
1388static const struct seq_operations unusable_op = {
1389 .start = frag_start,
1390 .next = frag_next,
1391 .stop = frag_stop,
1392 .show = unusable_show,
1393};
1394
1395static int unusable_open(struct inode *inode, struct file *file)
1396{
1397 return seq_open(file, &unusable_op);
1398}
1399
1400static const struct file_operations unusable_file_ops = {
1401 .open = unusable_open,
1402 .read = seq_read,
1403 .llseek = seq_lseek,
1404 .release = seq_release,
1405};
1406
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001407static void extfrag_show_print(struct seq_file *m,
1408 pg_data_t *pgdat, struct zone *zone)
1409{
1410 unsigned int order;
1411 int index;
1412
1413 /* Alloc on stack as interrupts are disabled for zone walk */
1414 struct contig_page_info info;
1415
1416 seq_printf(m, "Node %d, zone %8s ",
1417 pgdat->node_id,
1418 zone->name);
1419 for (order = 0; order < MAX_ORDER; ++order) {
1420 fill_contig_page_info(zone, order, &info);
Mel Gorman56de7262010-05-24 14:32:30 -07001421 index = __fragmentation_index(order, &info);
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001422 seq_printf(m, "%d.%03d ", index / 1000, index % 1000);
1423 }
1424
1425 seq_putc(m, '\n');
1426}
1427
1428/*
1429 * Display fragmentation index for orders that allocations would fail for
1430 */
1431static int extfrag_show(struct seq_file *m, void *arg)
1432{
1433 pg_data_t *pgdat = (pg_data_t *)arg;
1434
1435 walk_zones_in_node(m, pgdat, extfrag_show_print);
1436
1437 return 0;
1438}
1439
1440static const struct seq_operations extfrag_op = {
1441 .start = frag_start,
1442 .next = frag_next,
1443 .stop = frag_stop,
1444 .show = extfrag_show,
1445};
1446
1447static int extfrag_open(struct inode *inode, struct file *file)
1448{
1449 return seq_open(file, &extfrag_op);
1450}
1451
1452static const struct file_operations extfrag_file_ops = {
1453 .open = extfrag_open,
1454 .read = seq_read,
1455 .llseek = seq_lseek,
1456 .release = seq_release,
1457};
1458
Mel Gormand7a57522010-05-24 14:32:25 -07001459static int __init extfrag_debug_init(void)
1460{
Sasikantha babubde8bd82012-05-29 15:06:22 -07001461 struct dentry *extfrag_debug_root;
1462
Mel Gormand7a57522010-05-24 14:32:25 -07001463 extfrag_debug_root = debugfs_create_dir("extfrag", NULL);
1464 if (!extfrag_debug_root)
1465 return -ENOMEM;
1466
1467 if (!debugfs_create_file("unusable_index", 0444,
1468 extfrag_debug_root, NULL, &unusable_file_ops))
Sasikantha babubde8bd82012-05-29 15:06:22 -07001469 goto fail;
Mel Gormand7a57522010-05-24 14:32:25 -07001470
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001471 if (!debugfs_create_file("extfrag_index", 0444,
1472 extfrag_debug_root, NULL, &extfrag_file_ops))
Sasikantha babubde8bd82012-05-29 15:06:22 -07001473 goto fail;
Mel Gormanf1a5ab12010-05-24 14:32:26 -07001474
Mel Gormand7a57522010-05-24 14:32:25 -07001475 return 0;
Sasikantha babubde8bd82012-05-29 15:06:22 -07001476fail:
1477 debugfs_remove_recursive(extfrag_debug_root);
1478 return -ENOMEM;
Mel Gormand7a57522010-05-24 14:32:25 -07001479}
1480
1481module_init(extfrag_debug_init);
1482#endif