These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / include / linux / vmstat.h
1 #ifndef _LINUX_VMSTAT_H
2 #define _LINUX_VMSTAT_H
3
4 #include <linux/types.h>
5 #include <linux/percpu.h>
6 #include <linux/mm.h>
7 #include <linux/mmzone.h>
8 #include <linux/vm_event_item.h>
9 #include <linux/atomic.h>
10
11 extern int sysctl_stat_interval;
12
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
24 struct vm_event_state {
25         unsigned long event[NR_VM_EVENT_ITEMS];
26 };
27
28 DECLARE_PER_CPU(struct vm_event_state, vm_event_states);
29
30 /*
31  * vm counters are allowed to be racy. Use raw_cpu_ops to avoid the
32  * local_irq_disable overhead.
33  */
34 static inline void __count_vm_event(enum vm_event_item item)
35 {
36         preempt_disable_rt();
37         raw_cpu_inc(vm_event_states.event[item]);
38         preempt_enable_rt();
39 }
40
41 static inline void count_vm_event(enum vm_event_item item)
42 {
43         this_cpu_inc(vm_event_states.event[item]);
44 }
45
46 static inline void __count_vm_events(enum vm_event_item item, long delta)
47 {
48         preempt_disable_rt();
49         raw_cpu_add(vm_event_states.event[item], delta);
50         preempt_enable_rt();
51 }
52
53 static inline void count_vm_events(enum vm_event_item item, long delta)
54 {
55         this_cpu_add(vm_event_states.event[item], delta);
56 }
57
58 extern void all_vm_events(unsigned long *);
59
60 extern void vm_events_fold_cpu(int cpu);
61
62 #else
63
64 /* Disable counters */
65 static inline void count_vm_event(enum vm_event_item item)
66 {
67 }
68 static inline void count_vm_events(enum vm_event_item item, long delta)
69 {
70 }
71 static inline void __count_vm_event(enum vm_event_item item)
72 {
73 }
74 static inline void __count_vm_events(enum vm_event_item item, long delta)
75 {
76 }
77 static inline void all_vm_events(unsigned long *ret)
78 {
79 }
80 static inline void vm_events_fold_cpu(int cpu)
81 {
82 }
83
84 #endif /* CONFIG_VM_EVENT_COUNTERS */
85
86 #ifdef CONFIG_NUMA_BALANCING
87 #define count_vm_numa_event(x)     count_vm_event(x)
88 #define count_vm_numa_events(x, y) count_vm_events(x, y)
89 #else
90 #define count_vm_numa_event(x) do {} while (0)
91 #define count_vm_numa_events(x, y) do { (void)(y); } while (0)
92 #endif /* CONFIG_NUMA_BALANCING */
93
94 #ifdef CONFIG_DEBUG_TLBFLUSH
95 #define count_vm_tlb_event(x)      count_vm_event(x)
96 #define count_vm_tlb_events(x, y)  count_vm_events(x, y)
97 #else
98 #define count_vm_tlb_event(x)     do {} while (0)
99 #define count_vm_tlb_events(x, y) do { (void)(y); } while (0)
100 #endif
101
102 #ifdef CONFIG_DEBUG_VM_VMACACHE
103 #define count_vm_vmacache_event(x) count_vm_event(x)
104 #else
105 #define count_vm_vmacache_event(x) do {} while (0)
106 #endif
107
108 #define __count_zone_vm_events(item, zone, delta) \
109                 __count_vm_events(item##_NORMAL - ZONE_NORMAL + \
110                 zone_idx(zone), delta)
111
112 /*
113  * Zone based page accounting with per cpu differentials.
114  */
115 extern atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS];
116
117 static inline void zone_page_state_add(long x, struct zone *zone,
118                                  enum zone_stat_item item)
119 {
120         atomic_long_add(x, &zone->vm_stat[item]);
121         atomic_long_add(x, &vm_stat[item]);
122 }
123
124 static inline unsigned long global_page_state(enum zone_stat_item item)
125 {
126         long x = atomic_long_read(&vm_stat[item]);
127 #ifdef CONFIG_SMP
128         if (x < 0)
129                 x = 0;
130 #endif
131         return x;
132 }
133
134 static inline unsigned long zone_page_state(struct zone *zone,
135                                         enum zone_stat_item item)
136 {
137         long x = atomic_long_read(&zone->vm_stat[item]);
138 #ifdef CONFIG_SMP
139         if (x < 0)
140                 x = 0;
141 #endif
142         return x;
143 }
144
145 /*
146  * More accurate version that also considers the currently pending
147  * deltas. For that we need to loop over all cpus to find the current
148  * deltas. There is no synchronization so the result cannot be
149  * exactly accurate either.
150  */
151 static inline unsigned long zone_page_state_snapshot(struct zone *zone,
152                                         enum zone_stat_item item)
153 {
154         long x = atomic_long_read(&zone->vm_stat[item]);
155
156 #ifdef CONFIG_SMP
157         int cpu;
158         for_each_online_cpu(cpu)
159                 x += per_cpu_ptr(zone->pageset, cpu)->vm_stat_diff[item];
160
161         if (x < 0)
162                 x = 0;
163 #endif
164         return x;
165 }
166
167 #ifdef CONFIG_NUMA
168
169 extern unsigned long node_page_state(int node, enum zone_stat_item item);
170 extern void zone_statistics(struct zone *, struct zone *, gfp_t gfp);
171
172 #else
173
174 #define node_page_state(node, item) global_page_state(item)
175 #define zone_statistics(_zl, _z, gfp) do { } while (0)
176
177 #endif /* CONFIG_NUMA */
178
179 #define add_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, __d)
180 #define sub_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, -(__d))
181
182 #ifdef CONFIG_SMP
183 void __mod_zone_page_state(struct zone *, enum zone_stat_item item, long);
184 void __inc_zone_page_state(struct page *, enum zone_stat_item);
185 void __dec_zone_page_state(struct page *, enum zone_stat_item);
186
187 void mod_zone_page_state(struct zone *, enum zone_stat_item, long);
188 void inc_zone_page_state(struct page *, enum zone_stat_item);
189 void dec_zone_page_state(struct page *, enum zone_stat_item);
190
191 extern void inc_zone_state(struct zone *, enum zone_stat_item);
192 extern void __inc_zone_state(struct zone *, enum zone_stat_item);
193 extern void dec_zone_state(struct zone *, enum zone_stat_item);
194 extern void __dec_zone_state(struct zone *, enum zone_stat_item);
195
196 void cpu_vm_stats_fold(int cpu);
197 void refresh_zone_stat_thresholds(void);
198
199 void drain_zonestat(struct zone *zone, struct per_cpu_pageset *);
200
201 int calculate_pressure_threshold(struct zone *zone);
202 int calculate_normal_threshold(struct zone *zone);
203 void set_pgdat_percpu_threshold(pg_data_t *pgdat,
204                                 int (*calculate_pressure)(struct zone *));
205 #else /* CONFIG_SMP */
206
207 /*
208  * We do not maintain differentials in a single processor configuration.
209  * The functions directly modify the zone and global counters.
210  */
211 static inline void __mod_zone_page_state(struct zone *zone,
212                         enum zone_stat_item item, long delta)
213 {
214         zone_page_state_add(delta, zone, item);
215 }
216
217 static inline void __inc_zone_state(struct zone *zone, enum zone_stat_item item)
218 {
219         atomic_long_inc(&zone->vm_stat[item]);
220         atomic_long_inc(&vm_stat[item]);
221 }
222
223 static inline void __dec_zone_state(struct zone *zone, enum zone_stat_item item)
224 {
225         atomic_long_dec(&zone->vm_stat[item]);
226         atomic_long_dec(&vm_stat[item]);
227 }
228
229 static inline void __inc_zone_page_state(struct page *page,
230                         enum zone_stat_item item)
231 {
232         __inc_zone_state(page_zone(page), item);
233 }
234
235 static inline void __dec_zone_page_state(struct page *page,
236                         enum zone_stat_item item)
237 {
238         __dec_zone_state(page_zone(page), item);
239 }
240
241 /*
242  * We only use atomic operations to update counters. So there is no need to
243  * disable interrupts.
244  */
245 #define inc_zone_page_state __inc_zone_page_state
246 #define dec_zone_page_state __dec_zone_page_state
247 #define mod_zone_page_state __mod_zone_page_state
248
249 #define inc_zone_state __inc_zone_state
250 #define dec_zone_state __dec_zone_state
251
252 #define set_pgdat_percpu_threshold(pgdat, callback) { }
253
254 static inline void refresh_zone_stat_thresholds(void) { }
255 static inline void cpu_vm_stats_fold(int cpu) { }
256
257 static inline void drain_zonestat(struct zone *zone,
258                         struct per_cpu_pageset *pset) { }
259 #endif          /* CONFIG_SMP */
260
261 static inline void __mod_zone_freepage_state(struct zone *zone, int nr_pages,
262                                              int migratetype)
263 {
264         __mod_zone_page_state(zone, NR_FREE_PAGES, nr_pages);
265         if (is_migrate_cma(migratetype))
266                 __mod_zone_page_state(zone, NR_FREE_CMA_PAGES, nr_pages);
267 }
268
269 extern const char * const vmstat_text[];
270
271 #endif /* _LINUX_VMSTAT_H */