include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / mm / vmstat.c
CommitLineData
f6ac2354
CL
1/*
2 * linux/mm/vmstat.c
3 *
4 * Manages VM statistics
5 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
2244b95a
CL
6 *
7 * zoned VM statistics
8 * Copyright (C) 2006 Silicon Graphics, Inc.,
9 * Christoph Lameter <christoph@lameter.com>
f6ac2354 10 */
8f32f7e5 11#include <linux/fs.h>
f6ac2354 12#include <linux/mm.h>
4e950f6f 13#include <linux/err.h>
2244b95a 14#include <linux/module.h>
5a0e3ad6 15#include <linux/slab.h>
df9ecaba 16#include <linux/cpu.h>
c748e134 17#include <linux/vmstat.h>
e8edc6e0 18#include <linux/sched.h>
f6ac2354 19
f8891e5e
CL
20#ifdef CONFIG_VM_EVENT_COUNTERS
21DEFINE_PER_CPU(struct vm_event_state, vm_event_states) = {{0}};
22EXPORT_PER_CPU_SYMBOL(vm_event_states);
23
174596a0 24static void sum_vm_events(unsigned long *ret, const struct cpumask *cpumask)
f8891e5e 25{
9eccf2a8 26 int cpu;
f8891e5e
CL
27 int i;
28
29 memset(ret, 0, NR_VM_EVENT_ITEMS * sizeof(unsigned long));
30
aa85ea5b 31 for_each_cpu(cpu, cpumask) {
f8891e5e
CL
32 struct vm_event_state *this = &per_cpu(vm_event_states, cpu);
33
f8891e5e
CL
34 for (i = 0; i < NR_VM_EVENT_ITEMS; i++)
35 ret[i] += this->event[i];
36 }
37}
38
39/*
40 * Accumulate the vm event counters across all CPUs.
41 * The result is unavoidably approximate - it can change
42 * during and after execution of this function.
43*/
44void all_vm_events(unsigned long *ret)
45{
b5be1132 46 get_online_cpus();
174596a0 47 sum_vm_events(ret, cpu_online_mask);
b5be1132 48 put_online_cpus();
f8891e5e 49}
32dd66fc 50EXPORT_SYMBOL_GPL(all_vm_events);
f8891e5e
CL
51
52#ifdef CONFIG_HOTPLUG
53/*
54 * Fold the foreign cpu events into our own.
55 *
56 * This is adding to the events on one processor
57 * but keeps the global counts constant.
58 */
59void vm_events_fold_cpu(int cpu)
60{
61 struct vm_event_state *fold_state = &per_cpu(vm_event_states, cpu);
62 int i;
63
64 for (i = 0; i < NR_VM_EVENT_ITEMS; i++) {
65 count_vm_events(i, fold_state->event[i]);
66 fold_state->event[i] = 0;
67 }
68}
69#endif /* CONFIG_HOTPLUG */
70
71#endif /* CONFIG_VM_EVENT_COUNTERS */
72
2244b95a
CL
73/*
74 * Manage combined zone based / global counters
75 *
76 * vm_stat contains the global counters
77 */
78atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS];
79EXPORT_SYMBOL(vm_stat);
80
81#ifdef CONFIG_SMP
82
df9ecaba
CL
83static int calculate_threshold(struct zone *zone)
84{
85 int threshold;
86 int mem; /* memory in 128 MB units */
87
88 /*
89 * The threshold scales with the number of processors and the amount
90 * of memory per zone. More memory means that we can defer updates for
91 * longer, more processors could lead to more contention.
92 * fls() is used to have a cheap way of logarithmic scaling.
93 *
94 * Some sample thresholds:
95 *
96 * Threshold Processors (fls) Zonesize fls(mem+1)
97 * ------------------------------------------------------------------
98 * 8 1 1 0.9-1 GB 4
99 * 16 2 2 0.9-1 GB 4
100 * 20 2 2 1-2 GB 5
101 * 24 2 2 2-4 GB 6
102 * 28 2 2 4-8 GB 7
103 * 32 2 2 8-16 GB 8
104 * 4 2 2 <128M 1
105 * 30 4 3 2-4 GB 5
106 * 48 4 3 8-16 GB 8
107 * 32 8 4 1-2 GB 4
108 * 32 8 4 0.9-1GB 4
109 * 10 16 5 <128M 1
110 * 40 16 5 900M 4
111 * 70 64 7 2-4 GB 5
112 * 84 64 7 4-8 GB 6
113 * 108 512 9 4-8 GB 6
114 * 125 1024 10 8-16 GB 8
115 * 125 1024 10 16-32 GB 9
116 */
117
118 mem = zone->present_pages >> (27 - PAGE_SHIFT);
119
120 threshold = 2 * fls(num_online_cpus()) * (1 + fls(mem));
121
122 /*
123 * Maximum threshold is 125
124 */
125 threshold = min(125, threshold);
126
127 return threshold;
128}
2244b95a
CL
129
130/*
df9ecaba 131 * Refresh the thresholds for each zone.
2244b95a 132 */
df9ecaba 133static void refresh_zone_stat_thresholds(void)
2244b95a 134{
df9ecaba
CL
135 struct zone *zone;
136 int cpu;
137 int threshold;
138
ee99c71c 139 for_each_populated_zone(zone) {
df9ecaba
CL
140 threshold = calculate_threshold(zone);
141
142 for_each_online_cpu(cpu)
99dcc3e5
CL
143 per_cpu_ptr(zone->pageset, cpu)->stat_threshold
144 = threshold;
df9ecaba 145 }
2244b95a
CL
146}
147
148/*
149 * For use when we know that interrupts are disabled.
150 */
151void __mod_zone_page_state(struct zone *zone, enum zone_stat_item item,
152 int delta)
153{
99dcc3e5
CL
154 struct per_cpu_pageset *pcp = this_cpu_ptr(zone->pageset);
155
df9ecaba 156 s8 *p = pcp->vm_stat_diff + item;
2244b95a
CL
157 long x;
158
2244b95a
CL
159 x = delta + *p;
160
df9ecaba 161 if (unlikely(x > pcp->stat_threshold || x < -pcp->stat_threshold)) {
2244b95a
CL
162 zone_page_state_add(x, zone, item);
163 x = 0;
164 }
2244b95a
CL
165 *p = x;
166}
167EXPORT_SYMBOL(__mod_zone_page_state);
168
169/*
170 * For an unknown interrupt state
171 */
172void mod_zone_page_state(struct zone *zone, enum zone_stat_item item,
173 int delta)
174{
175 unsigned long flags;
176
177 local_irq_save(flags);
178 __mod_zone_page_state(zone, item, delta);
179 local_irq_restore(flags);
180}
181EXPORT_SYMBOL(mod_zone_page_state);
182
183/*
184 * Optimized increment and decrement functions.
185 *
186 * These are only for a single page and therefore can take a struct page *
187 * argument instead of struct zone *. This allows the inclusion of the code
188 * generated for page_zone(page) into the optimized functions.
189 *
190 * No overflow check is necessary and therefore the differential can be
191 * incremented or decremented in place which may allow the compilers to
192 * generate better code.
2244b95a
CL
193 * The increment or decrement is known and therefore one boundary check can
194 * be omitted.
195 *
df9ecaba
CL
196 * NOTE: These functions are very performance sensitive. Change only
197 * with care.
198 *
2244b95a
CL
199 * Some processors have inc/dec instructions that are atomic vs an interrupt.
200 * However, the code must first determine the differential location in a zone
201 * based on the processor number and then inc/dec the counter. There is no
202 * guarantee without disabling preemption that the processor will not change
203 * in between and therefore the atomicity vs. interrupt cannot be exploited
204 * in a useful way here.
205 */
c8785385 206void __inc_zone_state(struct zone *zone, enum zone_stat_item item)
2244b95a 207{
99dcc3e5 208 struct per_cpu_pageset *pcp = this_cpu_ptr(zone->pageset);
df9ecaba 209 s8 *p = pcp->vm_stat_diff + item;
2244b95a
CL
210
211 (*p)++;
212
df9ecaba
CL
213 if (unlikely(*p > pcp->stat_threshold)) {
214 int overstep = pcp->stat_threshold / 2;
215
216 zone_page_state_add(*p + overstep, zone, item);
217 *p = -overstep;
2244b95a
CL
218 }
219}
ca889e6c
CL
220
221void __inc_zone_page_state(struct page *page, enum zone_stat_item item)
222{
223 __inc_zone_state(page_zone(page), item);
224}
2244b95a
CL
225EXPORT_SYMBOL(__inc_zone_page_state);
226
c8785385 227void __dec_zone_state(struct zone *zone, enum zone_stat_item item)
2244b95a 228{
99dcc3e5 229 struct per_cpu_pageset *pcp = this_cpu_ptr(zone->pageset);
df9ecaba 230 s8 *p = pcp->vm_stat_diff + item;
2244b95a
CL
231
232 (*p)--;
233
df9ecaba
CL
234 if (unlikely(*p < - pcp->stat_threshold)) {
235 int overstep = pcp->stat_threshold / 2;
236
237 zone_page_state_add(*p - overstep, zone, item);
238 *p = overstep;
2244b95a
CL
239 }
240}
c8785385
CL
241
242void __dec_zone_page_state(struct page *page, enum zone_stat_item item)
243{
244 __dec_zone_state(page_zone(page), item);
245}
2244b95a
CL
246EXPORT_SYMBOL(__dec_zone_page_state);
247
ca889e6c
CL
248void inc_zone_state(struct zone *zone, enum zone_stat_item item)
249{
250 unsigned long flags;
251
252 local_irq_save(flags);
253 __inc_zone_state(zone, item);
254 local_irq_restore(flags);
255}
256
2244b95a
CL
257void inc_zone_page_state(struct page *page, enum zone_stat_item item)
258{
259 unsigned long flags;
260 struct zone *zone;
2244b95a
CL
261
262 zone = page_zone(page);
263 local_irq_save(flags);
ca889e6c 264 __inc_zone_state(zone, item);
2244b95a
CL
265 local_irq_restore(flags);
266}
267EXPORT_SYMBOL(inc_zone_page_state);
268
269void dec_zone_page_state(struct page *page, enum zone_stat_item item)
270{
271 unsigned long flags;
2244b95a 272
2244b95a 273 local_irq_save(flags);
a302eb4e 274 __dec_zone_page_state(page, item);
2244b95a
CL
275 local_irq_restore(flags);
276}
277EXPORT_SYMBOL(dec_zone_page_state);
278
279/*
280 * Update the zone counters for one cpu.
4037d452 281 *
a7f75e25
CL
282 * The cpu specified must be either the current cpu or a processor that
283 * is not online. If it is the current cpu then the execution thread must
284 * be pinned to the current cpu.
285 *
4037d452
CL
286 * Note that refresh_cpu_vm_stats strives to only access
287 * node local memory. The per cpu pagesets on remote zones are placed
288 * in the memory local to the processor using that pageset. So the
289 * loop over all zones will access a series of cachelines local to
290 * the processor.
291 *
292 * The call to zone_page_state_add updates the cachelines with the
293 * statistics in the remote zone struct as well as the global cachelines
294 * with the global counters. These could cause remote node cache line
295 * bouncing and will have to be only done when necessary.
2244b95a
CL
296 */
297void refresh_cpu_vm_stats(int cpu)
298{
299 struct zone *zone;
300 int i;
a7f75e25 301 int global_diff[NR_VM_ZONE_STAT_ITEMS] = { 0, };
2244b95a 302
ee99c71c 303 for_each_populated_zone(zone) {
4037d452 304 struct per_cpu_pageset *p;
2244b95a 305
99dcc3e5 306 p = per_cpu_ptr(zone->pageset, cpu);
2244b95a
CL
307
308 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
4037d452 309 if (p->vm_stat_diff[i]) {
a7f75e25
CL
310 unsigned long flags;
311 int v;
312
2244b95a 313 local_irq_save(flags);
a7f75e25 314 v = p->vm_stat_diff[i];
4037d452 315 p->vm_stat_diff[i] = 0;
a7f75e25
CL
316 local_irq_restore(flags);
317 atomic_long_add(v, &zone->vm_stat[i]);
318 global_diff[i] += v;
4037d452
CL
319#ifdef CONFIG_NUMA
320 /* 3 seconds idle till flush */
321 p->expire = 3;
322#endif
2244b95a 323 }
468fd62e 324 cond_resched();
4037d452
CL
325#ifdef CONFIG_NUMA
326 /*
327 * Deal with draining the remote pageset of this
328 * processor
329 *
330 * Check if there are pages remaining in this pageset
331 * if not then there is nothing to expire.
332 */
3dfa5721 333 if (!p->expire || !p->pcp.count)
4037d452
CL
334 continue;
335
336 /*
337 * We never drain zones local to this processor.
338 */
339 if (zone_to_nid(zone) == numa_node_id()) {
340 p->expire = 0;
341 continue;
342 }
343
344 p->expire--;
345 if (p->expire)
346 continue;
347
3dfa5721
CL
348 if (p->pcp.count)
349 drain_zone_pages(zone, &p->pcp);
4037d452 350#endif
2244b95a 351 }
a7f75e25
CL
352
353 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
354 if (global_diff[i])
355 atomic_long_add(global_diff[i], &vm_stat[i]);
2244b95a
CL
356}
357
2244b95a
CL
358#endif
359
ca889e6c
CL
360#ifdef CONFIG_NUMA
361/*
362 * zonelist = the list of zones passed to the allocator
363 * z = the zone from which the allocation occurred.
364 *
365 * Must be called with interrupts disabled.
366 */
18ea7e71 367void zone_statistics(struct zone *preferred_zone, struct zone *z)
ca889e6c 368{
18ea7e71 369 if (z->zone_pgdat == preferred_zone->zone_pgdat) {
ca889e6c
CL
370 __inc_zone_state(z, NUMA_HIT);
371 } else {
372 __inc_zone_state(z, NUMA_MISS);
18ea7e71 373 __inc_zone_state(preferred_zone, NUMA_FOREIGN);
ca889e6c 374 }
5d292343 375 if (z->node == numa_node_id())
ca889e6c
CL
376 __inc_zone_state(z, NUMA_LOCAL);
377 else
378 __inc_zone_state(z, NUMA_OTHER);
379}
380#endif
381
f6ac2354 382#ifdef CONFIG_PROC_FS
8f32f7e5 383#include <linux/proc_fs.h>
f6ac2354
CL
384#include <linux/seq_file.h>
385
467c996c
MG
386static char * const migratetype_names[MIGRATE_TYPES] = {
387 "Unmovable",
388 "Reclaimable",
389 "Movable",
390 "Reserve",
91446b06 391 "Isolate",
467c996c
MG
392};
393
f6ac2354
CL
394static void *frag_start(struct seq_file *m, loff_t *pos)
395{
396 pg_data_t *pgdat;
397 loff_t node = *pos;
398 for (pgdat = first_online_pgdat();
399 pgdat && node;
400 pgdat = next_online_pgdat(pgdat))
401 --node;
402
403 return pgdat;
404}
405
406static void *frag_next(struct seq_file *m, void *arg, loff_t *pos)
407{
408 pg_data_t *pgdat = (pg_data_t *)arg;
409
410 (*pos)++;
411 return next_online_pgdat(pgdat);
412}
413
414static void frag_stop(struct seq_file *m, void *arg)
415{
416}
417
467c996c
MG
418/* Walk all the zones in a node and print using a callback */
419static void walk_zones_in_node(struct seq_file *m, pg_data_t *pgdat,
420 void (*print)(struct seq_file *m, pg_data_t *, struct zone *))
f6ac2354 421{
f6ac2354
CL
422 struct zone *zone;
423 struct zone *node_zones = pgdat->node_zones;
424 unsigned long flags;
f6ac2354
CL
425
426 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
427 if (!populated_zone(zone))
428 continue;
429
430 spin_lock_irqsave(&zone->lock, flags);
467c996c 431 print(m, pgdat, zone);
f6ac2354 432 spin_unlock_irqrestore(&zone->lock, flags);
467c996c
MG
433 }
434}
435
436static void frag_show_print(struct seq_file *m, pg_data_t *pgdat,
437 struct zone *zone)
438{
439 int order;
440
441 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
442 for (order = 0; order < MAX_ORDER; ++order)
443 seq_printf(m, "%6lu ", zone->free_area[order].nr_free);
444 seq_putc(m, '\n');
445}
446
447/*
448 * This walks the free areas for each zone.
449 */
450static int frag_show(struct seq_file *m, void *arg)
451{
452 pg_data_t *pgdat = (pg_data_t *)arg;
453 walk_zones_in_node(m, pgdat, frag_show_print);
454 return 0;
455}
456
457static void pagetypeinfo_showfree_print(struct seq_file *m,
458 pg_data_t *pgdat, struct zone *zone)
459{
460 int order, mtype;
461
462 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++) {
463 seq_printf(m, "Node %4d, zone %8s, type %12s ",
464 pgdat->node_id,
465 zone->name,
466 migratetype_names[mtype]);
467 for (order = 0; order < MAX_ORDER; ++order) {
468 unsigned long freecount = 0;
469 struct free_area *area;
470 struct list_head *curr;
471
472 area = &(zone->free_area[order]);
473
474 list_for_each(curr, &area->free_list[mtype])
475 freecount++;
476 seq_printf(m, "%6lu ", freecount);
477 }
f6ac2354
CL
478 seq_putc(m, '\n');
479 }
467c996c
MG
480}
481
482/* Print out the free pages at each order for each migatetype */
483static int pagetypeinfo_showfree(struct seq_file *m, void *arg)
484{
485 int order;
486 pg_data_t *pgdat = (pg_data_t *)arg;
487
488 /* Print header */
489 seq_printf(m, "%-43s ", "Free pages count per migrate type at order");
490 for (order = 0; order < MAX_ORDER; ++order)
491 seq_printf(m, "%6d ", order);
492 seq_putc(m, '\n');
493
494 walk_zones_in_node(m, pgdat, pagetypeinfo_showfree_print);
495
496 return 0;
497}
498
499static void pagetypeinfo_showblockcount_print(struct seq_file *m,
500 pg_data_t *pgdat, struct zone *zone)
501{
502 int mtype;
503 unsigned long pfn;
504 unsigned long start_pfn = zone->zone_start_pfn;
505 unsigned long end_pfn = start_pfn + zone->spanned_pages;
506 unsigned long count[MIGRATE_TYPES] = { 0, };
507
508 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
509 struct page *page;
510
511 if (!pfn_valid(pfn))
512 continue;
513
514 page = pfn_to_page(pfn);
eb33575c
MG
515
516 /* Watch for unexpected holes punched in the memmap */
517 if (!memmap_valid_within(pfn, page, zone))
e80d6a24 518 continue;
eb33575c 519
467c996c
MG
520 mtype = get_pageblock_migratetype(page);
521
e80d6a24
MG
522 if (mtype < MIGRATE_TYPES)
523 count[mtype]++;
467c996c
MG
524 }
525
526 /* Print counts */
527 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
528 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
529 seq_printf(m, "%12lu ", count[mtype]);
530 seq_putc(m, '\n');
531}
532
533/* Print out the free pages at each order for each migratetype */
534static int pagetypeinfo_showblockcount(struct seq_file *m, void *arg)
535{
536 int mtype;
537 pg_data_t *pgdat = (pg_data_t *)arg;
538
539 seq_printf(m, "\n%-23s", "Number of blocks type ");
540 for (mtype = 0; mtype < MIGRATE_TYPES; mtype++)
541 seq_printf(m, "%12s ", migratetype_names[mtype]);
542 seq_putc(m, '\n');
543 walk_zones_in_node(m, pgdat, pagetypeinfo_showblockcount_print);
544
545 return 0;
546}
547
548/*
549 * This prints out statistics in relation to grouping pages by mobility.
550 * It is expensive to collect so do not constantly read the file.
551 */
552static int pagetypeinfo_show(struct seq_file *m, void *arg)
553{
554 pg_data_t *pgdat = (pg_data_t *)arg;
555
41b25a37
KM
556 /* check memoryless node */
557 if (!node_state(pgdat->node_id, N_HIGH_MEMORY))
558 return 0;
559
467c996c
MG
560 seq_printf(m, "Page block order: %d\n", pageblock_order);
561 seq_printf(m, "Pages per block: %lu\n", pageblock_nr_pages);
562 seq_putc(m, '\n');
563 pagetypeinfo_showfree(m, pgdat);
564 pagetypeinfo_showblockcount(m, pgdat);
565
f6ac2354
CL
566 return 0;
567}
568
8f32f7e5 569static const struct seq_operations fragmentation_op = {
f6ac2354
CL
570 .start = frag_start,
571 .next = frag_next,
572 .stop = frag_stop,
573 .show = frag_show,
574};
575
8f32f7e5
AD
576static int fragmentation_open(struct inode *inode, struct file *file)
577{
578 return seq_open(file, &fragmentation_op);
579}
580
581static const struct file_operations fragmentation_file_operations = {
582 .open = fragmentation_open,
583 .read = seq_read,
584 .llseek = seq_lseek,
585 .release = seq_release,
586};
587
74e2e8e8 588static const struct seq_operations pagetypeinfo_op = {
467c996c
MG
589 .start = frag_start,
590 .next = frag_next,
591 .stop = frag_stop,
592 .show = pagetypeinfo_show,
593};
594
74e2e8e8
AD
595static int pagetypeinfo_open(struct inode *inode, struct file *file)
596{
597 return seq_open(file, &pagetypeinfo_op);
598}
599
600static const struct file_operations pagetypeinfo_file_ops = {
601 .open = pagetypeinfo_open,
602 .read = seq_read,
603 .llseek = seq_lseek,
604 .release = seq_release,
605};
606
4b51d669
CL
607#ifdef CONFIG_ZONE_DMA
608#define TEXT_FOR_DMA(xx) xx "_dma",
609#else
610#define TEXT_FOR_DMA(xx)
611#endif
612
27bf71c2
CL
613#ifdef CONFIG_ZONE_DMA32
614#define TEXT_FOR_DMA32(xx) xx "_dma32",
615#else
616#define TEXT_FOR_DMA32(xx)
617#endif
618
619#ifdef CONFIG_HIGHMEM
620#define TEXT_FOR_HIGHMEM(xx) xx "_high",
621#else
622#define TEXT_FOR_HIGHMEM(xx)
623#endif
624
4b51d669 625#define TEXTS_FOR_ZONES(xx) TEXT_FOR_DMA(xx) TEXT_FOR_DMA32(xx) xx "_normal", \
2a1e274a 626 TEXT_FOR_HIGHMEM(xx) xx "_movable",
27bf71c2 627
15ad7cdc 628static const char * const vmstat_text[] = {
2244b95a 629 /* Zoned VM counters */
d23ad423 630 "nr_free_pages",
4f98a2fe
RR
631 "nr_inactive_anon",
632 "nr_active_anon",
633 "nr_inactive_file",
634 "nr_active_file",
7b854121 635 "nr_unevictable",
5344b7e6 636 "nr_mlock",
f3dbd344 637 "nr_anon_pages",
65ba55f5 638 "nr_mapped",
347ce434 639 "nr_file_pages",
51ed4491
CL
640 "nr_dirty",
641 "nr_writeback",
972d1a7b
CL
642 "nr_slab_reclaimable",
643 "nr_slab_unreclaimable",
df849a15 644 "nr_page_table_pages",
c6a7f572 645 "nr_kernel_stack",
f6ac2354 646 "nr_unstable",
d2c5e30c 647 "nr_bounce",
e129b5c2 648 "nr_vmscan_write",
fc3ba692 649 "nr_writeback_temp",
a731286d
KM
650 "nr_isolated_anon",
651 "nr_isolated_file",
4b02108a 652 "nr_shmem",
ca889e6c
CL
653#ifdef CONFIG_NUMA
654 "numa_hit",
655 "numa_miss",
656 "numa_foreign",
657 "numa_interleave",
658 "numa_local",
659 "numa_other",
660#endif
661
f8891e5e 662#ifdef CONFIG_VM_EVENT_COUNTERS
f6ac2354
CL
663 "pgpgin",
664 "pgpgout",
665 "pswpin",
666 "pswpout",
667
27bf71c2 668 TEXTS_FOR_ZONES("pgalloc")
f6ac2354
CL
669
670 "pgfree",
671 "pgactivate",
672 "pgdeactivate",
673
674 "pgfault",
675 "pgmajfault",
676
27bf71c2
CL
677 TEXTS_FOR_ZONES("pgrefill")
678 TEXTS_FOR_ZONES("pgsteal")
679 TEXTS_FOR_ZONES("pgscan_kswapd")
680 TEXTS_FOR_ZONES("pgscan_direct")
f6ac2354 681
24cf7251
MG
682#ifdef CONFIG_NUMA
683 "zone_reclaim_failed",
684#endif
f6ac2354
CL
685 "pginodesteal",
686 "slabs_scanned",
687 "kswapd_steal",
688 "kswapd_inodesteal",
bb3ab596
KM
689 "kswapd_low_wmark_hit_quickly",
690 "kswapd_high_wmark_hit_quickly",
691 "kswapd_skip_congestion_wait",
f6ac2354
CL
692 "pageoutrun",
693 "allocstall",
694
695 "pgrotated",
3b116300
AL
696#ifdef CONFIG_HUGETLB_PAGE
697 "htlb_buddy_alloc_success",
698 "htlb_buddy_alloc_fail",
699#endif
bbfd28ee
LS
700 "unevictable_pgs_culled",
701 "unevictable_pgs_scanned",
702 "unevictable_pgs_rescued",
5344b7e6
NP
703 "unevictable_pgs_mlocked",
704 "unevictable_pgs_munlocked",
705 "unevictable_pgs_cleared",
706 "unevictable_pgs_stranded",
985737cf 707 "unevictable_pgs_mlockfreed",
bbfd28ee 708#endif
f6ac2354
CL
709};
710
467c996c
MG
711static void zoneinfo_show_print(struct seq_file *m, pg_data_t *pgdat,
712 struct zone *zone)
f6ac2354 713{
467c996c
MG
714 int i;
715 seq_printf(m, "Node %d, zone %8s", pgdat->node_id, zone->name);
716 seq_printf(m,
717 "\n pages free %lu"
718 "\n min %lu"
719 "\n low %lu"
720 "\n high %lu"
08d9ae7c 721 "\n scanned %lu"
467c996c
MG
722 "\n spanned %lu"
723 "\n present %lu",
724 zone_page_state(zone, NR_FREE_PAGES),
41858966
MG
725 min_wmark_pages(zone),
726 low_wmark_pages(zone),
727 high_wmark_pages(zone),
467c996c 728 zone->pages_scanned,
467c996c
MG
729 zone->spanned_pages,
730 zone->present_pages);
731
732 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
733 seq_printf(m, "\n %-12s %lu", vmstat_text[i],
734 zone_page_state(zone, i));
735
736 seq_printf(m,
737 "\n protection: (%lu",
738 zone->lowmem_reserve[0]);
739 for (i = 1; i < ARRAY_SIZE(zone->lowmem_reserve); i++)
740 seq_printf(m, ", %lu", zone->lowmem_reserve[i]);
741 seq_printf(m,
742 ")"
743 "\n pagesets");
744 for_each_online_cpu(i) {
745 struct per_cpu_pageset *pageset;
467c996c 746
99dcc3e5 747 pageset = per_cpu_ptr(zone->pageset, i);
3dfa5721
CL
748 seq_printf(m,
749 "\n cpu: %i"
750 "\n count: %i"
751 "\n high: %i"
752 "\n batch: %i",
753 i,
754 pageset->pcp.count,
755 pageset->pcp.high,
756 pageset->pcp.batch);
df9ecaba 757#ifdef CONFIG_SMP
467c996c
MG
758 seq_printf(m, "\n vm stats threshold: %d",
759 pageset->stat_threshold);
df9ecaba 760#endif
f6ac2354 761 }
467c996c
MG
762 seq_printf(m,
763 "\n all_unreclaimable: %u"
764 "\n prev_priority: %i"
556adecb
RR
765 "\n start_pfn: %lu"
766 "\n inactive_ratio: %u",
93e4a89a 767 zone->all_unreclaimable,
467c996c 768 zone->prev_priority,
556adecb
RR
769 zone->zone_start_pfn,
770 zone->inactive_ratio);
467c996c
MG
771 seq_putc(m, '\n');
772}
773
774/*
775 * Output information about zones in @pgdat.
776 */
777static int zoneinfo_show(struct seq_file *m, void *arg)
778{
779 pg_data_t *pgdat = (pg_data_t *)arg;
780 walk_zones_in_node(m, pgdat, zoneinfo_show_print);
f6ac2354
CL
781 return 0;
782}
783
5c9fe628 784static const struct seq_operations zoneinfo_op = {
f6ac2354
CL
785 .start = frag_start, /* iterate over all zones. The same as in
786 * fragmentation. */
787 .next = frag_next,
788 .stop = frag_stop,
789 .show = zoneinfo_show,
790};
791
5c9fe628
AD
792static int zoneinfo_open(struct inode *inode, struct file *file)
793{
794 return seq_open(file, &zoneinfo_op);
795}
796
797static const struct file_operations proc_zoneinfo_file_operations = {
798 .open = zoneinfo_open,
799 .read = seq_read,
800 .llseek = seq_lseek,
801 .release = seq_release,
802};
803
f6ac2354
CL
804static void *vmstat_start(struct seq_file *m, loff_t *pos)
805{
2244b95a 806 unsigned long *v;
f8891e5e
CL
807#ifdef CONFIG_VM_EVENT_COUNTERS
808 unsigned long *e;
809#endif
2244b95a 810 int i;
f6ac2354
CL
811
812 if (*pos >= ARRAY_SIZE(vmstat_text))
813 return NULL;
814
f8891e5e 815#ifdef CONFIG_VM_EVENT_COUNTERS
2244b95a 816 v = kmalloc(NR_VM_ZONE_STAT_ITEMS * sizeof(unsigned long)
f8891e5e
CL
817 + sizeof(struct vm_event_state), GFP_KERNEL);
818#else
819 v = kmalloc(NR_VM_ZONE_STAT_ITEMS * sizeof(unsigned long),
820 GFP_KERNEL);
821#endif
2244b95a
CL
822 m->private = v;
823 if (!v)
f6ac2354 824 return ERR_PTR(-ENOMEM);
2244b95a
CL
825 for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++)
826 v[i] = global_page_state(i);
f8891e5e
CL
827#ifdef CONFIG_VM_EVENT_COUNTERS
828 e = v + NR_VM_ZONE_STAT_ITEMS;
829 all_vm_events(e);
830 e[PGPGIN] /= 2; /* sectors -> kbytes */
831 e[PGPGOUT] /= 2;
832#endif
2244b95a 833 return v + *pos;
f6ac2354
CL
834}
835
836static void *vmstat_next(struct seq_file *m, void *arg, loff_t *pos)
837{
838 (*pos)++;
839 if (*pos >= ARRAY_SIZE(vmstat_text))
840 return NULL;
841 return (unsigned long *)m->private + *pos;
842}
843
844static int vmstat_show(struct seq_file *m, void *arg)
845{
846 unsigned long *l = arg;
847 unsigned long off = l - (unsigned long *)m->private;
848
849 seq_printf(m, "%s %lu\n", vmstat_text[off], *l);
850 return 0;
851}
852
853static void vmstat_stop(struct seq_file *m, void *arg)
854{
855 kfree(m->private);
856 m->private = NULL;
857}
858
b6aa44ab 859static const struct seq_operations vmstat_op = {
f6ac2354
CL
860 .start = vmstat_start,
861 .next = vmstat_next,
862 .stop = vmstat_stop,
863 .show = vmstat_show,
864};
865
b6aa44ab
AD
866static int vmstat_open(struct inode *inode, struct file *file)
867{
868 return seq_open(file, &vmstat_op);
869}
870
871static const struct file_operations proc_vmstat_file_operations = {
872 .open = vmstat_open,
873 .read = seq_read,
874 .llseek = seq_lseek,
875 .release = seq_release,
876};
f6ac2354
CL
877#endif /* CONFIG_PROC_FS */
878
df9ecaba 879#ifdef CONFIG_SMP
d1187ed2 880static DEFINE_PER_CPU(struct delayed_work, vmstat_work);
77461ab3 881int sysctl_stat_interval __read_mostly = HZ;
d1187ed2
CL
882
883static void vmstat_update(struct work_struct *w)
884{
885 refresh_cpu_vm_stats(smp_processor_id());
77461ab3 886 schedule_delayed_work(&__get_cpu_var(vmstat_work),
98f4ebb2 887 round_jiffies_relative(sysctl_stat_interval));
d1187ed2
CL
888}
889
42614fcd 890static void __cpuinit start_cpu_timer(int cpu)
d1187ed2 891{
1871e52c 892 struct delayed_work *work = &per_cpu(vmstat_work, cpu);
d1187ed2 893
1871e52c
TH
894 INIT_DELAYED_WORK_DEFERRABLE(work, vmstat_update);
895 schedule_delayed_work_on(cpu, work, __round_jiffies_relative(HZ, cpu));
d1187ed2
CL
896}
897
df9ecaba
CL
898/*
899 * Use the cpu notifier to insure that the thresholds are recalculated
900 * when necessary.
901 */
902static int __cpuinit vmstat_cpuup_callback(struct notifier_block *nfb,
903 unsigned long action,
904 void *hcpu)
905{
d1187ed2
CL
906 long cpu = (long)hcpu;
907
df9ecaba 908 switch (action) {
d1187ed2
CL
909 case CPU_ONLINE:
910 case CPU_ONLINE_FROZEN:
911 start_cpu_timer(cpu);
ad596925 912 node_set_state(cpu_to_node(cpu), N_CPU);
d1187ed2
CL
913 break;
914 case CPU_DOWN_PREPARE:
915 case CPU_DOWN_PREPARE_FROZEN:
916 cancel_rearming_delayed_work(&per_cpu(vmstat_work, cpu));
917 per_cpu(vmstat_work, cpu).work.func = NULL;
918 break;
919 case CPU_DOWN_FAILED:
920 case CPU_DOWN_FAILED_FROZEN:
921 start_cpu_timer(cpu);
922 break;
ce421c79 923 case CPU_DEAD:
8bb78442 924 case CPU_DEAD_FROZEN:
ce421c79
AW
925 refresh_zone_stat_thresholds();
926 break;
927 default:
928 break;
df9ecaba
CL
929 }
930 return NOTIFY_OK;
931}
932
933static struct notifier_block __cpuinitdata vmstat_notifier =
934 { &vmstat_cpuup_callback, NULL, 0 };
8f32f7e5 935#endif
df9ecaba 936
e2fc88d0 937static int __init setup_vmstat(void)
df9ecaba 938{
8f32f7e5 939#ifdef CONFIG_SMP
d1187ed2
CL
940 int cpu;
941
df9ecaba
CL
942 refresh_zone_stat_thresholds();
943 register_cpu_notifier(&vmstat_notifier);
d1187ed2
CL
944
945 for_each_online_cpu(cpu)
946 start_cpu_timer(cpu);
8f32f7e5
AD
947#endif
948#ifdef CONFIG_PROC_FS
949 proc_create("buddyinfo", S_IRUGO, NULL, &fragmentation_file_operations);
74e2e8e8 950 proc_create("pagetypeinfo", S_IRUGO, NULL, &pagetypeinfo_file_ops);
b6aa44ab 951 proc_create("vmstat", S_IRUGO, NULL, &proc_vmstat_file_operations);
5c9fe628 952 proc_create("zoneinfo", S_IRUGO, NULL, &proc_zoneinfo_file_operations);
8f32f7e5 953#endif
df9ecaba
CL
954 return 0;
955}
956module_init(setup_vmstat)