Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/mm/vmstat.c |
| 3 | * |
| 4 | * Manages VM statistics |
| 5 | * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 6 | * |
| 7 | * zoned VM statistics |
| 8 | * Copyright (C) 2006 Silicon Graphics, Inc., |
| 9 | * Christoph Lameter <christoph@lameter.com> |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 10 | */ |
Alexey Dobriyan | 8f32f7e | 2008-10-06 04:13:52 +0400 | [diff] [blame] | 11 | #include <linux/fs.h> |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 12 | #include <linux/mm.h> |
Alexey Dobriyan | 4e950f6 | 2007-07-30 02:36:13 +0400 | [diff] [blame] | 13 | #include <linux/err.h> |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 14 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/slab.h> |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 16 | #include <linux/cpu.h> |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 17 | #include <linux/cpumask.h> |
Adrian Bunk | c748e13 | 2008-07-23 21:27:03 -0700 | [diff] [blame] | 18 | #include <linux/vmstat.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 19 | #include <linux/sched.h> |
Mel Gorman | f1a5ab1 | 2010-05-24 14:32:26 -0700 | [diff] [blame] | 20 | #include <linux/math64.h> |
Michael Rubin | 79da826 | 2010-10-26 14:21:36 -0700 | [diff] [blame] | 21 | #include <linux/writeback.h> |
Namhyung Kim | 36deb0b | 2010-10-26 14:22:04 -0700 | [diff] [blame] | 22 | #include <linux/compaction.h> |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 23 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 24 | #ifdef CONFIG_VM_EVENT_COUNTERS |
| 25 | DEFINE_PER_CPU(struct vm_event_state, vm_event_states) = {{0}}; |
| 26 | EXPORT_PER_CPU_SYMBOL(vm_event_states); |
| 27 | |
Minchan Kim | 31f961a | 2010-08-09 17:18:59 -0700 | [diff] [blame] | 28 | static void sum_vm_events(unsigned long *ret) |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 29 | { |
Christoph Lameter | 9eccf2a | 2008-02-04 22:29:22 -0800 | [diff] [blame] | 30 | int cpu; |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 31 | int i; |
| 32 | |
| 33 | memset(ret, 0, NR_VM_EVENT_ITEMS * sizeof(unsigned long)); |
| 34 | |
Minchan Kim | 31f961a | 2010-08-09 17:18:59 -0700 | [diff] [blame] | 35 | for_each_online_cpu(cpu) { |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 36 | struct vm_event_state *this = &per_cpu(vm_event_states, cpu); |
| 37 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 38 | 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 | */ |
| 48 | void all_vm_events(unsigned long *ret) |
| 49 | { |
KOSAKI Motohiro | b5be113 | 2008-05-12 14:02:06 -0700 | [diff] [blame] | 50 | get_online_cpus(); |
Minchan Kim | 31f961a | 2010-08-09 17:18:59 -0700 | [diff] [blame] | 51 | sum_vm_events(ret); |
KOSAKI Motohiro | b5be113 | 2008-05-12 14:02:06 -0700 | [diff] [blame] | 52 | put_online_cpus(); |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 53 | } |
Heiko Carstens | 32dd66f | 2006-07-10 04:44:31 -0700 | [diff] [blame] | 54 | EXPORT_SYMBOL_GPL(all_vm_events); |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 55 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 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 | */ |
| 62 | void 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 Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 72 | |
| 73 | #endif /* CONFIG_VM_EVENT_COUNTERS */ |
| 74 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 75 | /* |
| 76 | * Manage combined zone based / global counters |
| 77 | * |
| 78 | * vm_stat contains the global counters |
| 79 | */ |
Dimitri Sivanich | a1cb2c6 | 2011-10-31 17:09:46 -0700 | [diff] [blame] | 80 | atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS] __cacheline_aligned_in_smp; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 81 | EXPORT_SYMBOL(vm_stat); |
| 82 | |
| 83 | #ifdef CONFIG_SMP |
| 84 | |
Mel Gorman | b44129b | 2011-01-13 15:45:43 -0800 | [diff] [blame] | 85 | int calculate_pressure_threshold(struct zone *zone) |
Mel Gorman | 88f5acf | 2011-01-13 15:45:41 -0800 | [diff] [blame] | 86 | { |
| 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 Gorman | b44129b | 2011-01-13 15:45:43 -0800 | [diff] [blame] | 109 | int calculate_normal_threshold(struct zone *zone) |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 110 | { |
| 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 Liu | b40da04 | 2013-02-22 16:33:52 -0800 | [diff] [blame] | 144 | mem = zone->managed_pages >> (27 - PAGE_SHIFT); |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 145 | |
| 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 Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 155 | |
| 156 | /* |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 157 | * Refresh the thresholds for each zone. |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 158 | */ |
KOSAKI Motohiro | a6cccdc | 2011-05-24 17:11:33 -0700 | [diff] [blame] | 159 | void refresh_zone_stat_thresholds(void) |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 160 | { |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 161 | struct zone *zone; |
| 162 | int cpu; |
| 163 | int threshold; |
| 164 | |
KOSAKI Motohiro | ee99c71 | 2009-03-31 15:19:31 -0700 | [diff] [blame] | 165 | for_each_populated_zone(zone) { |
Christoph Lameter | aa45484 | 2010-09-09 16:38:17 -0700 | [diff] [blame] | 166 | unsigned long max_drift, tolerate_drift; |
| 167 | |
Mel Gorman | b44129b | 2011-01-13 15:45:43 -0800 | [diff] [blame] | 168 | threshold = calculate_normal_threshold(zone); |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 169 | |
| 170 | for_each_online_cpu(cpu) |
Christoph Lameter | 99dcc3e | 2010-01-05 15:34:51 +0900 | [diff] [blame] | 171 | per_cpu_ptr(zone->pageset, cpu)->stat_threshold |
| 172 | = threshold; |
Christoph Lameter | aa45484 | 2010-09-09 16:38:17 -0700 | [diff] [blame] | 173 | |
| 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 Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 184 | } |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 185 | } |
| 186 | |
Mel Gorman | b44129b | 2011-01-13 15:45:43 -0800 | [diff] [blame] | 187 | void set_pgdat_percpu_threshold(pg_data_t *pgdat, |
| 188 | int (*calculate_pressure)(struct zone *)) |
Mel Gorman | 88f5acf | 2011-01-13 15:45:41 -0800 | [diff] [blame] | 189 | { |
| 190 | struct zone *zone; |
| 191 | int cpu; |
| 192 | int threshold; |
| 193 | int i; |
| 194 | |
Mel Gorman | 88f5acf | 2011-01-13 15:45:41 -0800 | [diff] [blame] | 195 | for (i = 0; i < pgdat->nr_zones; i++) { |
| 196 | zone = &pgdat->node_zones[i]; |
| 197 | if (!zone->percpu_drift_mark) |
| 198 | continue; |
| 199 | |
Mel Gorman | b44129b | 2011-01-13 15:45:43 -0800 | [diff] [blame] | 200 | threshold = (*calculate_pressure)(zone); |
| 201 | for_each_possible_cpu(cpu) |
Mel Gorman | 88f5acf | 2011-01-13 15:45:41 -0800 | [diff] [blame] | 202 | per_cpu_ptr(zone->pageset, cpu)->stat_threshold |
| 203 | = threshold; |
| 204 | } |
Mel Gorman | 88f5acf | 2011-01-13 15:45:41 -0800 | [diff] [blame] | 205 | } |
| 206 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 207 | /* |
| 208 | * For use when we know that interrupts are disabled. |
| 209 | */ |
| 210 | void __mod_zone_page_state(struct zone *zone, enum zone_stat_item item, |
| 211 | int delta) |
| 212 | { |
Christoph Lameter | 12938a9 | 2010-12-06 11:16:20 -0600 | [diff] [blame] | 213 | struct per_cpu_pageset __percpu *pcp = zone->pageset; |
| 214 | s8 __percpu *p = pcp->vm_stat_diff + item; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 215 | long x; |
Christoph Lameter | 12938a9 | 2010-12-06 11:16:20 -0600 | [diff] [blame] | 216 | long t; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 217 | |
Christoph Lameter | 12938a9 | 2010-12-06 11:16:20 -0600 | [diff] [blame] | 218 | x = delta + __this_cpu_read(*p); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 219 | |
Christoph Lameter | 12938a9 | 2010-12-06 11:16:20 -0600 | [diff] [blame] | 220 | t = __this_cpu_read(pcp->stat_threshold); |
| 221 | |
| 222 | if (unlikely(x > t || x < -t)) { |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 223 | zone_page_state_add(x, zone, item); |
| 224 | x = 0; |
| 225 | } |
Christoph Lameter | 12938a9 | 2010-12-06 11:16:20 -0600 | [diff] [blame] | 226 | __this_cpu_write(*p, x); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 227 | } |
| 228 | EXPORT_SYMBOL(__mod_zone_page_state); |
| 229 | |
| 230 | /* |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 231 | * 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 Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 240 | * The increment or decrement is known and therefore one boundary check can |
| 241 | * be omitted. |
| 242 | * |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 243 | * NOTE: These functions are very performance sensitive. Change only |
| 244 | * with care. |
| 245 | * |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 246 | * 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 Lameter | c878538 | 2007-02-10 01:43:01 -0800 | [diff] [blame] | 253 | void __inc_zone_state(struct zone *zone, enum zone_stat_item item) |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 254 | { |
Christoph Lameter | 12938a9 | 2010-12-06 11:16:20 -0600 | [diff] [blame] | 255 | struct per_cpu_pageset __percpu *pcp = zone->pageset; |
| 256 | s8 __percpu *p = pcp->vm_stat_diff + item; |
| 257 | s8 v, t; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 258 | |
Christoph Lameter | 908ee0f | 2010-12-06 11:40:02 -0600 | [diff] [blame] | 259 | v = __this_cpu_inc_return(*p); |
Christoph Lameter | 12938a9 | 2010-12-06 11:16:20 -0600 | [diff] [blame] | 260 | t = __this_cpu_read(pcp->stat_threshold); |
| 261 | if (unlikely(v > t)) { |
| 262 | s8 overstep = t >> 1; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 263 | |
Christoph Lameter | 12938a9 | 2010-12-06 11:16:20 -0600 | [diff] [blame] | 264 | zone_page_state_add(v + overstep, zone, item); |
| 265 | __this_cpu_write(*p, -overstep); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 266 | } |
| 267 | } |
Christoph Lameter | ca889e6 | 2006-06-30 01:55:44 -0700 | [diff] [blame] | 268 | |
| 269 | void __inc_zone_page_state(struct page *page, enum zone_stat_item item) |
| 270 | { |
| 271 | __inc_zone_state(page_zone(page), item); |
| 272 | } |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 273 | EXPORT_SYMBOL(__inc_zone_page_state); |
| 274 | |
Christoph Lameter | c878538 | 2007-02-10 01:43:01 -0800 | [diff] [blame] | 275 | void __dec_zone_state(struct zone *zone, enum zone_stat_item item) |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 276 | { |
Christoph Lameter | 12938a9 | 2010-12-06 11:16:20 -0600 | [diff] [blame] | 277 | struct per_cpu_pageset __percpu *pcp = zone->pageset; |
| 278 | s8 __percpu *p = pcp->vm_stat_diff + item; |
| 279 | s8 v, t; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 280 | |
Christoph Lameter | 908ee0f | 2010-12-06 11:40:02 -0600 | [diff] [blame] | 281 | v = __this_cpu_dec_return(*p); |
Christoph Lameter | 12938a9 | 2010-12-06 11:16:20 -0600 | [diff] [blame] | 282 | t = __this_cpu_read(pcp->stat_threshold); |
| 283 | if (unlikely(v < - t)) { |
| 284 | s8 overstep = t >> 1; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 285 | |
Christoph Lameter | 12938a9 | 2010-12-06 11:16:20 -0600 | [diff] [blame] | 286 | zone_page_state_add(v - overstep, zone, item); |
| 287 | __this_cpu_write(*p, overstep); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 288 | } |
| 289 | } |
Christoph Lameter | c878538 | 2007-02-10 01:43:01 -0800 | [diff] [blame] | 290 | |
| 291 | void __dec_zone_page_state(struct page *page, enum zone_stat_item item) |
| 292 | { |
| 293 | __dec_zone_state(page_zone(page), item); |
| 294 | } |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 295 | EXPORT_SYMBOL(__dec_zone_page_state); |
| 296 | |
Heiko Carstens | 4156153 | 2012-01-12 17:17:30 -0800 | [diff] [blame] | 297 | #ifdef CONFIG_HAVE_CMPXCHG_LOCAL |
Christoph Lameter | 7c83912 | 2010-12-14 10:28:46 -0600 | [diff] [blame] | 298 | /* |
| 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 | */ |
| 310 | static 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 Lameter | d3bc236 | 2011-04-14 15:21:58 -0700 | [diff] [blame] | 323 | * 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 Lameter | 7c83912 | 2010-12-14 10:28:46 -0600 | [diff] [blame] | 329 | */ |
| 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 | |
| 348 | void mod_zone_page_state(struct zone *zone, enum zone_stat_item item, |
| 349 | int delta) |
| 350 | { |
| 351 | mod_state(zone, item, delta, 0); |
| 352 | } |
| 353 | EXPORT_SYMBOL(mod_zone_page_state); |
| 354 | |
| 355 | void inc_zone_state(struct zone *zone, enum zone_stat_item item) |
| 356 | { |
| 357 | mod_state(zone, item, 1, 1); |
| 358 | } |
| 359 | |
| 360 | void inc_zone_page_state(struct page *page, enum zone_stat_item item) |
| 361 | { |
| 362 | mod_state(page_zone(page), item, 1, 1); |
| 363 | } |
| 364 | EXPORT_SYMBOL(inc_zone_page_state); |
| 365 | |
| 366 | void dec_zone_page_state(struct page *page, enum zone_stat_item item) |
| 367 | { |
| 368 | mod_state(page_zone(page), item, -1, -1); |
| 369 | } |
| 370 | EXPORT_SYMBOL(dec_zone_page_state); |
| 371 | #else |
| 372 | /* |
| 373 | * Use interrupt disable to serialize counter updates |
| 374 | */ |
| 375 | void 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 | } |
| 384 | EXPORT_SYMBOL(mod_zone_page_state); |
| 385 | |
Christoph Lameter | ca889e6 | 2006-06-30 01:55:44 -0700 | [diff] [blame] | 386 | void 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 Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 395 | void inc_zone_page_state(struct page *page, enum zone_stat_item item) |
| 396 | { |
| 397 | unsigned long flags; |
| 398 | struct zone *zone; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 399 | |
| 400 | zone = page_zone(page); |
| 401 | local_irq_save(flags); |
Christoph Lameter | ca889e6 | 2006-06-30 01:55:44 -0700 | [diff] [blame] | 402 | __inc_zone_state(zone, item); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 403 | local_irq_restore(flags); |
| 404 | } |
| 405 | EXPORT_SYMBOL(inc_zone_page_state); |
| 406 | |
| 407 | void dec_zone_page_state(struct page *page, enum zone_stat_item item) |
| 408 | { |
| 409 | unsigned long flags; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 410 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 411 | local_irq_save(flags); |
Christoph Lameter | a302eb4 | 2006-08-31 21:27:34 -0700 | [diff] [blame] | 412 | __dec_zone_page_state(page, item); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 413 | local_irq_restore(flags); |
| 414 | } |
| 415 | EXPORT_SYMBOL(dec_zone_page_state); |
Christoph Lameter | 7c83912 | 2010-12-14 10:28:46 -0600 | [diff] [blame] | 416 | #endif |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 417 | |
| 418 | /* |
| 419 | * Update the zone counters for one cpu. |
Christoph Lameter | 4037d45 | 2007-05-09 02:35:14 -0700 | [diff] [blame] | 420 | * |
Christoph Lameter | a7f75e2 | 2008-02-04 22:29:16 -0800 | [diff] [blame] | 421 | * 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 Lameter | 4037d45 | 2007-05-09 02:35:14 -0700 | [diff] [blame] | 425 | * 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 Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 435 | */ |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 436 | bool refresh_cpu_vm_stats(int cpu) |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 437 | { |
| 438 | struct zone *zone; |
| 439 | int i; |
Christoph Lameter | a7f75e2 | 2008-02-04 22:29:16 -0800 | [diff] [blame] | 440 | int global_diff[NR_VM_ZONE_STAT_ITEMS] = { 0, }; |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 441 | bool vm_activity = false; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 442 | |
KOSAKI Motohiro | ee99c71 | 2009-03-31 15:19:31 -0700 | [diff] [blame] | 443 | for_each_populated_zone(zone) { |
Christoph Lameter | 4037d45 | 2007-05-09 02:35:14 -0700 | [diff] [blame] | 444 | struct per_cpu_pageset *p; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 445 | |
Christoph Lameter | 99dcc3e | 2010-01-05 15:34:51 +0900 | [diff] [blame] | 446 | p = per_cpu_ptr(zone->pageset, cpu); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 447 | |
| 448 | for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++) |
Christoph Lameter | 4037d45 | 2007-05-09 02:35:14 -0700 | [diff] [blame] | 449 | if (p->vm_stat_diff[i]) { |
Christoph Lameter | a7f75e2 | 2008-02-04 22:29:16 -0800 | [diff] [blame] | 450 | unsigned long flags; |
| 451 | int v; |
| 452 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 453 | local_irq_save(flags); |
Christoph Lameter | a7f75e2 | 2008-02-04 22:29:16 -0800 | [diff] [blame] | 454 | v = p->vm_stat_diff[i]; |
Christoph Lameter | 4037d45 | 2007-05-09 02:35:14 -0700 | [diff] [blame] | 455 | p->vm_stat_diff[i] = 0; |
Christoph Lameter | a7f75e2 | 2008-02-04 22:29:16 -0800 | [diff] [blame] | 456 | local_irq_restore(flags); |
| 457 | atomic_long_add(v, &zone->vm_stat[i]); |
| 458 | global_diff[i] += v; |
Christoph Lameter | 4037d45 | 2007-05-09 02:35:14 -0700 | [diff] [blame] | 459 | #ifdef CONFIG_NUMA |
| 460 | /* 3 seconds idle till flush */ |
| 461 | p->expire = 3; |
| 462 | #endif |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 463 | } |
Dimitri Sivanich | 468fd62 | 2008-04-28 02:13:37 -0700 | [diff] [blame] | 464 | cond_resched(); |
Christoph Lameter | 4037d45 | 2007-05-09 02:35:14 -0700 | [diff] [blame] | 465 | #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 Lameter | 3dfa572 | 2008-02-04 22:29:19 -0800 | [diff] [blame] | 473 | if (!p->expire || !p->pcp.count) |
Christoph Lameter | 4037d45 | 2007-05-09 02:35:14 -0700 | [diff] [blame] | 474 | 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-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 488 | if (p->pcp.count) { |
| 489 | vm_activity = true; |
Christoph Lameter | 3dfa572 | 2008-02-04 22:29:19 -0800 | [diff] [blame] | 490 | drain_zone_pages(zone, &p->pcp); |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 491 | } |
Christoph Lameter | 4037d45 | 2007-05-09 02:35:14 -0700 | [diff] [blame] | 492 | #endif |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 493 | } |
Christoph Lameter | a7f75e2 | 2008-02-04 22:29:16 -0800 | [diff] [blame] | 494 | |
| 495 | for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++) |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 496 | if (global_diff[i]) { |
Christoph Lameter | a7f75e2 | 2008-02-04 22:29:16 -0800 | [diff] [blame] | 497 | atomic_long_add(global_diff[i], &vm_stat[i]); |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 498 | vm_activity = true; |
| 499 | } |
| 500 | |
| 501 | return vm_activity; |
| 502 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 503 | } |
| 504 | |
Cody P Schafer | 40f4b1e | 2013-04-29 15:08:38 -0700 | [diff] [blame] | 505 | /* |
| 506 | * this is only called if !populated_zone(zone), which implies no other users of |
| 507 | * pset->vm_stat_diff[] exsist. |
| 508 | */ |
Minchan Kim | 5a88381 | 2012-10-08 16:33:39 -0700 | [diff] [blame] | 509 | void 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 Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 521 | #endif |
| 522 | |
Christoph Lameter | ca889e6 | 2006-06-30 01:55:44 -0700 | [diff] [blame] | 523 | #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 Kleen | 78afd56 | 2011-03-22 16:33:12 -0700 | [diff] [blame] | 529 | * |
| 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 Lameter | ca889e6 | 2006-06-30 01:55:44 -0700 | [diff] [blame] | 533 | */ |
Andi Kleen | 78afd56 | 2011-03-22 16:33:12 -0700 | [diff] [blame] | 534 | void zone_statistics(struct zone *preferred_zone, struct zone *z, gfp_t flags) |
Christoph Lameter | ca889e6 | 2006-06-30 01:55:44 -0700 | [diff] [blame] | 535 | { |
Mel Gorman | 18ea7e7 | 2008-04-28 02:12:14 -0700 | [diff] [blame] | 536 | if (z->zone_pgdat == preferred_zone->zone_pgdat) { |
Christoph Lameter | ca889e6 | 2006-06-30 01:55:44 -0700 | [diff] [blame] | 537 | __inc_zone_state(z, NUMA_HIT); |
| 538 | } else { |
| 539 | __inc_zone_state(z, NUMA_MISS); |
Mel Gorman | 18ea7e7 | 2008-04-28 02:12:14 -0700 | [diff] [blame] | 540 | __inc_zone_state(preferred_zone, NUMA_FOREIGN); |
Christoph Lameter | ca889e6 | 2006-06-30 01:55:44 -0700 | [diff] [blame] | 541 | } |
Andi Kleen | 78afd56 | 2011-03-22 16:33:12 -0700 | [diff] [blame] | 542 | if (z->node == ((flags & __GFP_OTHER_NODE) ? |
| 543 | preferred_zone->node : numa_node_id())) |
Christoph Lameter | ca889e6 | 2006-06-30 01:55:44 -0700 | [diff] [blame] | 544 | __inc_zone_state(z, NUMA_LOCAL); |
| 545 | else |
| 546 | __inc_zone_state(z, NUMA_OTHER); |
| 547 | } |
| 548 | #endif |
| 549 | |
Mel Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 550 | #ifdef CONFIG_COMPACTION |
Namhyung Kim | 36deb0b | 2010-10-26 14:22:04 -0700 | [diff] [blame] | 551 | |
Mel Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 552 | struct 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 | */ |
| 566 | static 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 Gorman | f1a5ab1 | 2010-05-24 14:32:26 -0700 | [diff] [blame] | 592 | |
| 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 Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 600 | static int __fragmentation_index(unsigned int order, struct contig_page_info *info) |
Mel Gorman | f1a5ab1 | 2010-05-24 14:32:26 -0700 | [diff] [blame] | 601 | { |
| 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 Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 619 | |
| 620 | /* Same as __fragmentation index but allocs contig_page_info on stack */ |
| 621 | int 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 Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 628 | #endif |
| 629 | |
| 630 | #if defined(CONFIG_PROC_FS) || defined(CONFIG_COMPACTION) |
Alexey Dobriyan | 8f32f7e | 2008-10-06 04:13:52 +0400 | [diff] [blame] | 631 | #include <linux/proc_fs.h> |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 632 | #include <linux/seq_file.h> |
| 633 | |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 634 | static char * const migratetype_names[MIGRATE_TYPES] = { |
| 635 | "Unmovable", |
| 636 | "Reclaimable", |
| 637 | "Movable", |
| 638 | "Reserve", |
Michal Nazarewicz | 47118af | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 639 | #ifdef CONFIG_CMA |
| 640 | "CMA", |
| 641 | #endif |
Minchan Kim | 194159f | 2013-02-22 16:33:58 -0800 | [diff] [blame] | 642 | #ifdef CONFIG_MEMORY_ISOLATION |
KOSAKI Motohiro | 91446b0 | 2008-04-15 14:34:42 -0700 | [diff] [blame] | 643 | "Isolate", |
Minchan Kim | 194159f | 2013-02-22 16:33:58 -0800 | [diff] [blame] | 644 | #endif |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 645 | }; |
| 646 | |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 647 | static 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 | |
| 659 | static 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 | |
| 667 | static void frag_stop(struct seq_file *m, void *arg) |
| 668 | { |
| 669 | } |
| 670 | |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 671 | /* Walk all the zones in a node and print using a callback */ |
| 672 | static 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 Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 674 | { |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 675 | struct zone *zone; |
| 676 | struct zone *node_zones = pgdat->node_zones; |
| 677 | unsigned long flags; |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 678 | |
| 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 Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 684 | print(m, pgdat, zone); |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 685 | spin_unlock_irqrestore(&zone->lock, flags); |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 686 | } |
| 687 | } |
Mel Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 688 | #endif |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 689 | |
David Rientjes | 0d6617c | 2011-09-14 16:21:05 -0700 | [diff] [blame] | 690 | #if defined(CONFIG_PROC_FS) || defined(CONFIG_SYSFS) || defined(CONFIG_NUMA) |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 691 | #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 | |
| 712 | const 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 Gorman | 49ea7eb | 2011-10-31 17:07:59 -0700 | [diff] [blame] | 733 | "nr_vmscan_immediate_reclaim", |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 734 | "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 Zolnierkiewicz | d1ce749 | 2012-10-08 16:32:02 -0700 | [diff] [blame] | 750 | "nr_free_cma", |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 751 | "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 Han | 904249a | 2012-04-25 16:01:48 -0700 | [diff] [blame] | 770 | TEXTS_FOR_ZONES("pgsteal_kswapd") |
| 771 | TEXTS_FOR_ZONES("pgsteal_direct") |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 772 | TEXTS_FOR_ZONES("pgscan_kswapd") |
| 773 | TEXTS_FOR_ZONES("pgscan_direct") |
Mel Gorman | 68243e7 | 2012-07-31 16:44:39 -0700 | [diff] [blame] | 774 | "pgscan_direct_throttle", |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 775 | |
| 776 | #ifdef CONFIG_NUMA |
| 777 | "zone_reclaim_failed", |
| 778 | #endif |
| 779 | "pginodesteal", |
| 780 | "slabs_scanned", |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 781 | "kswapd_inodesteal", |
| 782 | "kswapd_low_wmark_hit_quickly", |
| 783 | "kswapd_high_wmark_hit_quickly", |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 784 | "pageoutrun", |
| 785 | "allocstall", |
| 786 | |
| 787 | "pgrotated", |
| 788 | |
Mel Gorman | 03c5a6e | 2012-11-02 14:52:48 +0000 | [diff] [blame] | 789 | #ifdef CONFIG_NUMA_BALANCING |
| 790 | "numa_pte_updates", |
Mel Gorman | f99510d | 2013-11-12 15:08:32 -0800 | [diff] [blame] | 791 | "numa_huge_pte_updates", |
Mel Gorman | 03c5a6e | 2012-11-02 14:52:48 +0000 | [diff] [blame] | 792 | "numa_hint_faults", |
| 793 | "numa_hint_faults_local", |
| 794 | "numa_pages_migrated", |
| 795 | #endif |
Mel Gorman | 5647bc2 | 2012-10-19 10:46:20 +0100 | [diff] [blame] | 796 | #ifdef CONFIG_MIGRATION |
| 797 | "pgmigrate_success", |
| 798 | "pgmigrate_fail", |
| 799 | #endif |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 800 | #ifdef CONFIG_COMPACTION |
Mel Gorman | 397487d | 2012-10-19 12:00:10 +0100 | [diff] [blame] | 801 | "compact_migrate_scanned", |
| 802 | "compact_free_scanned", |
| 803 | "compact_isolated", |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 804 | "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 Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 820 | |
| 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. Shutemov | d8a8e1f | 2012-12-12 13:51:09 -0800 | [diff] [blame] | 827 | "thp_zero_page_alloc", |
| 828 | "thp_zero_page_alloc_failed", |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 829 | #endif |
| 830 | |
| 831 | #endif /* CONFIG_VM_EVENTS_COUNTERS */ |
| 832 | }; |
David Rientjes | 0d6617c | 2011-09-14 16:21:05 -0700 | [diff] [blame] | 833 | #endif /* CONFIG_PROC_FS || CONFIG_SYSFS || CONFIG_NUMA */ |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 834 | |
| 835 | |
Mel Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 836 | #ifdef CONFIG_PROC_FS |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 837 | static 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 | */ |
| 851 | static 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 | |
| 858 | static 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 Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 879 | seq_putc(m, '\n'); |
| 880 | } |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 881 | } |
| 882 | |
| 883 | /* Print out the free pages at each order for each migatetype */ |
| 884 | static 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 | |
| 900 | static 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 Schafer | 108bcc9 | 2013-02-22 16:35:23 -0800 | [diff] [blame] | 906 | unsigned long end_pfn = zone_end_pfn(zone); |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 907 | 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 Gorman | eb33575 | 2009-05-13 17:34:48 +0100 | [diff] [blame] | 916 | |
| 917 | /* Watch for unexpected holes punched in the memmap */ |
| 918 | if (!memmap_valid_within(pfn, page, zone)) |
Mel Gorman | e80d6a2 | 2008-08-14 11:10:14 +0100 | [diff] [blame] | 919 | continue; |
Mel Gorman | eb33575 | 2009-05-13 17:34:48 +0100 | [diff] [blame] | 920 | |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 921 | mtype = get_pageblock_migratetype(page); |
| 922 | |
Mel Gorman | e80d6a2 | 2008-08-14 11:10:14 +0100 | [diff] [blame] | 923 | if (mtype < MIGRATE_TYPES) |
| 924 | count[mtype]++; |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 925 | } |
| 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 */ |
| 935 | static 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 | */ |
| 953 | static int pagetypeinfo_show(struct seq_file *m, void *arg) |
| 954 | { |
| 955 | pg_data_t *pgdat = (pg_data_t *)arg; |
| 956 | |
KOSAKI Motohiro | 41b25a3 | 2008-04-30 00:52:13 -0700 | [diff] [blame] | 957 | /* check memoryless node */ |
Lai Jiangshan | a47b53c | 2012-12-12 13:51:37 -0800 | [diff] [blame] | 958 | if (!node_state(pgdat->node_id, N_MEMORY)) |
KOSAKI Motohiro | 41b25a3 | 2008-04-30 00:52:13 -0700 | [diff] [blame] | 959 | return 0; |
| 960 | |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 961 | 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 Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 967 | return 0; |
| 968 | } |
| 969 | |
Alexey Dobriyan | 8f32f7e | 2008-10-06 04:13:52 +0400 | [diff] [blame] | 970 | static const struct seq_operations fragmentation_op = { |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 971 | .start = frag_start, |
| 972 | .next = frag_next, |
| 973 | .stop = frag_stop, |
| 974 | .show = frag_show, |
| 975 | }; |
| 976 | |
Alexey Dobriyan | 8f32f7e | 2008-10-06 04:13:52 +0400 | [diff] [blame] | 977 | static int fragmentation_open(struct inode *inode, struct file *file) |
| 978 | { |
| 979 | return seq_open(file, &fragmentation_op); |
| 980 | } |
| 981 | |
| 982 | static 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 Dobriyan | 74e2e8e | 2008-10-06 04:15:36 +0400 | [diff] [blame] | 989 | static const struct seq_operations pagetypeinfo_op = { |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 990 | .start = frag_start, |
| 991 | .next = frag_next, |
| 992 | .stop = frag_stop, |
| 993 | .show = pagetypeinfo_show, |
| 994 | }; |
| 995 | |
Alexey Dobriyan | 74e2e8e | 2008-10-06 04:15:36 +0400 | [diff] [blame] | 996 | static int pagetypeinfo_open(struct inode *inode, struct file *file) |
| 997 | { |
| 998 | return seq_open(file, &pagetypeinfo_op); |
| 999 | } |
| 1000 | |
| 1001 | static 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 Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 1008 | static 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 Fengguang | 08d9ae7 | 2009-06-16 15:32:30 -0700 | [diff] [blame] | 1018 | "\n scanned %lu" |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 1019 | "\n spanned %lu" |
Jiang Liu | 9feedc9 | 2012-12-12 13:52:12 -0800 | [diff] [blame] | 1020 | "\n present %lu" |
| 1021 | "\n managed %lu", |
Mel Gorman | 88f5acf | 2011-01-13 15:45:41 -0800 | [diff] [blame] | 1022 | zone_page_state(zone, NR_FREE_PAGES), |
Mel Gorman | 4185896 | 2009-06-16 15:32:12 -0700 | [diff] [blame] | 1023 | min_wmark_pages(zone), |
| 1024 | low_wmark_pages(zone), |
| 1025 | high_wmark_pages(zone), |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 1026 | zone->pages_scanned, |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 1027 | zone->spanned_pages, |
Jiang Liu | 9feedc9 | 2012-12-12 13:52:12 -0800 | [diff] [blame] | 1028 | zone->present_pages, |
| 1029 | zone->managed_pages); |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 1030 | |
| 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 Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 1045 | |
Christoph Lameter | 99dcc3e | 2010-01-05 15:34:51 +0900 | [diff] [blame] | 1046 | pageset = per_cpu_ptr(zone->pageset, i); |
Christoph Lameter | 3dfa572 | 2008-02-04 22:29:19 -0800 | [diff] [blame] | 1047 | 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 Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 1056 | #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 Riel | 556adec | 2008-10-18 20:26:34 -0700 | [diff] [blame] | 1063 | "\n start_pfn: %lu" |
| 1064 | "\n inactive_ratio: %u", |
KOSAKI Motohiro | 93e4a89 | 2010-03-05 13:41:55 -0800 | [diff] [blame] | 1065 | zone->all_unreclaimable, |
Rik van Riel | 556adec | 2008-10-18 20:26:34 -0700 | [diff] [blame] | 1066 | zone->zone_start_pfn, |
| 1067 | zone->inactive_ratio); |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 1068 | seq_putc(m, '\n'); |
| 1069 | } |
| 1070 | |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 1071 | /* |
| 1072 | * Output information about zones in @pgdat. |
| 1073 | */ |
| 1074 | static int zoneinfo_show(struct seq_file *m, void *arg) |
| 1075 | { |
Mel Gorman | 467c996 | 2007-10-16 01:26:02 -0700 | [diff] [blame] | 1076 | pg_data_t *pgdat = (pg_data_t *)arg; |
| 1077 | walk_zones_in_node(m, pgdat, zoneinfo_show_print); |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 1078 | return 0; |
| 1079 | } |
| 1080 | |
Alexey Dobriyan | 5c9fe62 | 2008-10-06 04:19:42 +0400 | [diff] [blame] | 1081 | static const struct seq_operations zoneinfo_op = { |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 1082 | .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 Dobriyan | 5c9fe62 | 2008-10-06 04:19:42 +0400 | [diff] [blame] | 1089 | static int zoneinfo_open(struct inode *inode, struct file *file) |
| 1090 | { |
| 1091 | return seq_open(file, &zoneinfo_op); |
| 1092 | } |
| 1093 | |
| 1094 | static 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 Rubin | 79da826 | 2010-10-26 14:21:36 -0700 | [diff] [blame] | 1101 | enum writeback_stat_item { |
| 1102 | NR_DIRTY_THRESHOLD, |
| 1103 | NR_DIRTY_BG_THRESHOLD, |
| 1104 | NR_VM_WRITEBACK_STAT_ITEMS, |
| 1105 | }; |
| 1106 | |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 1107 | static void *vmstat_start(struct seq_file *m, loff_t *pos) |
| 1108 | { |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 1109 | unsigned long *v; |
Michael Rubin | 79da826 | 2010-10-26 14:21:36 -0700 | [diff] [blame] | 1110 | int i, stat_items_size; |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 1111 | |
| 1112 | if (*pos >= ARRAY_SIZE(vmstat_text)) |
| 1113 | return NULL; |
Michael Rubin | 79da826 | 2010-10-26 14:21:36 -0700 | [diff] [blame] | 1114 | stat_items_size = NR_VM_ZONE_STAT_ITEMS * sizeof(unsigned long) + |
| 1115 | NR_VM_WRITEBACK_STAT_ITEMS * sizeof(unsigned long); |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 1116 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 1117 | #ifdef CONFIG_VM_EVENT_COUNTERS |
Michael Rubin | 79da826 | 2010-10-26 14:21:36 -0700 | [diff] [blame] | 1118 | stat_items_size += sizeof(struct vm_event_state); |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 1119 | #endif |
Michael Rubin | 79da826 | 2010-10-26 14:21:36 -0700 | [diff] [blame] | 1120 | |
| 1121 | v = kmalloc(stat_items_size, GFP_KERNEL); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 1122 | m->private = v; |
| 1123 | if (!v) |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 1124 | return ERR_PTR(-ENOMEM); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 1125 | for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++) |
| 1126 | v[i] = global_page_state(i); |
Michael Rubin | 79da826 | 2010-10-26 14:21:36 -0700 | [diff] [blame] | 1127 | 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 Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 1133 | #ifdef CONFIG_VM_EVENT_COUNTERS |
Michael Rubin | 79da826 | 2010-10-26 14:21:36 -0700 | [diff] [blame] | 1134 | all_vm_events(v); |
| 1135 | v[PGPGIN] /= 2; /* sectors -> kbytes */ |
| 1136 | v[PGPGOUT] /= 2; |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 1137 | #endif |
Wu Fengguang | ff8b16d | 2010-11-04 01:56:49 +0800 | [diff] [blame] | 1138 | return (unsigned long *)m->private + *pos; |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 1139 | } |
| 1140 | |
| 1141 | static 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 | |
| 1149 | static 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 | |
| 1158 | static void vmstat_stop(struct seq_file *m, void *arg) |
| 1159 | { |
| 1160 | kfree(m->private); |
| 1161 | m->private = NULL; |
| 1162 | } |
| 1163 | |
Alexey Dobriyan | b6aa44a | 2008-10-06 04:17:48 +0400 | [diff] [blame] | 1164 | static const struct seq_operations vmstat_op = { |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 1165 | .start = vmstat_start, |
| 1166 | .next = vmstat_next, |
| 1167 | .stop = vmstat_stop, |
| 1168 | .show = vmstat_show, |
| 1169 | }; |
| 1170 | |
Alexey Dobriyan | b6aa44a | 2008-10-06 04:17:48 +0400 | [diff] [blame] | 1171 | static int vmstat_open(struct inode *inode, struct file *file) |
| 1172 | { |
| 1173 | return seq_open(file, &vmstat_op); |
| 1174 | } |
| 1175 | |
| 1176 | static 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 Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 1182 | #endif /* CONFIG_PROC_FS */ |
| 1183 | |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 1184 | #ifdef CONFIG_SMP |
Christoph Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1185 | static DEFINE_PER_CPU(struct delayed_work, vmstat_work); |
Christoph Lameter | 77461ab | 2007-05-09 02:35:13 -0700 | [diff] [blame] | 1186 | int sysctl_stat_interval __read_mostly = HZ; |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 1187 | static struct cpumask vmstat_off_cpus; |
| 1188 | struct delayed_work vmstat_monitor_work; |
Christoph Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1189 | |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 1190 | static inline bool need_vmstat(int cpu) |
Christoph Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1191 | { |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 1192 | 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 Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1209 | } |
| 1210 | |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 1211 | static void vmstat_update(struct work_struct *w); |
| 1212 | |
| 1213 | static 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 | |
| 1221 | static void __cpuinit setup_cpu_timer(int cpu) |
Christoph Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1222 | { |
Tejun Heo | 1871e52 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 1223 | struct delayed_work *work = &per_cpu(vmstat_work, cpu); |
Christoph Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1224 | |
Tejun Heo | 203b42f | 2012-08-21 13:18:23 -0700 | [diff] [blame] | 1225 | INIT_DEFERRABLE_WORK(work, vmstat_update); |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 1226 | start_cpu_timer(cpu); |
| 1227 | } |
| 1228 | |
| 1229 | static 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 | |
| 1242 | static 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 Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1251 | } |
| 1252 | |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 1253 | /* |
| 1254 | * Use the cpu notifier to insure that the thresholds are recalculated |
| 1255 | * when necessary. |
| 1256 | */ |
| 1257 | static int __cpuinit vmstat_cpuup_callback(struct notifier_block *nfb, |
| 1258 | unsigned long action, |
| 1259 | void *hcpu) |
| 1260 | { |
Christoph Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1261 | long cpu = (long)hcpu; |
| 1262 | |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 1263 | switch (action) { |
Christoph Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1264 | case CPU_ONLINE: |
| 1265 | case CPU_ONLINE_FROZEN: |
KAMEZAWA Hiroyuki | 5ee28a4 | 2010-09-09 16:38:14 -0700 | [diff] [blame] | 1266 | refresh_zone_stat_thresholds(); |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 1267 | setup_cpu_timer(cpu); |
Christoph Lameter | ad59692 | 2010-01-05 15:34:51 +0900 | [diff] [blame] | 1268 | node_set_state(cpu_to_node(cpu), N_CPU); |
Christoph Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1269 | break; |
| 1270 | case CPU_DOWN_PREPARE: |
| 1271 | case CPU_DOWN_PREPARE_FROZEN: |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 1272 | 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 Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1276 | break; |
| 1277 | case CPU_DOWN_FAILED: |
| 1278 | case CPU_DOWN_FAILED_FROZEN: |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 1279 | setup_cpu_timer(cpu); |
Christoph Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1280 | break; |
Andy Whitcroft | ce421c7 | 2006-12-06 20:33:08 -0800 | [diff] [blame] | 1281 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1282 | case CPU_DEAD_FROZEN: |
Andy Whitcroft | ce421c7 | 2006-12-06 20:33:08 -0800 | [diff] [blame] | 1283 | refresh_zone_stat_thresholds(); |
| 1284 | break; |
| 1285 | default: |
| 1286 | break; |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 1287 | } |
| 1288 | return NOTIFY_OK; |
| 1289 | } |
| 1290 | |
| 1291 | static struct notifier_block __cpuinitdata vmstat_notifier = |
| 1292 | { &vmstat_cpuup_callback, NULL, 0 }; |
Alexey Dobriyan | 8f32f7e | 2008-10-06 04:13:52 +0400 | [diff] [blame] | 1293 | #endif |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 1294 | |
Adrian Bunk | e2fc88d | 2007-10-16 01:26:27 -0700 | [diff] [blame] | 1295 | static int __init setup_vmstat(void) |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 1296 | { |
Alexey Dobriyan | 8f32f7e | 2008-10-06 04:13:52 +0400 | [diff] [blame] | 1297 | #ifdef CONFIG_SMP |
Christoph Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1298 | int cpu; |
| 1299 | |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 1300 | register_cpu_notifier(&vmstat_notifier); |
Christoph Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1301 | |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 1302 | 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 Lameter | d1187ed | 2007-05-09 02:35:12 -0700 | [diff] [blame] | 1308 | for_each_online_cpu(cpu) |
Gilad Ben-Yossef | 7d252cd | 2013-06-26 17:24:59 +0100 | [diff] [blame] | 1309 | setup_cpu_timer(cpu); |
Alexey Dobriyan | 8f32f7e | 2008-10-06 04:13:52 +0400 | [diff] [blame] | 1310 | #endif |
| 1311 | #ifdef CONFIG_PROC_FS |
| 1312 | proc_create("buddyinfo", S_IRUGO, NULL, &fragmentation_file_operations); |
Alexey Dobriyan | 74e2e8e | 2008-10-06 04:15:36 +0400 | [diff] [blame] | 1313 | proc_create("pagetypeinfo", S_IRUGO, NULL, &pagetypeinfo_file_ops); |
Alexey Dobriyan | b6aa44a | 2008-10-06 04:17:48 +0400 | [diff] [blame] | 1314 | proc_create("vmstat", S_IRUGO, NULL, &proc_vmstat_file_operations); |
Alexey Dobriyan | 5c9fe62 | 2008-10-06 04:19:42 +0400 | [diff] [blame] | 1315 | proc_create("zoneinfo", S_IRUGO, NULL, &proc_zoneinfo_file_operations); |
Alexey Dobriyan | 8f32f7e | 2008-10-06 04:13:52 +0400 | [diff] [blame] | 1316 | #endif |
Christoph Lameter | df9ecab | 2006-08-31 21:27:35 -0700 | [diff] [blame] | 1317 | return 0; |
| 1318 | } |
| 1319 | module_init(setup_vmstat) |
Mel Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 1320 | |
| 1321 | #if defined(CONFIG_DEBUG_FS) && defined(CONFIG_COMPACTION) |
| 1322 | #include <linux/debugfs.h> |
| 1323 | |
Mel Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 1324 | |
| 1325 | /* |
| 1326 | * Return an index indicating how much of the available free memory is |
| 1327 | * unusable for an allocation of the requested size. |
| 1328 | */ |
| 1329 | static 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 | |
| 1347 | static 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 | */ |
| 1375 | static 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 Jiangshan | a47b53c | 2012-12-12 13:51:37 -0800 | [diff] [blame] | 1380 | if (!node_state(pgdat->node_id, N_MEMORY)) |
Mel Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 1381 | return 0; |
| 1382 | |
| 1383 | walk_zones_in_node(m, pgdat, unusable_show_print); |
| 1384 | |
| 1385 | return 0; |
| 1386 | } |
| 1387 | |
| 1388 | static const struct seq_operations unusable_op = { |
| 1389 | .start = frag_start, |
| 1390 | .next = frag_next, |
| 1391 | .stop = frag_stop, |
| 1392 | .show = unusable_show, |
| 1393 | }; |
| 1394 | |
| 1395 | static int unusable_open(struct inode *inode, struct file *file) |
| 1396 | { |
| 1397 | return seq_open(file, &unusable_op); |
| 1398 | } |
| 1399 | |
| 1400 | static 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 Gorman | f1a5ab1 | 2010-05-24 14:32:26 -0700 | [diff] [blame] | 1407 | static 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 Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1421 | index = __fragmentation_index(order, &info); |
Mel Gorman | f1a5ab1 | 2010-05-24 14:32:26 -0700 | [diff] [blame] | 1422 | 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 | */ |
| 1431 | static 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 | |
| 1440 | static const struct seq_operations extfrag_op = { |
| 1441 | .start = frag_start, |
| 1442 | .next = frag_next, |
| 1443 | .stop = frag_stop, |
| 1444 | .show = extfrag_show, |
| 1445 | }; |
| 1446 | |
| 1447 | static int extfrag_open(struct inode *inode, struct file *file) |
| 1448 | { |
| 1449 | return seq_open(file, &extfrag_op); |
| 1450 | } |
| 1451 | |
| 1452 | static 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 Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 1459 | static int __init extfrag_debug_init(void) |
| 1460 | { |
Sasikantha babu | bde8bd8 | 2012-05-29 15:06:22 -0700 | [diff] [blame] | 1461 | struct dentry *extfrag_debug_root; |
| 1462 | |
Mel Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 1463 | 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 babu | bde8bd8 | 2012-05-29 15:06:22 -0700 | [diff] [blame] | 1469 | goto fail; |
Mel Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 1470 | |
Mel Gorman | f1a5ab1 | 2010-05-24 14:32:26 -0700 | [diff] [blame] | 1471 | if (!debugfs_create_file("extfrag_index", 0444, |
| 1472 | extfrag_debug_root, NULL, &extfrag_file_ops)) |
Sasikantha babu | bde8bd8 | 2012-05-29 15:06:22 -0700 | [diff] [blame] | 1473 | goto fail; |
Mel Gorman | f1a5ab1 | 2010-05-24 14:32:26 -0700 | [diff] [blame] | 1474 | |
Mel Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 1475 | return 0; |
Sasikantha babu | bde8bd8 | 2012-05-29 15:06:22 -0700 | [diff] [blame] | 1476 | fail: |
| 1477 | debugfs_remove_recursive(extfrag_debug_root); |
| 1478 | return -ENOMEM; |
Mel Gorman | d7a5752 | 2010-05-24 14:32:25 -0700 | [diff] [blame] | 1479 | } |
| 1480 | |
| 1481 | module_init(extfrag_debug_init); |
| 1482 | #endif |