blob: a787a319211ef9aea4d0bebb84055b377b52dfae [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Alexey Dobriyanbb1f17b2009-06-16 15:31:18 -07002#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
Arun Sharma600634972011-07-26 16:09:06 -07009#include <linux/atomic.h>
Eric W. Biedermanbfedb582016-10-13 21:23:16 -050010#include <linux/user_namespace.h>
Alexey Dobriyanbb1f17b2009-06-16 15:31:18 -070011#include <asm/pgtable.h>
Heiko Carstensa1b200e2010-08-09 17:18:28 -070012#include <asm/mmu.h>
13
14#ifndef INIT_MM_CONTEXT
15#define INIT_MM_CONTEXT(name)
16#endif
Alexey Dobriyanbb1f17b2009-06-16 15:31:18 -070017
Rik van Rielc1a2f7f2018-07-16 15:03:31 -040018/*
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 */
Alexey Dobriyanbb1f17b2009-06-16 15:31:18 -070028struct mm_struct init_mm = {
29 .mm_rb = RB_ROOT,
30 .pgd = swapper_pg_dir,
31 .mm_users = ATOMIC_INIT(2),
32 .mm_count = ATOMIC_INIT(1),
33 .mmap_sem = __RWSEM_INITIALIZER(init_mm.mmap_sem),
34 .page_table_lock = __SPIN_LOCK_UNLOCKED(init_mm.page_table_lock),
Yang Shi88aa7cc2018-06-07 17:05:28 -070035 .arg_lock = __SPIN_LOCK_UNLOCKED(init_mm.arg_lock),
Alexey Dobriyanbb1f17b2009-06-16 15:31:18 -070036 .mmlist = LIST_HEAD_INIT(init_mm.mmlist),
Eric W. Biedermanbfedb582016-10-13 21:23:16 -050037 .user_ns = &init_user_ns,
Rik van Rielc1a2f7f2018-07-16 15:03:31 -040038 .cpu_bitmap = { [BITS_TO_LONGS(NR_CPUS)] = 0},
Heiko Carstensa1b200e2010-08-09 17:18:28 -070039 INIT_MM_CONTEXT(init_mm)
Alexey Dobriyanbb1f17b2009-06-16 15:31:18 -070040};