init-mm.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/mm_types.h>
  3. #include <linux/maple_tree.h>
  4. #include <linux/rwsem.h>
  5. #include <linux/spinlock.h>
  6. #include <linux/list.h>
  7. #include <linux/cpumask.h>
  8. #include <linux/mman.h>
  9. #include <linux/pgtable.h>
  10. #include <linux/atomic.h>
  11. #include <linux/user_namespace.h>
  12. #include <linux/iommu.h>
  13. #include <asm/mmu.h>
  14. #ifndef INIT_MM_CONTEXT
  15. #define INIT_MM_CONTEXT(name)
  16. #endif
  17. const struct vm_operations_struct vma_dummy_vm_ops;
  18. /*
  19. * For dynamically allocated mm_structs, there is a dynamically sized cpumask
  20. * at the end of the structure, the size of which depends on the maximum CPU
  21. * number the system can see. That way we allocate only as much memory for
  22. * mm_cpumask() as needed for the hundreds, or thousands of processes that
  23. * a system typically runs.
  24. *
  25. * Since there is only one init_mm in the entire system, keep it simple
  26. * and size this cpu_bitmask to NR_CPUS.
  27. */
  28. struct mm_struct init_mm = {
  29. .mm_mt = MTREE_INIT_EXT(mm_mt, MM_MT_FLAGS, init_mm.mmap_lock),
  30. .pgd = swapper_pg_dir,
  31. .mm_users = ATOMIC_INIT(2),
  32. .mm_count = ATOMIC_INIT(1),
  33. .write_protect_seq = SEQCNT_ZERO(init_mm.write_protect_seq),
  34. MMAP_LOCK_INITIALIZER(init_mm)
  35. .page_table_lock = __SPIN_LOCK_UNLOCKED(init_mm.page_table_lock),
  36. .arg_lock = __SPIN_LOCK_UNLOCKED(init_mm.arg_lock),
  37. .mmlist = LIST_HEAD_INIT(init_mm.mmlist),
  38. #ifdef CONFIG_PER_VMA_LOCK
  39. .vma_writer_wait = __RCUWAIT_INITIALIZER(init_mm.vma_writer_wait),
  40. .mm_lock_seq = SEQCNT_ZERO(init_mm.mm_lock_seq),
  41. #endif
  42. .user_ns = &init_user_ns,
  43. #ifdef CONFIG_SCHED_MM_CID
  44. .mm_cid.lock = __RAW_SPIN_LOCK_UNLOCKED(init_mm.mm_cid.lock),
  45. #endif
  46. .flexible_array = MM_STRUCT_FLEXIBLE_ARRAY_INIT,
  47. INIT_MM_CONTEXT(init_mm)
  48. };
  49. void setup_initial_init_mm(void *start_code, void *end_code,
  50. void *end_data, void *brk)
  51. {
  52. init_mm.start_code = (unsigned long)start_code;
  53. init_mm.end_code = (unsigned long)end_code;
  54. init_mm.end_data = (unsigned long)end_data;
  55. init_mm.brk = (unsigned long)brk;
  56. }