blob: 6aca4c90aa1ac9419172154649e90f42bfb2d5d4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Dikeba180fd2007-10-16 01:27:00 -07002 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
6#ifndef __UM_MMU_CONTEXT_H
7#define __UM_MMU_CONTEXT_H
8
Al Viro4dc706c2011-08-18 20:09:09 +01009#include <linux/sched.h>
10#include <asm/mmu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Al Viroac2aca22012-02-23 01:37:19 -050012extern void uml_setup_stubs(struct mm_struct *mm);
Dave Hansen62e88b12014-11-18 10:23:50 -080013/*
14 * Needed since we do not use the asm-generic/mm_hooks.h:
15 */
16static inline void arch_dup_mmap(struct mm_struct *oldmm, struct mm_struct *mm)
17{
18 uml_setup_stubs(mm);
19}
Jeff Dike39633332008-02-04 22:31:01 -080020extern void arch_exit_mmap(struct mm_struct *mm);
Dave Hansen62e88b12014-11-18 10:23:50 -080021static inline void arch_unmap(struct mm_struct *mm,
22 struct vm_area_struct *vma,
23 unsigned long start, unsigned long end)
24{
25}
26static inline void arch_bprm_mm_init(struct mm_struct *mm,
27 struct vm_area_struct *vma)
28{
29}
Dave Hansen9d95b172016-02-18 10:35:57 -080030
31static inline bool arch_vma_access_permitted(struct vm_area_struct *vma,
32 bool write, bool execute, bool foreign)
33{
34 /* by default, allow everything */
35 return true;
36}
37
38static inline bool arch_pte_access_permitted(pte_t pte, bool write)
39{
40 /* by default, allow everything */
41 return true;
42}
43
Dave Hansen62e88b12014-11-18 10:23:50 -080044/*
45 * end asm-generic/mm_hooks.h functions
46 */
Jeff Dike39633332008-02-04 22:31:01 -080047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define deactivate_mm(tsk,mm) do { } while (0)
49
Benjamin LaHaisec40504e2005-07-12 13:58:22 -070050extern void force_flush_all(void);
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static inline void activate_mm(struct mm_struct *old, struct mm_struct *new)
53{
Paolo 'Blaisorblade' Giarrusso1e40cd32005-09-03 15:57:25 -070054 /*
Oleg Nesterovaab25452008-06-06 11:31:39 -070055 * This is called by fs/exec.c and sys_unshare()
56 * when the new ->mm is used for the first time.
Paolo 'Blaisorblade' Giarrusso1e40cd32005-09-03 15:57:25 -070057 */
Oleg Nesterovaab25452008-06-06 11:31:39 -070058 __switch_mm(&new->context.id);
Johannes Berg20756b72019-05-24 21:54:14 +020059 down_write_nested(&new->mmap_sem, 1);
Al Viroac2aca22012-02-23 01:37:19 -050060 uml_setup_stubs(new);
61 up_write(&new->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
65 struct task_struct *tsk)
66{
67 unsigned cpu = smp_processor_id();
68
69 if(prev != next){
Rusty Russellfa406992009-09-24 09:34:51 -060070 cpumask_clear_cpu(cpu, mm_cpumask(prev));
71 cpumask_set_cpu(cpu, mm_cpumask(next));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if(next != &init_mm)
Jeff Dike6c738ff2007-10-16 01:27:06 -070073 __switch_mm(&next->context.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 }
75}
76
77static inline void enter_lazy_tlb(struct mm_struct *mm,
78 struct task_struct *tsk)
79{
80}
81
Jeff Dike77bf4402007-10-16 01:26:58 -070082extern int init_new_context(struct task_struct *task, struct mm_struct *mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Jeff Dike77bf4402007-10-16 01:26:58 -070084extern void destroy_context(struct mm_struct *mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86#endif