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 | |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 104 | #define __count_zone_vm_events(item, zone, delta) \ |
Christoph Lameter | 4b51d66 | 2007-02-10 01:43:10 -0800 | [diff] [blame] | 105 | __count_vm_events(item##_NORMAL - ZONE_NORMAL + \ |
| 106 | zone_idx(zone), delta) |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 107 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 108 | /* |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 109 | * Zone and node-based page accounting with per cpu differentials. |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 110 | */ |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 111 | extern atomic_long_t vm_zone_stat[NR_VM_ZONE_STAT_ITEMS]; |
| 112 | extern atomic_long_t vm_node_stat[NR_VM_NODE_STAT_ITEMS]; |
Christoph Lameter | f6ac235 | 2006-06-30 01:55:32 -0700 | [diff] [blame] | 113 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 114 | static inline void zone_page_state_add(long x, struct zone *zone, |
| 115 | enum zone_stat_item item) |
| 116 | { |
| 117 | atomic_long_add(x, &zone->vm_stat[item]); |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 118 | atomic_long_add(x, &vm_zone_stat[item]); |
| 119 | } |
| 120 | |
| 121 | static inline void node_page_state_add(long x, struct pglist_data *pgdat, |
| 122 | enum node_stat_item item) |
| 123 | { |
| 124 | atomic_long_add(x, &pgdat->vm_stat[item]); |
| 125 | atomic_long_add(x, &vm_node_stat[item]); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | static inline unsigned long global_page_state(enum zone_stat_item item) |
| 129 | { |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 130 | long x = atomic_long_read(&vm_zone_stat[item]); |
| 131 | #ifdef CONFIG_SMP |
| 132 | if (x < 0) |
| 133 | x = 0; |
| 134 | #endif |
| 135 | return x; |
| 136 | } |
| 137 | |
| 138 | static inline unsigned long global_node_page_state(enum node_stat_item item) |
| 139 | { |
| 140 | long x = atomic_long_read(&vm_node_stat[item]); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 141 | #ifdef CONFIG_SMP |
| 142 | if (x < 0) |
| 143 | x = 0; |
| 144 | #endif |
| 145 | return x; |
| 146 | } |
| 147 | |
| 148 | static inline unsigned long zone_page_state(struct zone *zone, |
| 149 | enum zone_stat_item item) |
| 150 | { |
| 151 | long x = atomic_long_read(&zone->vm_stat[item]); |
| 152 | #ifdef CONFIG_SMP |
| 153 | if (x < 0) |
| 154 | x = 0; |
| 155 | #endif |
| 156 | return x; |
| 157 | } |
| 158 | |
Christoph Lameter | aa45484 | 2010-09-09 16:38:17 -0700 | [diff] [blame] | 159 | /* |
| 160 | * More accurate version that also considers the currently pending |
| 161 | * deltas. For that we need to loop over all cpus to find the current |
| 162 | * deltas. There is no synchronization so the result cannot be |
| 163 | * exactly accurate either. |
| 164 | */ |
| 165 | static inline unsigned long zone_page_state_snapshot(struct zone *zone, |
| 166 | enum zone_stat_item item) |
| 167 | { |
| 168 | long x = atomic_long_read(&zone->vm_stat[item]); |
| 169 | |
| 170 | #ifdef CONFIG_SMP |
| 171 | int cpu; |
| 172 | for_each_online_cpu(cpu) |
| 173 | x += per_cpu_ptr(zone->pageset, cpu)->vm_stat_diff[item]; |
| 174 | |
| 175 | if (x < 0) |
| 176 | x = 0; |
| 177 | #endif |
| 178 | return x; |
| 179 | } |
| 180 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 181 | #ifdef CONFIG_NUMA |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 182 | extern unsigned long sum_zone_node_page_state(int node, |
| 183 | enum zone_stat_item item); |
| 184 | extern unsigned long node_page_state(struct pglist_data *pgdat, |
| 185 | enum node_stat_item item); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 186 | #else |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 187 | #define sum_zone_node_page_state(node, item) global_page_state(item) |
| 188 | #define node_page_state(node, item) global_node_page_state(item) |
Christoph Lameter | ca889e6 | 2006-06-30 01:55:44 -0700 | [diff] [blame] | 189 | #endif /* CONFIG_NUMA */ |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 190 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 191 | #define add_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, __d) |
| 192 | #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^] | 193 | #define add_node_page_state(__p, __i, __d) mod_node_page_state(__p, __i, __d) |
| 194 | #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] | 195 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 196 | #ifdef CONFIG_SMP |
Heiko Carstens | 6cdb18a | 2015-12-29 14:54:32 -0800 | [diff] [blame] | 197 | 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] | 198 | void __inc_zone_page_state(struct page *, enum zone_stat_item); |
| 199 | void __dec_zone_page_state(struct page *, enum zone_stat_item); |
| 200 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 201 | void __mod_node_page_state(struct pglist_data *, enum node_stat_item item, long); |
| 202 | void __inc_node_page_state(struct page *, enum node_stat_item); |
| 203 | void __dec_node_page_state(struct page *, enum node_stat_item); |
| 204 | |
Heiko Carstens | 6cdb18a | 2015-12-29 14:54:32 -0800 | [diff] [blame] | 205 | void mod_zone_page_state(struct zone *, enum zone_stat_item, long); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 206 | void inc_zone_page_state(struct page *, enum zone_stat_item); |
| 207 | void dec_zone_page_state(struct page *, enum zone_stat_item); |
| 208 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 209 | void mod_node_page_state(struct pglist_data *, enum node_stat_item, long); |
| 210 | void inc_node_page_state(struct page *, enum node_stat_item); |
| 211 | void dec_node_page_state(struct page *, enum node_stat_item); |
| 212 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 213 | extern void inc_zone_state(struct zone *, enum zone_stat_item); |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 214 | extern void inc_node_state(struct pglist_data *, enum node_stat_item); |
Christoph Lameter | c878538 | 2007-02-10 01:43:01 -0800 | [diff] [blame] | 215 | extern void __inc_zone_state(struct zone *, enum zone_stat_item); |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 216 | extern void __inc_node_state(struct pglist_data *, enum node_stat_item); |
Christoph Lameter | c878538 | 2007-02-10 01:43:01 -0800 | [diff] [blame] | 217 | extern void dec_zone_state(struct zone *, enum zone_stat_item); |
| 218 | extern void __dec_zone_state(struct zone *, enum zone_stat_item); |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 219 | extern void __dec_node_state(struct pglist_data *, enum node_stat_item); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 220 | |
Christoph Lameter | 0eb77e9 | 2016-01-14 15:21:40 -0800 | [diff] [blame] | 221 | void quiet_vmstat(void); |
Christoph Lameter | 2bb921e | 2013-09-11 14:21:30 -0700 | [diff] [blame] | 222 | void cpu_vm_stats_fold(int cpu); |
KOSAKI Motohiro | a6cccdc | 2011-05-24 17:11:33 -0700 | [diff] [blame] | 223 | void refresh_zone_stat_thresholds(void); |
Mel Gorman | b44129b | 2011-01-13 15:45:43 -0800 | [diff] [blame] | 224 | |
Hugh Dickins | 52b6f46 | 2016-05-19 17:12:50 -0700 | [diff] [blame] | 225 | struct ctl_table; |
| 226 | int vmstat_refresh(struct ctl_table *, int write, |
| 227 | void __user *buffer, size_t *lenp, loff_t *ppos); |
| 228 | |
Minchan Kim | 5a88381 | 2012-10-08 16:33:39 -0700 | [diff] [blame] | 229 | void drain_zonestat(struct zone *zone, struct per_cpu_pageset *); |
| 230 | |
Mel Gorman | b44129b | 2011-01-13 15:45:43 -0800 | [diff] [blame] | 231 | int calculate_pressure_threshold(struct zone *zone); |
| 232 | int calculate_normal_threshold(struct zone *zone); |
| 233 | void set_pgdat_percpu_threshold(pg_data_t *pgdat, |
| 234 | int (*calculate_pressure)(struct zone *)); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 235 | #else /* CONFIG_SMP */ |
| 236 | |
| 237 | /* |
| 238 | * We do not maintain differentials in a single processor configuration. |
| 239 | * The functions directly modify the zone and global counters. |
| 240 | */ |
| 241 | static inline void __mod_zone_page_state(struct zone *zone, |
Heiko Carstens | 6cdb18a | 2015-12-29 14:54:32 -0800 | [diff] [blame] | 242 | enum zone_stat_item item, long delta) |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 243 | { |
| 244 | zone_page_state_add(delta, zone, item); |
| 245 | } |
| 246 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 247 | static inline void __mod_node_page_state(struct pglist_data *pgdat, |
| 248 | enum node_stat_item item, int delta) |
| 249 | { |
| 250 | node_page_state_add(delta, pgdat, item); |
| 251 | } |
| 252 | |
Christoph Lameter | 7f4599e | 2006-07-10 04:44:30 -0700 | [diff] [blame] | 253 | static inline void __inc_zone_state(struct zone *zone, enum zone_stat_item item) |
| 254 | { |
| 255 | atomic_long_inc(&zone->vm_stat[item]); |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 256 | atomic_long_inc(&vm_zone_stat[item]); |
| 257 | } |
| 258 | |
| 259 | static inline void __inc_node_state(struct pglist_data *pgdat, enum node_stat_item item) |
| 260 | { |
| 261 | atomic_long_inc(&pgdat->vm_stat[item]); |
| 262 | atomic_long_inc(&vm_node_stat[item]); |
Christoph Lameter | 7f4599e | 2006-07-10 04:44:30 -0700 | [diff] [blame] | 263 | } |
| 264 | |
Christoph Lameter | c878538 | 2007-02-10 01:43:01 -0800 | [diff] [blame] | 265 | static inline void __dec_zone_state(struct zone *zone, enum zone_stat_item item) |
| 266 | { |
| 267 | atomic_long_dec(&zone->vm_stat[item]); |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 268 | atomic_long_dec(&vm_zone_stat[item]); |
| 269 | } |
| 270 | |
| 271 | static inline void __dec_node_state(struct pglist_data *pgdat, enum node_stat_item item) |
| 272 | { |
| 273 | atomic_long_dec(&pgdat->vm_stat[item]); |
| 274 | atomic_long_dec(&vm_node_stat[item]); |
Christoph Lameter | c878538 | 2007-02-10 01:43:01 -0800 | [diff] [blame] | 275 | } |
| 276 | |
Johannes Weiner | 6a3ed21 | 2014-04-03 14:47:34 -0700 | [diff] [blame] | 277 | static inline void __inc_zone_page_state(struct page *page, |
| 278 | enum zone_stat_item item) |
| 279 | { |
| 280 | __inc_zone_state(page_zone(page), item); |
| 281 | } |
| 282 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 283 | static inline void __inc_node_page_state(struct page *page, |
| 284 | enum node_stat_item item) |
| 285 | { |
| 286 | __inc_node_state(page_pgdat(page), item); |
| 287 | } |
| 288 | |
| 289 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 290 | static inline void __dec_zone_page_state(struct page *page, |
| 291 | enum zone_stat_item item) |
| 292 | { |
Uwe Kleine-König | 57ce36f | 2008-02-25 16:45:03 +0100 | [diff] [blame] | 293 | __dec_zone_state(page_zone(page), item); |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 294 | } |
| 295 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 296 | static inline void __dec_node_page_state(struct page *page, |
| 297 | enum node_stat_item item) |
| 298 | { |
| 299 | __dec_node_state(page_pgdat(page), item); |
| 300 | } |
| 301 | |
| 302 | |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 303 | /* |
| 304 | * We only use atomic operations to update counters. So there is no need to |
| 305 | * disable interrupts. |
| 306 | */ |
| 307 | #define inc_zone_page_state __inc_zone_page_state |
| 308 | #define dec_zone_page_state __dec_zone_page_state |
| 309 | #define mod_zone_page_state __mod_zone_page_state |
| 310 | |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 311 | #define inc_node_page_state __inc_node_page_state |
| 312 | #define dec_node_page_state __dec_node_page_state |
| 313 | #define mod_node_page_state __mod_node_page_state |
| 314 | |
Johannes Weiner | 6a3ed21 | 2014-04-03 14:47:34 -0700 | [diff] [blame] | 315 | #define inc_zone_state __inc_zone_state |
Mel Gorman | 75ef718 | 2016-07-28 15:45:24 -0700 | [diff] [blame^] | 316 | #define inc_node_state __inc_node_state |
Johannes Weiner | 6a3ed21 | 2014-04-03 14:47:34 -0700 | [diff] [blame] | 317 | #define dec_zone_state __dec_zone_state |
| 318 | |
Mel Gorman | b44129b | 2011-01-13 15:45:43 -0800 | [diff] [blame] | 319 | #define set_pgdat_percpu_threshold(pgdat, callback) { } |
Mel Gorman | 88f5acf | 2011-01-13 15:45:41 -0800 | [diff] [blame] | 320 | |
KOSAKI Motohiro | a6cccdc | 2011-05-24 17:11:33 -0700 | [diff] [blame] | 321 | static inline void refresh_zone_stat_thresholds(void) { } |
Christoph Lameter | 2bb921e | 2013-09-11 14:21:30 -0700 | [diff] [blame] | 322 | static inline void cpu_vm_stats_fold(int cpu) { } |
Christoph Lameter | 0eb77e9 | 2016-01-14 15:21:40 -0800 | [diff] [blame] | 323 | static inline void quiet_vmstat(void) { } |
KOSAKI Motohiro | a6cccdc | 2011-05-24 17:11:33 -0700 | [diff] [blame] | 324 | |
Minchan Kim | 5a88381 | 2012-10-08 16:33:39 -0700 | [diff] [blame] | 325 | static inline void drain_zonestat(struct zone *zone, |
| 326 | struct per_cpu_pageset *pset) { } |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 327 | #endif /* CONFIG_SMP */ |
| 328 | |
Bartlomiej Zolnierkiewicz | d1ce749 | 2012-10-08 16:32:02 -0700 | [diff] [blame] | 329 | static inline void __mod_zone_freepage_state(struct zone *zone, int nr_pages, |
| 330 | int migratetype) |
| 331 | { |
| 332 | __mod_zone_page_state(zone, NR_FREE_PAGES, nr_pages); |
| 333 | if (is_migrate_cma(migratetype)) |
| 334 | __mod_zone_page_state(zone, NR_FREE_CMA_PAGES, nr_pages); |
| 335 | } |
| 336 | |
KOSAKI Motohiro | fa25c50 | 2011-05-24 17:11:28 -0700 | [diff] [blame] | 337 | extern const char * const vmstat_text[]; |
Christoph Lameter | 2244b95 | 2006-06-30 01:55:33 -0700 | [diff] [blame] | 338 | |
| 339 | #endif /* _LINUX_VMSTAT_H */ |