Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_VMSTAT_H |
| 2 | #define _LINUX_VMSTAT_H |
| 3 | |
| 4 | #include <linux/types.h> |
| 5 | #include <linux/percpu.h> |
Christoph Lameter | 9617729 | 2007-02-10 01:43:03 -0800 | [diff] [blame] | 6 | #include <linux/mm.h> |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 7 | #include <linux/mmzone.h> |
Andrew Morton | f042e70 | 2011-05-26 16:25:24 -0700 | [diff] [blame] | 8 | #include <linux/vm_event_item.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 9 | #include <linux/atomic.h> |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 10 | |
Adrian Bunk | c748e13 | 2008-07-23 21:27:03 -0700 | [diff] [blame] | 11 | extern int sysctl_stat_interval; |
| 12 | |
Andrew Morton | 780a065 | 2007-02-10 01:44:41 -0800 | [diff] [blame] | 13 | #ifdef CONFIG_VM_EVENT_COUNTERS |
| 14 | /* |
| 15 | * Light weight per cpu counter implementation. |
| 16 | * |
| 17 | * Counters should only be incremented and no critical kernel component |
| 18 | * should rely on the counter values. |
| 19 | * |
| 20 | * Counters are handled completely inline. On many platforms the code |
| 21 | * generated will simply be the increment of a global address. |
| 22 | */ |
| 23 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 24 | struct vm_event_state { |
| 25 | unsigned long event[NR_VM_EVENT_ITEMS]; |
| 26 | }; |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 27 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 28 | DECLARE_PER_CPU(struct vm_event_state, vm_event_states); |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 29 | |
Christoph Lameter | 293b6a4 | 2014-04-07 15:39:43 -0700 | [diff] [blame] | 30 | /* |
| 31 | * vm counters are allowed to be racy. Use raw_cpu_ops to avoid the |
| 32 | * local_irq_disable overhead. |
| 33 | */ |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 34 | static inline void __count_vm_event(enum vm_event_item item) |
| 35 | { |
Christoph Lameter | 293b6a4 | 2014-04-07 15:39:43 -0700 | [diff] [blame] | 36 | raw_cpu_inc(vm_event_states.event[item]); |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 37 | } |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 38 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 39 | static inline void count_vm_event(enum vm_event_item item) |
| 40 | { |
Rusty Russell | dd17c8f | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 41 | this_cpu_inc(vm_event_states.event[item]); |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 42 | } |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 43 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 44 | static inline void __count_vm_events(enum vm_event_item item, long delta) |
| 45 | { |
Christoph Lameter | 293b6a4 | 2014-04-07 15:39:43 -0700 | [diff] [blame] | 46 | raw_cpu_add(vm_event_states.event[item], delta); |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 47 | } |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 48 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 49 | static inline void count_vm_events(enum vm_event_item item, long delta) |
| 50 | { |
Rusty Russell | dd17c8f | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 51 | this_cpu_add(vm_event_states.event[item], delta); |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 52 | } |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 53 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 54 | extern void all_vm_events(unsigned long *); |
Yijing Wang | f1cb087 | 2013-04-29 15:08:14 -0700 | [diff] [blame] | 55 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 56 | extern void vm_events_fold_cpu(int cpu); |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 57 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 58 | #else |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 59 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 60 | /* Disable counters */ |
Andrew Morton | 780a065 | 2007-02-10 01:44:41 -0800 | [diff] [blame] | 61 | static inline void count_vm_event(enum vm_event_item item) |
| 62 | { |
| 63 | } |
| 64 | static inline void count_vm_events(enum vm_event_item item, long delta) |
| 65 | { |
| 66 | } |
| 67 | static inline void __count_vm_event(enum vm_event_item item) |
| 68 | { |
| 69 | } |
| 70 | static inline void __count_vm_events(enum vm_event_item item, long delta) |
| 71 | { |
| 72 | } |
| 73 | static inline void all_vm_events(unsigned long *ret) |
| 74 | { |
| 75 | } |
| 76 | static inline void vm_events_fold_cpu(int cpu) |
| 77 | { |
| 78 | } |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 79 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 80 | #endif /* CONFIG_VM_EVENT_COUNTERS */ |
| 81 | |
Mel Gorman | 03c5a6e | 2012-11-02 14:52:48 +0000 | [diff] [blame] | 82 | #ifdef CONFIG_NUMA_BALANCING |
| 83 | #define count_vm_numa_event(x) count_vm_event(x) |
| 84 | #define count_vm_numa_events(x, y) count_vm_events(x, y) |
| 85 | #else |
| 86 | #define count_vm_numa_event(x) do {} while (0) |
Mel Gorman | 3c0ff46 | 2013-02-22 16:34:29 -0800 | [diff] [blame] | 87 | #define count_vm_numa_events(x, y) do { (void)(y); } while (0) |
Mel Gorman | 03c5a6e | 2012-11-02 14:52:48 +0000 | [diff] [blame] | 88 | #endif /* CONFIG_NUMA_BALANCING */ |
| 89 | |
Mel Gorman | ec65993 | 2014-01-21 14:33:16 -0800 | [diff] [blame] | 90 | #ifdef CONFIG_DEBUG_TLBFLUSH |
| 91 | #define count_vm_tlb_event(x) count_vm_event(x) |
| 92 | #define count_vm_tlb_events(x, y) count_vm_events(x, y) |
| 93 | #else |
| 94 | #define count_vm_tlb_event(x) do {} while (0) |
| 95 | #define count_vm_tlb_events(x, y) do { (void)(y); } while (0) |
| 96 | #endif |
| 97 | |
Davidlohr Bueso | 4f11514 | 2014-06-04 16:06:46 -0700 | [diff] [blame] | 98 | #ifdef CONFIG_DEBUG_VM_VMACACHE |
| 99 | #define count_vm_vmacache_event(x) count_vm_event(x) |
| 100 | #else |
| 101 | #define count_vm_vmacache_event(x) do {} while (0) |
| 102 | #endif |
| 103 | |
Mel Gorman | 16709d1 | 2016-07-28 15:46:56 -0700 | [diff] [blame] | 104 | #define __count_zid_vm_events(item, zid, delta) \ |
| 105 | __count_vm_events(item##_NORMAL - ZONE_NORMAL + zid, delta) |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 106 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 107 | /* |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 108 | * Zone and node-based page accounting with per cpu differentials. |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 109 | */ |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 110 | extern atomic_long_t vm_zone_stat[NR_VM_ZONE_STAT_ITEMS]; |
| 111 | extern atomic_long_t vm_node_stat[NR_VM_NODE_STAT_ITEMS]; |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 112 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 113 | static inline void zone_page_state_add(long x, struct zone *zone, |
| 114 | enum zone_stat_item item) |
| 115 | { |
| 116 | atomic_long_add(x, &zone->vm_stat[item]); |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 117 | atomic_long_add(x, &vm_zone_stat[item]); |
| 118 | } |
| 119 | |
| 120 | static inline void node_page_state_add(long x, struct pglist_data *pgdat, |
| 121 | enum node_stat_item item) |
| 122 | { |
| 123 | atomic_long_add(x, &pgdat->vm_stat[item]); |
| 124 | atomic_long_add(x, &vm_node_stat[item]); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | static inline unsigned long global_page_state(enum zone_stat_item item) |
| 128 | { |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 129 | long x = atomic_long_read(&vm_zone_stat[item]); |
| 130 | #ifdef CONFIG_SMP |
| 131 | if (x < 0) |
| 132 | x = 0; |
| 133 | #endif |
| 134 | return x; |
| 135 | } |
| 136 | |
| 137 | static inline unsigned long global_node_page_state(enum node_stat_item item) |
| 138 | { |
| 139 | long x = atomic_long_read(&vm_node_stat[item]); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 140 | #ifdef CONFIG_SMP |
| 141 | if (x < 0) |
| 142 | x = 0; |
| 143 | #endif |
| 144 | return x; |
| 145 | } |
| 146 | |
| 147 | static inline unsigned long zone_page_state(struct zone *zone, |
| 148 | enum zone_stat_item item) |
| 149 | { |
| 150 | long x = atomic_long_read(&zone->vm_stat[item]); |
| 151 | #ifdef CONFIG_SMP |
| 152 | if (x < 0) |
| 153 | x = 0; |
| 154 | #endif |
| 155 | return x; |
| 156 | } |
| 157 | |
Christoph Lameter | aa45484 | 2010-09-09 16:38:17 -0700 | [diff] [blame] | 158 | /* |
| 159 | * More accurate version that also considers the currently pending |
| 160 | * deltas. For that we need to loop over all cpus to find the current |
| 161 | * deltas. There is no synchronization so the result cannot be |
| 162 | * exactly accurate either. |
| 163 | */ |
| 164 | static inline unsigned long zone_page_state_snapshot(struct zone *zone, |
| 165 | enum zone_stat_item item) |
| 166 | { |
| 167 | long x = atomic_long_read(&zone->vm_stat[item]); |
| 168 | |
| 169 | #ifdef CONFIG_SMP |
| 170 | int cpu; |
| 171 | for_each_online_cpu(cpu) |
| 172 | x += per_cpu_ptr(zone->pageset, cpu)->vm_stat_diff[item]; |
| 173 | |
| 174 | if (x < 0) |
| 175 | x = 0; |
| 176 | #endif |
| 177 | return x; |
| 178 | } |
| 179 | |
Mel Gorman | 599d0c9 | 2016-07-28 15:45:31 -0700 | [diff] [blame] | 180 | static inline unsigned long node_page_state_snapshot(pg_data_t *pgdat, |
| 181 | enum node_stat_item item) |
| 182 | { |
| 183 | long x = atomic_long_read(&pgdat->vm_stat[item]); |
| 184 | |
| 185 | #ifdef CONFIG_SMP |
| 186 | int cpu; |
| 187 | for_each_online_cpu(cpu) |
| 188 | x += per_cpu_ptr(pgdat->per_cpu_nodestats, cpu)->vm_node_stat_diff[item]; |
| 189 | |
| 190 | if (x < 0) |
| 191 | x = 0; |
| 192 | #endif |
| 193 | return x; |
| 194 | } |
| 195 | |
| 196 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 197 | #ifdef CONFIG_NUMA |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 198 | extern unsigned long sum_zone_node_page_state(int node, |
| 199 | enum zone_stat_item item); |
| 200 | extern unsigned long node_page_state(struct pglist_data *pgdat, |
| 201 | enum node_stat_item item); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 202 | #else |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 203 | #define sum_zone_node_page_state(node, item) global_page_state(item) |
| 204 | #define node_page_state(node, item) global_node_page_state(item) |
Christoph Lameter | ca889e6 | 2006-06-30 01:55:44 -0700 | [diff] [blame] | 205 | #endif /* CONFIG_NUMA */ |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 206 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 207 | #define add_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, __d) |
| 208 | #define sub_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, -(__d)) |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 209 | #define add_node_page_state(__p, __i, __d) mod_node_page_state(__p, __i, __d) |
| 210 | #define sub_node_page_state(__p, __i, __d) mod_node_page_state(__p, __i, -(__d)) |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 211 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 212 | #ifdef CONFIG_SMP |
Heiko Carstens | 6cdb18a | 2015-12-29 14:54:32 -0800 | [diff] [blame] | 213 | void __mod_zone_page_state(struct zone *, enum zone_stat_item item, long); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 214 | void __inc_zone_page_state(struct page *, enum zone_stat_item); |
| 215 | void __dec_zone_page_state(struct page *, enum zone_stat_item); |
| 216 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 217 | void __mod_node_page_state(struct pglist_data *, enum node_stat_item item, long); |
| 218 | void __inc_node_page_state(struct page *, enum node_stat_item); |
| 219 | void __dec_node_page_state(struct page *, enum node_stat_item); |
| 220 | |
Heiko Carstens | 6cdb18a | 2015-12-29 14:54:32 -0800 | [diff] [blame] | 221 | void mod_zone_page_state(struct zone *, enum zone_stat_item, long); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 222 | void inc_zone_page_state(struct page *, enum zone_stat_item); |
| 223 | void dec_zone_page_state(struct page *, enum zone_stat_item); |
| 224 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 225 | void mod_node_page_state(struct pglist_data *, enum node_stat_item, long); |
| 226 | void inc_node_page_state(struct page *, enum node_stat_item); |
| 227 | void dec_node_page_state(struct page *, enum node_stat_item); |
| 228 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 229 | extern void inc_node_state(struct pglist_data *, enum node_stat_item); |
Christoph Lameter | c878538 | 2007-02-10 01:43:01 -0800 | [diff] [blame] | 230 | extern void __inc_zone_state(struct zone *, enum zone_stat_item); |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 231 | extern void __inc_node_state(struct pglist_data *, enum node_stat_item); |
Christoph Lameter | c878538 | 2007-02-10 01:43:01 -0800 | [diff] [blame] | 232 | extern void dec_zone_state(struct zone *, enum zone_stat_item); |
| 233 | extern void __dec_zone_state(struct zone *, enum zone_stat_item); |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 234 | extern void __dec_node_state(struct pglist_data *, enum node_stat_item); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 235 | |
Christoph Lameter | 0eb77e9 | 2016-01-14 15:21:40 -0800 | [diff] [blame] | 236 | void quiet_vmstat(void); |
Christoph Lameter | 2bb921e | 2013-09-11 14:21:30 -0700 | [diff] [blame] | 237 | void cpu_vm_stats_fold(int cpu); |
KOSAKI Motohiro | a6cccdc | 2011-05-24 17:11:33 -0700 | [diff] [blame] | 238 | void refresh_zone_stat_thresholds(void); |
Mel Gorman | b44129b | 2011-01-13 15:45:43 -0800 | [diff] [blame] | 239 | |
Hugh Dickins | 52b6f46 | 2016-05-19 17:12:50 -0700 | [diff] [blame] | 240 | struct ctl_table; |
| 241 | int vmstat_refresh(struct ctl_table *, int write, |
| 242 | void __user *buffer, size_t *lenp, loff_t *ppos); |
| 243 | |
Minchan Kim | 5a88381 | 2012-10-08 16:33:39 -0700 | [diff] [blame] | 244 | void drain_zonestat(struct zone *zone, struct per_cpu_pageset *); |
| 245 | |
Mel Gorman | b44129b | 2011-01-13 15:45:43 -0800 | [diff] [blame] | 246 | int calculate_pressure_threshold(struct zone *zone); |
| 247 | int calculate_normal_threshold(struct zone *zone); |
| 248 | void set_pgdat_percpu_threshold(pg_data_t *pgdat, |
| 249 | int (*calculate_pressure)(struct zone *)); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 250 | #else /* CONFIG_SMP */ |
| 251 | |
| 252 | /* |
| 253 | * We do not maintain differentials in a single processor configuration. |
| 254 | * The functions directly modify the zone and global counters. |
| 255 | */ |
| 256 | static inline void __mod_zone_page_state(struct zone *zone, |
Heiko Carstens | 6cdb18a | 2015-12-29 14:54:32 -0800 | [diff] [blame] | 257 | enum zone_stat_item item, long delta) |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 258 | { |
| 259 | zone_page_state_add(delta, zone, item); |
| 260 | } |
| 261 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 262 | static inline void __mod_node_page_state(struct pglist_data *pgdat, |
| 263 | enum node_stat_item item, int delta) |
| 264 | { |
| 265 | node_page_state_add(delta, pgdat, item); |
| 266 | } |
| 267 | |
Christoph Lameter | 7f4599e | 2006-07-10 04:44:30 -0700 | [diff] [blame] | 268 | static inline void __inc_zone_state(struct zone *zone, enum zone_stat_item item) |
| 269 | { |
| 270 | atomic_long_inc(&zone->vm_stat[item]); |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 271 | atomic_long_inc(&vm_zone_stat[item]); |
| 272 | } |
| 273 | |
| 274 | static inline void __inc_node_state(struct pglist_data *pgdat, enum node_stat_item item) |
| 275 | { |
| 276 | atomic_long_inc(&pgdat->vm_stat[item]); |
| 277 | atomic_long_inc(&vm_node_stat[item]); |
Christoph Lameter | 7f4599e | 2006-07-10 04:44:30 -0700 | [diff] [blame] | 278 | } |
| 279 | |
Christoph Lameter | c878538 | 2007-02-10 01:43:01 -0800 | [diff] [blame] | 280 | static inline void __dec_zone_state(struct zone *zone, enum zone_stat_item item) |
| 281 | { |
| 282 | atomic_long_dec(&zone->vm_stat[item]); |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 283 | atomic_long_dec(&vm_zone_stat[item]); |
| 284 | } |
| 285 | |
| 286 | static inline void __dec_node_state(struct pglist_data *pgdat, enum node_stat_item item) |
| 287 | { |
| 288 | atomic_long_dec(&pgdat->vm_stat[item]); |
| 289 | atomic_long_dec(&vm_node_stat[item]); |
Christoph Lameter | c878538 | 2007-02-10 01:43:01 -0800 | [diff] [blame] | 290 | } |
| 291 | |
Johannes Weiner | 6a3ed21 | 2014-04-03 14:47:34 -0700 | [diff] [blame] | 292 | static inline void __inc_zone_page_state(struct page *page, |
| 293 | enum zone_stat_item item) |
| 294 | { |
| 295 | __inc_zone_state(page_zone(page), item); |
| 296 | } |
| 297 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 298 | static inline void __inc_node_page_state(struct page *page, |
| 299 | enum node_stat_item item) |
| 300 | { |
| 301 | __inc_node_state(page_pgdat(page), item); |
| 302 | } |
| 303 | |
| 304 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 305 | static inline void __dec_zone_page_state(struct page *page, |
| 306 | enum zone_stat_item item) |
| 307 | { |
Uwe Kleine-König | 57ce36f | 2008-02-25 16:45:03 +0100 | [diff] [blame] | 308 | __dec_zone_state(page_zone(page), item); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 309 | } |
| 310 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 311 | static inline void __dec_node_page_state(struct page *page, |
| 312 | enum node_stat_item item) |
| 313 | { |
| 314 | __dec_node_state(page_pgdat(page), item); |
| 315 | } |
| 316 | |
| 317 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 318 | /* |
| 319 | * We only use atomic operations to update counters. So there is no need to |
| 320 | * disable interrupts. |
| 321 | */ |
| 322 | #define inc_zone_page_state __inc_zone_page_state |
| 323 | #define dec_zone_page_state __dec_zone_page_state |
| 324 | #define mod_zone_page_state __mod_zone_page_state |
| 325 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 326 | #define inc_node_page_state __inc_node_page_state |
| 327 | #define dec_node_page_state __dec_node_page_state |
| 328 | #define mod_node_page_state __mod_node_page_state |
| 329 | |
Johannes Weiner | 6a3ed21 | 2014-04-03 14:47:34 -0700 | [diff] [blame] | 330 | #define inc_zone_state __inc_zone_state |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame] | 331 | #define inc_node_state __inc_node_state |
Johannes Weiner | 6a3ed21 | 2014-04-03 14:47:34 -0700 | [diff] [blame] | 332 | #define dec_zone_state __dec_zone_state |
| 333 | |
Mel Gorman | b44129b | 2011-01-13 15:45:43 -0800 | [diff] [blame] | 334 | #define set_pgdat_percpu_threshold(pgdat, callback) { } |
Mel Gorman | 88f5acf | 2011-01-13 15:45:41 -0800 | [diff] [blame] | 335 | |
KOSAKI Motohiro | a6cccdc | 2011-05-24 17:11:33 -0700 | [diff] [blame] | 336 | static inline void refresh_zone_stat_thresholds(void) { } |
Christoph Lameter | 2bb921e | 2013-09-11 14:21:30 -0700 | [diff] [blame] | 337 | static inline void cpu_vm_stats_fold(int cpu) { } |
Christoph Lameter | 0eb77e9 | 2016-01-14 15:21:40 -0800 | [diff] [blame] | 338 | static inline void quiet_vmstat(void) { } |
KOSAKI Motohiro | a6cccdc | 2011-05-24 17:11:33 -0700 | [diff] [blame] | 339 | |
Minchan Kim | 5a88381 | 2012-10-08 16:33:39 -0700 | [diff] [blame] | 340 | static inline void drain_zonestat(struct zone *zone, |
| 341 | struct per_cpu_pageset *pset) { } |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 342 | #endif /* CONFIG_SMP */ |
| 343 | |
Bartlomiej Zolnierkiewicz | d1ce749 | 2012-10-08 16:32:02 -0700 | [diff] [blame] | 344 | static inline void __mod_zone_freepage_state(struct zone *zone, int nr_pages, |
| 345 | int migratetype) |
| 346 | { |
| 347 | __mod_zone_page_state(zone, NR_FREE_PAGES, nr_pages); |
| 348 | if (is_migrate_cma(migratetype)) |
| 349 | __mod_zone_page_state(zone, NR_FREE_CMA_PAGES, nr_pages); |
| 350 | } |
| 351 | |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 352 | extern const char * const vmstat_text[]; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 353 | |
| 354 | #endif /* _LINUX_VMSTAT_H */ |