1 // SPDX-License-Identifier: GPL-2.0 << 2 #include <linux/mm_types.h> 1 #include <linux/mm_types.h> 3 #include <linux/maple_tree.h> !! 2 #include <linux/rbtree.h> 4 #include <linux/rwsem.h> 3 #include <linux/rwsem.h> 5 #include <linux/spinlock.h> 4 #include <linux/spinlock.h> 6 #include <linux/list.h> 5 #include <linux/list.h> 7 #include <linux/cpumask.h> 6 #include <linux/cpumask.h> 8 #include <linux/mman.h> << 9 #include <linux/pgtable.h> << 10 7 11 #include <linux/atomic.h> 8 #include <linux/atomic.h> 12 #include <linux/user_namespace.h> !! 9 #include <asm/pgtable.h> 13 #include <linux/iommu.h> << 14 #include <asm/mmu.h> 10 #include <asm/mmu.h> 15 11 16 #ifndef INIT_MM_CONTEXT 12 #ifndef INIT_MM_CONTEXT 17 #define INIT_MM_CONTEXT(name) 13 #define INIT_MM_CONTEXT(name) 18 #endif 14 #endif 19 15 20 const struct vm_operations_struct vma_dummy_vm << 21 << 22 /* << 23 * For dynamically allocated mm_structs, there << 24 * at the end of the structure, the size of wh << 25 * number the system can see. That way we allo << 26 * mm_cpumask() as needed for the hundreds, or << 27 * a system typically runs. << 28 * << 29 * Since there is only one init_mm in the enti << 30 * and size this cpu_bitmask to NR_CPUS. << 31 */ << 32 struct mm_struct init_mm = { 16 struct mm_struct init_mm = { 33 .mm_mt = MTREE_INIT_EXT(mm_mt !! 17 .mm_rb = RB_ROOT, 34 .pgd = swapper_pg_dir, 18 .pgd = swapper_pg_dir, 35 .mm_users = ATOMIC_INIT(2), 19 .mm_users = ATOMIC_INIT(2), 36 .mm_count = ATOMIC_INIT(1), 20 .mm_count = ATOMIC_INIT(1), 37 .write_protect_seq = SEQCNT_ZERO(init_ !! 21 .mmap_sem = __RWSEM_INITIALIZER(init_mm.mmap_sem), 38 MMAP_LOCK_INITIALIZER(init_mm) << 39 .page_table_lock = __SPIN_LOCK_UNLOCK 22 .page_table_lock = __SPIN_LOCK_UNLOCKED(init_mm.page_table_lock), 40 .arg_lock = __SPIN_LOCK_UNLOCKE << 41 .mmlist = LIST_HEAD_INIT(init_ 23 .mmlist = LIST_HEAD_INIT(init_mm.mmlist), 42 #ifdef CONFIG_PER_VMA_LOCK << 43 .mm_lock_seq = 0, << 44 #endif << 45 .user_ns = &init_user_ns, << 46 .cpu_bitmap = CPU_BITS_NONE, << 47 INIT_MM_CONTEXT(init_mm) 24 INIT_MM_CONTEXT(init_mm) 48 }; 25 }; 49 << 50 void setup_initial_init_mm(void *start_code, v << 51 void *end_data, voi << 52 { << 53 init_mm.start_code = (unsigned long)st << 54 init_mm.end_code = (unsigned long)end_ << 55 init_mm.end_data = (unsigned long)end_ << 56 init_mm.brk = (unsigned long)brk; << 57 } << 58 26
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.