blob: 82e7db7f7100f9e141de4a90196bffa24814ecc8 [file] [log] [blame]
Christoph Lameterf6ac2352006-06-30 01:55:32 -07001#ifndef _LINUX_VMSTAT_H
2#define _LINUX_VMSTAT_H
3
4#include <linux/types.h>
5#include <linux/percpu.h>
Christoph Lameter96177292007-02-10 01:43:03 -08006#include <linux/mm.h>
Christoph Lameter2244b952006-06-30 01:55:33 -07007#include <linux/mmzone.h>
Andrew Mortonf042e702011-05-26 16:25:24 -07008#include <linux/vm_event_item.h>
Arun Sharma600634972011-07-26 16:09:06 -07009#include <linux/atomic.h>
Christoph Lameterf6ac2352006-06-30 01:55:32 -070010
Adrian Bunkc748e132008-07-23 21:27:03 -070011extern int sysctl_stat_interval;
12
Andrew Morton780a0652007-02-10 01:44:41 -080013#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 Lameterf8891e52006-06-30 01:55:45 -070024struct vm_event_state {
25 unsigned long event[NR_VM_EVENT_ITEMS];
26};
Christoph Lameterf6ac2352006-06-30 01:55:32 -070027
Christoph Lameterf8891e52006-06-30 01:55:45 -070028DECLARE_PER_CPU(struct vm_event_state, vm_event_states);
Christoph Lameterf6ac2352006-06-30 01:55:32 -070029
Christoph Lameter293b6a42014-04-07 15:39:43 -070030/*
31 * vm counters are allowed to be racy. Use raw_cpu_ops to avoid the
32 * local_irq_disable overhead.
33 */
Christoph Lameterf8891e52006-06-30 01:55:45 -070034static inline void __count_vm_event(enum vm_event_item item)
35{
Christoph Lameter293b6a42014-04-07 15:39:43 -070036 raw_cpu_inc(vm_event_states.event[item]);
Christoph Lameterf8891e52006-06-30 01:55:45 -070037}
Christoph Lameterf6ac2352006-06-30 01:55:32 -070038
Christoph Lameterf8891e52006-06-30 01:55:45 -070039static inline void count_vm_event(enum vm_event_item item)
40{
Rusty Russelldd17c8f2009-10-29 22:34:15 +090041 this_cpu_inc(vm_event_states.event[item]);
Christoph Lameterf8891e52006-06-30 01:55:45 -070042}
Christoph Lameterf6ac2352006-06-30 01:55:32 -070043
Christoph Lameterf8891e52006-06-30 01:55:45 -070044static inline void __count_vm_events(enum vm_event_item item, long delta)
45{
Christoph Lameter293b6a42014-04-07 15:39:43 -070046 raw_cpu_add(vm_event_states.event[item], delta);
Christoph Lameterf8891e52006-06-30 01:55:45 -070047}
Christoph Lameterf6ac2352006-06-30 01:55:32 -070048
Christoph Lameterf8891e52006-06-30 01:55:45 -070049static inline void count_vm_events(enum vm_event_item item, long delta)
50{
Rusty Russelldd17c8f2009-10-29 22:34:15 +090051 this_cpu_add(vm_event_states.event[item], delta);
Christoph Lameterf8891e52006-06-30 01:55:45 -070052}
Christoph Lameterf6ac2352006-06-30 01:55:32 -070053
Christoph Lameterf8891e52006-06-30 01:55:45 -070054extern void all_vm_events(unsigned long *);
Yijing Wangf1cb0872013-04-29 15:08:14 -070055
Christoph Lameterf8891e52006-06-30 01:55:45 -070056extern void vm_events_fold_cpu(int cpu);
Christoph Lameterf6ac2352006-06-30 01:55:32 -070057
Christoph Lameterf8891e52006-06-30 01:55:45 -070058#else
Christoph Lameterf6ac2352006-06-30 01:55:32 -070059
Christoph Lameterf8891e52006-06-30 01:55:45 -070060/* Disable counters */
Andrew Morton780a0652007-02-10 01:44:41 -080061static inline void count_vm_event(enum vm_event_item item)
62{
63}
64static inline void count_vm_events(enum vm_event_item item, long delta)
65{
66}
67static inline void __count_vm_event(enum vm_event_item item)
68{
69}
70static inline void __count_vm_events(enum vm_event_item item, long delta)
71{
72}
73static inline void all_vm_events(unsigned long *ret)
74{
75}
76static inline void vm_events_fold_cpu(int cpu)
77{
78}
Christoph Lameterf6ac2352006-06-30 01:55:32 -070079
Christoph Lameterf8891e52006-06-30 01:55:45 -070080#endif /* CONFIG_VM_EVENT_COUNTERS */
81
Mel Gorman03c5a6e2012-11-02 14:52:48 +000082#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 Gorman3c0ff462013-02-22 16:34:29 -080087#define count_vm_numa_events(x, y) do { (void)(y); } while (0)
Mel Gorman03c5a6e2012-11-02 14:52:48 +000088#endif /* CONFIG_NUMA_BALANCING */
89
Mel Gormanec659932014-01-21 14:33:16 -080090#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 Bueso4f115142014-06-04 16:06:46 -070098#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 Lameterf8891e52006-06-30 01:55:45 -0700104#define __count_zone_vm_events(item, zone, delta) \
Christoph Lameter4b51d662007-02-10 01:43:10 -0800105 __count_vm_events(item##_NORMAL - ZONE_NORMAL + \
106 zone_idx(zone), delta)
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700107
Christoph Lameter2244b952006-06-30 01:55:33 -0700108/*
109 * Zone based page accounting with per cpu differentials.
110 */
111extern atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS];
Christoph Lameterf6ac2352006-06-30 01:55:32 -0700112
Christoph Lameter2244b952006-06-30 01:55:33 -0700113static 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]);
117 atomic_long_add(x, &vm_stat[item]);
118}
119
120static inline unsigned long global_page_state(enum zone_stat_item item)
121{
122 long x = atomic_long_read(&vm_stat[item]);
123#ifdef CONFIG_SMP
124 if (x < 0)
125 x = 0;
126#endif
127 return x;
128}
129
130static inline unsigned long zone_page_state(struct zone *zone,
131 enum zone_stat_item item)
132{
133 long x = atomic_long_read(&zone->vm_stat[item]);
134#ifdef CONFIG_SMP
135 if (x < 0)
136 x = 0;
137#endif
138 return x;
139}
140
Christoph Lameteraa454842010-09-09 16:38:17 -0700141/*
142 * More accurate version that also considers the currently pending
143 * deltas. For that we need to loop over all cpus to find the current
144 * deltas. There is no synchronization so the result cannot be
145 * exactly accurate either.
146 */
147static inline unsigned long zone_page_state_snapshot(struct zone *zone,
148 enum zone_stat_item item)
149{
150 long x = atomic_long_read(&zone->vm_stat[item]);
151
152#ifdef CONFIG_SMP
153 int cpu;
154 for_each_online_cpu(cpu)
155 x += per_cpu_ptr(zone->pageset, cpu)->vm_stat_diff[item];
156
157 if (x < 0)
158 x = 0;
159#endif
160 return x;
161}
162
Christoph Lameter2244b952006-06-30 01:55:33 -0700163#ifdef CONFIG_NUMA
164/*
165 * Determine the per node value of a stat item. This function
166 * is called frequently in a NUMA machine, so try to be as
167 * frugal as possible.
168 */
169static inline unsigned long node_page_state(int node,
170 enum zone_stat_item item)
171{
172 struct zone *zones = NODE_DATA(node)->node_zones;
173
174 return
Christoph Lameter4b51d662007-02-10 01:43:10 -0800175#ifdef CONFIG_ZONE_DMA
176 zone_page_state(&zones[ZONE_DMA], item) +
177#endif
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700178#ifdef CONFIG_ZONE_DMA32
Christoph Lameter2244b952006-06-30 01:55:33 -0700179 zone_page_state(&zones[ZONE_DMA32], item) +
180#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700181#ifdef CONFIG_HIGHMEM
182 zone_page_state(&zones[ZONE_HIGHMEM], item) +
183#endif
Mel Gorman2a1e2742007-07-17 04:03:12 -0700184 zone_page_state(&zones[ZONE_NORMAL], item) +
185 zone_page_state(&zones[ZONE_MOVABLE], item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700186}
Christoph Lameterca889e62006-06-30 01:55:44 -0700187
Andi Kleen78afd562011-03-22 16:33:12 -0700188extern void zone_statistics(struct zone *, struct zone *, gfp_t gfp);
Christoph Lameterca889e62006-06-30 01:55:44 -0700189
Christoph Lameter2244b952006-06-30 01:55:33 -0700190#else
Christoph Lameterca889e62006-06-30 01:55:44 -0700191
Christoph Lameter2244b952006-06-30 01:55:33 -0700192#define node_page_state(node, item) global_page_state(item)
Andi Kleen78afd562011-03-22 16:33:12 -0700193#define zone_statistics(_zl, _z, gfp) do { } while (0)
Christoph Lameterca889e62006-06-30 01:55:44 -0700194
195#endif /* CONFIG_NUMA */
Christoph Lameter2244b952006-06-30 01:55:33 -0700196
Christoph Lameter2244b952006-06-30 01:55:33 -0700197#define add_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, __d)
198#define sub_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, -(__d))
199
Christoph Lameter2244b952006-06-30 01:55:33 -0700200#ifdef CONFIG_SMP
201void __mod_zone_page_state(struct zone *, enum zone_stat_item item, int);
202void __inc_zone_page_state(struct page *, enum zone_stat_item);
203void __dec_zone_page_state(struct page *, enum zone_stat_item);
204
205void mod_zone_page_state(struct zone *, enum zone_stat_item, int);
206void inc_zone_page_state(struct page *, enum zone_stat_item);
207void dec_zone_page_state(struct page *, enum zone_stat_item);
208
209extern void inc_zone_state(struct zone *, enum zone_stat_item);
Christoph Lameterc8785382007-02-10 01:43:01 -0800210extern void __inc_zone_state(struct zone *, enum zone_stat_item);
211extern void dec_zone_state(struct zone *, enum zone_stat_item);
212extern void __dec_zone_state(struct zone *, enum zone_stat_item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700213
Christoph Lameter2bb921e2013-09-11 14:21:30 -0700214void cpu_vm_stats_fold(int cpu);
KOSAKI Motohiroa6cccdc2011-05-24 17:11:33 -0700215void refresh_zone_stat_thresholds(void);
Mel Gormanb44129b2011-01-13 15:45:43 -0800216
Minchan Kim5a883812012-10-08 16:33:39 -0700217void drain_zonestat(struct zone *zone, struct per_cpu_pageset *);
218
Mel Gormanb44129b2011-01-13 15:45:43 -0800219int calculate_pressure_threshold(struct zone *zone);
220int calculate_normal_threshold(struct zone *zone);
221void set_pgdat_percpu_threshold(pg_data_t *pgdat,
222 int (*calculate_pressure)(struct zone *));
Christoph Lameter2244b952006-06-30 01:55:33 -0700223#else /* CONFIG_SMP */
224
225/*
226 * We do not maintain differentials in a single processor configuration.
227 * The functions directly modify the zone and global counters.
228 */
229static inline void __mod_zone_page_state(struct zone *zone,
230 enum zone_stat_item item, int delta)
231{
232 zone_page_state_add(delta, zone, item);
233}
234
Christoph Lameter7f4599e2006-07-10 04:44:30 -0700235static inline void __inc_zone_state(struct zone *zone, enum zone_stat_item item)
236{
237 atomic_long_inc(&zone->vm_stat[item]);
238 atomic_long_inc(&vm_stat[item]);
239}
240
Christoph Lameterc8785382007-02-10 01:43:01 -0800241static inline void __dec_zone_state(struct zone *zone, enum zone_stat_item item)
242{
243 atomic_long_dec(&zone->vm_stat[item]);
244 atomic_long_dec(&vm_stat[item]);
245}
246
Johannes Weiner6a3ed212014-04-03 14:47:34 -0700247static inline void __inc_zone_page_state(struct page *page,
248 enum zone_stat_item item)
249{
250 __inc_zone_state(page_zone(page), item);
251}
252
Christoph Lameter2244b952006-06-30 01:55:33 -0700253static inline void __dec_zone_page_state(struct page *page,
254 enum zone_stat_item item)
255{
Uwe Kleine-König57ce36f2008-02-25 16:45:03 +0100256 __dec_zone_state(page_zone(page), item);
Christoph Lameter2244b952006-06-30 01:55:33 -0700257}
258
259/*
260 * We only use atomic operations to update counters. So there is no need to
261 * disable interrupts.
262 */
263#define inc_zone_page_state __inc_zone_page_state
264#define dec_zone_page_state __dec_zone_page_state
265#define mod_zone_page_state __mod_zone_page_state
266
Johannes Weiner6a3ed212014-04-03 14:47:34 -0700267#define inc_zone_state __inc_zone_state
268#define dec_zone_state __dec_zone_state
269
Mel Gormanb44129b2011-01-13 15:45:43 -0800270#define set_pgdat_percpu_threshold(pgdat, callback) { }
Mel Gorman88f5acf2011-01-13 15:45:41 -0800271
Christoph Lameter2244b952006-06-30 01:55:33 -0700272static inline void refresh_cpu_vm_stats(int cpu) { }
KOSAKI Motohiroa6cccdc2011-05-24 17:11:33 -0700273static inline void refresh_zone_stat_thresholds(void) { }
Christoph Lameter2bb921e2013-09-11 14:21:30 -0700274static inline void cpu_vm_stats_fold(int cpu) { }
KOSAKI Motohiroa6cccdc2011-05-24 17:11:33 -0700275
Minchan Kim5a883812012-10-08 16:33:39 -0700276static inline void drain_zonestat(struct zone *zone,
277 struct per_cpu_pageset *pset) { }
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700278#endif /* CONFIG_SMP */
279
Bartlomiej Zolnierkiewiczd1ce7492012-10-08 16:32:02 -0700280static inline void __mod_zone_freepage_state(struct zone *zone, int nr_pages,
281 int migratetype)
282{
283 __mod_zone_page_state(zone, NR_FREE_PAGES, nr_pages);
284 if (is_migrate_cma(migratetype))
285 __mod_zone_page_state(zone, NR_FREE_CMA_PAGES, nr_pages);
286}
287
KOSAKI Motohirofa25c502011-05-24 17:11:28 -0700288extern const char * const vmstat_text[];
Christoph Lameter2244b952006-06-30 01:55:33 -0700289
290#endif /* _LINUX_VMSTAT_H */