Add the rt linux 4.1.3-rt3 as base
[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  * Determine the per node value of a stat item. This function
170  * is called frequently in a NUMA machine, so try to be as
171  * frugal as possible.
172  */
173 static inline unsigned long node_page_state(int node,
174                                  enum zone_stat_item item)
175 {
176         struct zone *zones = NODE_DATA(node)->node_zones;
177
178         return
179 #ifdef CONFIG_ZONE_DMA
180                 zone_page_state(&zones[ZONE_DMA], item) +
181 #endif
182 #ifdef CONFIG_ZONE_DMA32
183                 zone_page_state(&zones[ZONE_DMA32], item) +
184 #endif
185 #ifdef CONFIG_HIGHMEM
186                 zone_page_state(&zones[ZONE_HIGHMEM], item) +
187 #endif
188                 zone_page_state(&zones[ZONE_NORMAL], item) +
189                 zone_page_state(&zones[ZONE_MOVABLE], item);
190 }
191
192 extern void zone_statistics(struct zone *, struct zone *, gfp_t gfp);
193
194 #else
195
196 #define node_page_state(node, item) global_page_state(item)
197 #define zone_statistics(_zl, _z, gfp) do { } while (0)
198
199 #endif /* CONFIG_NUMA */
200
201 #define add_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, __d)
202 #define sub_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, -(__d))
203
204 #ifdef CONFIG_SMP
205 void __mod_zone_page_state(struct zone *, enum zone_stat_item item, int);
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
209 void mod_zone_page_state(struct zone *, enum zone_stat_item, int);
210 void inc_zone_page_state(struct page *, enum zone_stat_item);
211 void dec_zone_page_state(struct page *, enum zone_stat_item);
212
213 extern void inc_zone_state(struct zone *, enum zone_stat_item);
214 extern void __inc_zone_state(struct zone *, enum zone_stat_item);
215 extern void dec_zone_state(struct zone *, enum zone_stat_item);
216 extern void __dec_zone_state(struct zone *, enum zone_stat_item);
217
218 void cpu_vm_stats_fold(int cpu);
219 void refresh_zone_stat_thresholds(void);
220
221 void drain_zonestat(struct zone *zone, struct per_cpu_pageset *);
222
223 int calculate_pressure_threshold(struct zone *zone);
224 int calculate_normal_threshold(struct zone *zone);
225 void set_pgdat_percpu_threshold(pg_data_t *pgdat,
226                                 int (*calculate_pressure)(struct zone *));
227 #else /* CONFIG_SMP */
228
229 /*
230  * We do not maintain differentials in a single processor configuration.
231  * The functions directly modify the zone and global counters.
232  */
233 static inline void __mod_zone_page_state(struct zone *zone,
234                         enum zone_stat_item item, int delta)
235 {
236         zone_page_state_add(delta, zone, item);
237 }
238
239 static inline void __inc_zone_state(struct zone *zone, enum zone_stat_item item)
240 {
241         atomic_long_inc(&zone->vm_stat[item]);
242         atomic_long_inc(&vm_stat[item]);
243 }
244
245 static inline void __dec_zone_state(struct zone *zone, enum zone_stat_item item)
246 {
247         atomic_long_dec(&zone->vm_stat[item]);
248         atomic_long_dec(&vm_stat[item]);
249 }
250
251 static inline void __inc_zone_page_state(struct page *page,
252                         enum zone_stat_item item)
253 {
254         __inc_zone_state(page_zone(page), item);
255 }
256
257 static inline void __dec_zone_page_state(struct page *page,
258                         enum zone_stat_item item)
259 {
260         __dec_zone_state(page_zone(page), item);
261 }
262
263 /*
264  * We only use atomic operations to update counters. So there is no need to
265  * disable interrupts.
266  */
267 #define inc_zone_page_state __inc_zone_page_state
268 #define dec_zone_page_state __dec_zone_page_state
269 #define mod_zone_page_state __mod_zone_page_state
270
271 #define inc_zone_state __inc_zone_state
272 #define dec_zone_state __dec_zone_state
273
274 #define set_pgdat_percpu_threshold(pgdat, callback) { }
275
276 static inline void refresh_cpu_vm_stats(int cpu) { }
277 static inline void refresh_zone_stat_thresholds(void) { }
278 static inline void cpu_vm_stats_fold(int cpu) { }
279
280 static inline void drain_zonestat(struct zone *zone,
281                         struct per_cpu_pageset *pset) { }
282 #endif          /* CONFIG_SMP */
283
284 static inline void __mod_zone_freepage_state(struct zone *zone, int nr_pages,
285                                              int migratetype)
286 {
287         __mod_zone_page_state(zone, NR_FREE_PAGES, nr_pages);
288         if (is_migrate_cma(migratetype))
289                 __mod_zone_page_state(zone, NR_FREE_CMA_PAGES, nr_pages);
290 }
291
292 extern const char * const vmstat_text[];
293
294 #endif /* _LINUX_VMSTAT_H */