init-mm.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/mm_types.h>
  3. #include <linux/rbtree.h>
  4. #include <linux/rwsem.h>
  5. #include <linux/spinlock.h>
  6. #include <linux/list.h>
  7. #include <linux/cpumask.h>
  8. #include <linux/atomic.h>
  9. #include <linux/user_namespace.h>
  10. #include <asm/pgtable.h>
  11. #include <asm/mmu.h>
  12. #ifndef INIT_MM_CONTEXT
  13. #define INIT_MM_CONTEXT(name)
  14. #endif
  15. /*
  16. * For dynamically allocated mm_structs, there is a dynamically sized cpumask
  17. * at the end of the structure, the size of which depends on the maximum CPU
  18. * number the system can see. That way we allocate only as much memory for
  19. * mm_cpumask() as needed for the hundreds, or thousands of processes that
  20. * a system typically runs.
  21. *
  22. * Since there is only one init_mm in the entire system, keep it simple
  23. * and size this cpu_bitmask to NR_CPUS.
  24. */
  25. struct mm_struct init_mm = {
  26. .mm_rb = RB_ROOT,
  27. .pgd = swapper_pg_dir,
  28. .mm_users = ATOMIC_INIT(2),
  29. .mm_count = ATOMIC_INIT(1),
  30. .mmap_sem = __RWSEM_INITIALIZER(init_mm.mmap_sem),
  31. .page_table_lock = __SPIN_LOCK_UNLOCKED(init_mm.page_table_lock),
  32. .arg_lock = __SPIN_LOCK_UNLOCKED(init_mm.arg_lock),
  33. .mmlist = LIST_HEAD_INIT(init_mm.mmlist),
  34. .user_ns = &init_user_ns,
  35. .cpu_bitmap = { [BITS_TO_LONGS(NR_CPUS)] = 0},
  36. INIT_MM_CONTEXT(init_mm)
  37. };