This source file includes following definitions.
- mmgrab
- mmdrop
- mmget_still_valid
- mmget
- mmget_not_zero
- mm_update_next_owner
- arch_pick_mmap_layout
- in_vfork
- current_gfp_context
- __fs_reclaim_acquire
- __fs_reclaim_release
- fs_reclaim_acquire
- fs_reclaim_release
- memalloc_noio_save
- memalloc_noio_restore
- memalloc_nofs_save
- memalloc_nofs_restore
- memalloc_noreclaim_save
- memalloc_noreclaim_restore
- memalloc_nocma_save
- memalloc_nocma_restore
- memalloc_nocma_save
- memalloc_nocma_restore
- memalloc_use_memcg
- memalloc_unuse_memcg
- memalloc_use_memcg
- memalloc_unuse_memcg
- membarrier_mm_sync_core_before_usermode
- membarrier_arch_switch_mm
- membarrier_exec_mmap
- membarrier_mm_sync_core_before_usermode
1
2 #ifndef _LINUX_SCHED_MM_H
3 #define _LINUX_SCHED_MM_H
4
5 #include <linux/kernel.h>
6 #include <linux/atomic.h>
7 #include <linux/sched.h>
8 #include <linux/mm_types.h>
9 #include <linux/gfp.h>
10 #include <linux/sync_core.h>
11
12
13
14
15 extern struct mm_struct *mm_alloc(void);
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34 static inline void mmgrab(struct mm_struct *mm)
35 {
36 atomic_inc(&mm->mm_count);
37 }
38
39 extern void __mmdrop(struct mm_struct *mm);
40
41 static inline void mmdrop(struct mm_struct *mm)
42 {
43
44
45
46
47
48 if (unlikely(atomic_dec_and_test(&mm->mm_count)))
49 __mmdrop(mm);
50 }
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72 static inline bool mmget_still_valid(struct mm_struct *mm)
73 {
74 return likely(!mm->core_state);
75 }
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93 static inline void mmget(struct mm_struct *mm)
94 {
95 atomic_inc(&mm->mm_users);
96 }
97
98 static inline bool mmget_not_zero(struct mm_struct *mm)
99 {
100 return atomic_inc_not_zero(&mm->mm_users);
101 }
102
103
104 extern void mmput(struct mm_struct *);
105 #ifdef CONFIG_MMU
106
107
108
109 void mmput_async(struct mm_struct *);
110 #endif
111
112
113 extern struct mm_struct *get_task_mm(struct task_struct *task);
114
115
116
117
118
119 extern struct mm_struct *mm_access(struct task_struct *task, unsigned int mode);
120
121 extern void exit_mm_release(struct task_struct *, struct mm_struct *);
122
123 extern void exec_mm_release(struct task_struct *, struct mm_struct *);
124
125 #ifdef CONFIG_MEMCG
126 extern void mm_update_next_owner(struct mm_struct *mm);
127 #else
128 static inline void mm_update_next_owner(struct mm_struct *mm)
129 {
130 }
131 #endif
132
133 #ifdef CONFIG_MMU
134 extern void arch_pick_mmap_layout(struct mm_struct *mm,
135 struct rlimit *rlim_stack);
136 extern unsigned long
137 arch_get_unmapped_area(struct file *, unsigned long, unsigned long,
138 unsigned long, unsigned long);
139 extern unsigned long
140 arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
141 unsigned long len, unsigned long pgoff,
142 unsigned long flags);
143 #else
144 static inline void arch_pick_mmap_layout(struct mm_struct *mm,
145 struct rlimit *rlim_stack) {}
146 #endif
147
148 static inline bool in_vfork(struct task_struct *tsk)
149 {
150 bool ret;
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167 rcu_read_lock();
168 ret = tsk->vfork_done && tsk->real_parent->mm == tsk->mm;
169 rcu_read_unlock();
170
171 return ret;
172 }
173
174
175
176
177
178
179
180 static inline gfp_t current_gfp_context(gfp_t flags)
181 {
182 if (unlikely(current->flags &
183 (PF_MEMALLOC_NOIO | PF_MEMALLOC_NOFS | PF_MEMALLOC_NOCMA))) {
184
185
186
187
188 if (current->flags & PF_MEMALLOC_NOIO)
189 flags &= ~(__GFP_IO | __GFP_FS);
190 else if (current->flags & PF_MEMALLOC_NOFS)
191 flags &= ~__GFP_FS;
192 #ifdef CONFIG_CMA
193 if (current->flags & PF_MEMALLOC_NOCMA)
194 flags &= ~__GFP_MOVABLE;
195 #endif
196 }
197 return flags;
198 }
199
200 #ifdef CONFIG_LOCKDEP
201 extern void __fs_reclaim_acquire(void);
202 extern void __fs_reclaim_release(void);
203 extern void fs_reclaim_acquire(gfp_t gfp_mask);
204 extern void fs_reclaim_release(gfp_t gfp_mask);
205 #else
206 static inline void __fs_reclaim_acquire(void) { }
207 static inline void __fs_reclaim_release(void) { }
208 static inline void fs_reclaim_acquire(gfp_t gfp_mask) { }
209 static inline void fs_reclaim_release(gfp_t gfp_mask) { }
210 #endif
211
212
213
214
215
216
217
218
219
220
221
222
223 static inline unsigned int memalloc_noio_save(void)
224 {
225 unsigned int flags = current->flags & PF_MEMALLOC_NOIO;
226 current->flags |= PF_MEMALLOC_NOIO;
227 return flags;
228 }
229
230
231
232
233
234
235
236
237
238 static inline void memalloc_noio_restore(unsigned int flags)
239 {
240 current->flags = (current->flags & ~PF_MEMALLOC_NOIO) | flags;
241 }
242
243
244
245
246
247
248
249
250
251
252
253
254 static inline unsigned int memalloc_nofs_save(void)
255 {
256 unsigned int flags = current->flags & PF_MEMALLOC_NOFS;
257 current->flags |= PF_MEMALLOC_NOFS;
258 return flags;
259 }
260
261
262
263
264
265
266
267
268
269 static inline void memalloc_nofs_restore(unsigned int flags)
270 {
271 current->flags = (current->flags & ~PF_MEMALLOC_NOFS) | flags;
272 }
273
274 static inline unsigned int memalloc_noreclaim_save(void)
275 {
276 unsigned int flags = current->flags & PF_MEMALLOC;
277 current->flags |= PF_MEMALLOC;
278 return flags;
279 }
280
281 static inline void memalloc_noreclaim_restore(unsigned int flags)
282 {
283 current->flags = (current->flags & ~PF_MEMALLOC) | flags;
284 }
285
286 #ifdef CONFIG_CMA
287 static inline unsigned int memalloc_nocma_save(void)
288 {
289 unsigned int flags = current->flags & PF_MEMALLOC_NOCMA;
290
291 current->flags |= PF_MEMALLOC_NOCMA;
292 return flags;
293 }
294
295 static inline void memalloc_nocma_restore(unsigned int flags)
296 {
297 current->flags = (current->flags & ~PF_MEMALLOC_NOCMA) | flags;
298 }
299 #else
300 static inline unsigned int memalloc_nocma_save(void)
301 {
302 return 0;
303 }
304
305 static inline void memalloc_nocma_restore(unsigned int flags)
306 {
307 }
308 #endif
309
310 #ifdef CONFIG_MEMCG
311
312
313
314
315
316
317
318
319
320
321 static inline void memalloc_use_memcg(struct mem_cgroup *memcg)
322 {
323 WARN_ON_ONCE(current->active_memcg);
324 current->active_memcg = memcg;
325 }
326
327
328
329
330
331
332
333 static inline void memalloc_unuse_memcg(void)
334 {
335 current->active_memcg = NULL;
336 }
337 #else
338 static inline void memalloc_use_memcg(struct mem_cgroup *memcg)
339 {
340 }
341
342 static inline void memalloc_unuse_memcg(void)
343 {
344 }
345 #endif
346
347 #ifdef CONFIG_MEMBARRIER
348 enum {
349 MEMBARRIER_STATE_PRIVATE_EXPEDITED_READY = (1U << 0),
350 MEMBARRIER_STATE_PRIVATE_EXPEDITED = (1U << 1),
351 MEMBARRIER_STATE_GLOBAL_EXPEDITED_READY = (1U << 2),
352 MEMBARRIER_STATE_GLOBAL_EXPEDITED = (1U << 3),
353 MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE_READY = (1U << 4),
354 MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE = (1U << 5),
355 };
356
357 enum {
358 MEMBARRIER_FLAG_SYNC_CORE = (1U << 0),
359 };
360
361 #ifdef CONFIG_ARCH_HAS_MEMBARRIER_CALLBACKS
362 #include <asm/membarrier.h>
363 #endif
364
365 static inline void membarrier_mm_sync_core_before_usermode(struct mm_struct *mm)
366 {
367 if (current->mm != mm)
368 return;
369 if (likely(!(atomic_read(&mm->membarrier_state) &
370 MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE)))
371 return;
372 sync_core_before_usermode();
373 }
374
375 extern void membarrier_exec_mmap(struct mm_struct *mm);
376
377 #else
378 #ifdef CONFIG_ARCH_HAS_MEMBARRIER_CALLBACKS
379 static inline void membarrier_arch_switch_mm(struct mm_struct *prev,
380 struct mm_struct *next,
381 struct task_struct *tsk)
382 {
383 }
384 #endif
385 static inline void membarrier_exec_mmap(struct mm_struct *mm)
386 {
387 }
388 static inline void membarrier_mm_sync_core_before_usermode(struct mm_struct *mm)
389 {
390 }
391 #endif
392
393 #endif