Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX__INIT_TASK_H |
| 2 | #define _LINUX__INIT_TASK_H |
| 3 | |
| 4 | #include <linux/file.h> |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 5 | #include <linux/rcupdate.h> |
Ingo Molnar | de30a2b | 2006-07-03 00:24:42 -0700 | [diff] [blame] | 6 | #include <linux/irqflags.h> |
Serge E. Hallyn | 4865ecf | 2006-10-02 02:18:14 -0700 | [diff] [blame] | 7 | #include <linux/utsname.h> |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 8 | #include <linux/lockdep.h> |
Kirill Korotaev | 73ea413 | 2006-10-02 02:18:20 -0700 | [diff] [blame] | 9 | #include <linux/ipc.h> |
Cedric Le Goater | 9a575a9 | 2006-12-08 02:37:59 -0800 | [diff] [blame] | 10 | #include <linux/pid_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
Dipankar Sarma | badf166 | 2005-09-09 13:04:10 -0700 | [diff] [blame] | 12 | #define INIT_FDTABLE \ |
| 13 | { \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | .max_fds = NR_OPEN_DEFAULT, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | .fd = &init_files.fd_array[0], \ |
Eric Dumazet | 0c9e63f | 2006-03-23 03:00:12 -0800 | [diff] [blame] | 16 | .close_on_exec = (fd_set *)&init_files.close_on_exec_init, \ |
| 17 | .open_fds = (fd_set *)&init_files.open_fds_init, \ |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 18 | .rcu = RCU_HEAD_INIT, \ |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 19 | .next = NULL, \ |
Dipankar Sarma | badf166 | 2005-09-09 13:04:10 -0700 | [diff] [blame] | 20 | } |
| 21 | |
| 22 | #define INIT_FILES \ |
| 23 | { \ |
| 24 | .count = ATOMIC_INIT(1), \ |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 25 | .fdt = &init_files.fdtab, \ |
Dipankar Sarma | badf166 | 2005-09-09 13:04:10 -0700 | [diff] [blame] | 26 | .fdtab = INIT_FDTABLE, \ |
Ingo Molnar | e4d9191 | 2006-07-03 00:24:34 -0700 | [diff] [blame] | 27 | .file_lock = __SPIN_LOCK_UNLOCKED(init_task.file_lock), \ |
Eric Dumazet | 0c9e63f | 2006-03-23 03:00:12 -0800 | [diff] [blame] | 28 | .next_fd = 0, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | .close_on_exec_init = { { 0, } }, \ |
| 30 | .open_fds_init = { { 0, } }, \ |
| 31 | .fd_array = { NULL, } \ |
| 32 | } |
| 33 | |
| 34 | #define INIT_KIOCTX(name, which_mm) \ |
| 35 | { \ |
| 36 | .users = ATOMIC_INIT(1), \ |
| 37 | .dead = 0, \ |
| 38 | .mm = &which_mm, \ |
| 39 | .user_id = 0, \ |
| 40 | .next = NULL, \ |
| 41 | .wait = __WAIT_QUEUE_HEAD_INITIALIZER(name.wait), \ |
Ingo Molnar | e4d9191 | 2006-07-03 00:24:34 -0700 | [diff] [blame] | 42 | .ctx_lock = __SPIN_LOCK_UNLOCKED(name.ctx_lock), \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | .reqs_active = 0U, \ |
| 44 | .max_reqs = ~0U, \ |
| 45 | } |
| 46 | |
| 47 | #define INIT_MM(name) \ |
| 48 | { \ |
| 49 | .mm_rb = RB_ROOT, \ |
| 50 | .pgd = swapper_pg_dir, \ |
| 51 | .mm_users = ATOMIC_INIT(2), \ |
| 52 | .mm_count = ATOMIC_INIT(1), \ |
| 53 | .mmap_sem = __RWSEM_INITIALIZER(name.mmap_sem), \ |
Ingo Molnar | e4d9191 | 2006-07-03 00:24:34 -0700 | [diff] [blame] | 54 | .page_table_lock = __SPIN_LOCK_UNLOCKED(name.page_table_lock), \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | .mmlist = LIST_HEAD_INIT(name.mmlist), \ |
| 56 | .cpu_vm_mask = CPU_MASK_ALL, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Cedric Le Goater | 1ec320a | 2006-12-08 02:37:55 -0800 | [diff] [blame] | 59 | #define INIT_SIGNALS(sig) { \ |
| 60 | .count = ATOMIC_INIT(1), \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | .wait_chldexit = __WAIT_QUEUE_HEAD_INITIALIZER(sig.wait_chldexit),\ |
Cedric Le Goater | 1ec320a | 2006-12-08 02:37:55 -0800 | [diff] [blame] | 62 | .shared_pending = { \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | .list = LIST_HEAD_INIT(sig.shared_pending.list), \ |
Cedric Le Goater | 1ec320a | 2006-12-08 02:37:55 -0800 | [diff] [blame] | 64 | .signal = {{0}}}, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | .posix_timers = LIST_HEAD_INIT(sig.posix_timers), \ |
| 66 | .cpu_timers = INIT_CPU_TIMERS(sig.cpu_timers), \ |
| 67 | .rlim = INIT_RLIMITS, \ |
Oleg Nesterov | c7c6464 | 2006-03-28 16:11:09 -0800 | [diff] [blame] | 68 | .pgrp = 1, \ |
Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 69 | .tty_old_pgrp = NULL, \ |
Cedric Le Goater | 1ec320a | 2006-12-08 02:37:55 -0800 | [diff] [blame] | 70 | { .__session = 1}, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Serge E. Hallyn | ab51601 | 2006-10-02 02:18:06 -0700 | [diff] [blame] | 73 | extern struct nsproxy init_nsproxy; |
| 74 | #define INIT_NSPROXY(nsproxy) { \ |
Cedric Le Goater | 9a575a9 | 2006-12-08 02:37:59 -0800 | [diff] [blame] | 75 | .pid_ns = &init_pid_ns, \ |
Serge E. Hallyn | ab51601 | 2006-10-02 02:18:06 -0700 | [diff] [blame] | 76 | .count = ATOMIC_INIT(1), \ |
Peter Zijlstra | 6cfd76a | 2006-12-06 20:37:22 -0800 | [diff] [blame] | 77 | .nslock = __SPIN_LOCK_UNLOCKED(nsproxy.nslock), \ |
Serge E. Hallyn | 4865ecf | 2006-10-02 02:18:14 -0700 | [diff] [blame] | 78 | .uts_ns = &init_uts_ns, \ |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 79 | .mnt_ns = NULL, \ |
Kirill Korotaev | 73ea413 | 2006-10-02 02:18:20 -0700 | [diff] [blame] | 80 | INIT_IPC_NS(ipc_ns) \ |
Serge E. Hallyn | ab51601 | 2006-10-02 02:18:06 -0700 | [diff] [blame] | 81 | } |
| 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | #define INIT_SIGHAND(sighand) { \ |
| 84 | .count = ATOMIC_INIT(1), \ |
| 85 | .action = { { { .sa_handler = NULL, } }, }, \ |
Ingo Molnar | e4d9191 | 2006-07-03 00:24:34 -0700 | [diff] [blame] | 86 | .siglock = __SPIN_LOCK_UNLOCKED(sighand.siglock), \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | extern struct group_info init_groups; |
| 90 | |
| 91 | /* |
| 92 | * INIT_TASK is used to set up the first task table, touch at |
| 93 | * your own risk!. Base=0, limit=0x1fffff (=2MB) |
| 94 | */ |
| 95 | #define INIT_TASK(tsk) \ |
| 96 | { \ |
| 97 | .state = 0, \ |
Roman Zippel | f7e4217 | 2007-05-09 02:35:17 -0700 | [diff] [blame^] | 98 | .stack = &init_thread_info, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | .usage = ATOMIC_INIT(2), \ |
| 100 | .flags = 0, \ |
| 101 | .lock_depth = -1, \ |
| 102 | .prio = MAX_PRIO-20, \ |
| 103 | .static_prio = MAX_PRIO-20, \ |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 104 | .normal_prio = MAX_PRIO-20, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | .policy = SCHED_NORMAL, \ |
| 106 | .cpus_allowed = CPU_MASK_ALL, \ |
| 107 | .mm = NULL, \ |
| 108 | .active_mm = &init_mm, \ |
| 109 | .run_list = LIST_HEAD_INIT(tsk.run_list), \ |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 110 | .ioprio = 0, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | .time_slice = HZ, \ |
| 112 | .tasks = LIST_HEAD_INIT(tsk.tasks), \ |
| 113 | .ptrace_children= LIST_HEAD_INIT(tsk.ptrace_children), \ |
| 114 | .ptrace_list = LIST_HEAD_INIT(tsk.ptrace_list), \ |
| 115 | .real_parent = &tsk, \ |
| 116 | .parent = &tsk, \ |
| 117 | .children = LIST_HEAD_INIT(tsk.children), \ |
| 118 | .sibling = LIST_HEAD_INIT(tsk.sibling), \ |
| 119 | .group_leader = &tsk, \ |
| 120 | .group_info = &init_groups, \ |
| 121 | .cap_effective = CAP_INIT_EFF_SET, \ |
| 122 | .cap_inheritable = CAP_INIT_INH_SET, \ |
| 123 | .cap_permitted = CAP_FULL_SET, \ |
| 124 | .keep_capabilities = 0, \ |
| 125 | .user = INIT_USER, \ |
| 126 | .comm = "swapper", \ |
| 127 | .thread = INIT_THREAD, \ |
| 128 | .fs = &init_fs, \ |
| 129 | .files = &init_files, \ |
| 130 | .signal = &init_signals, \ |
| 131 | .sighand = &init_sighand, \ |
Serge E. Hallyn | ab51601 | 2006-10-02 02:18:06 -0700 | [diff] [blame] | 132 | .nsproxy = &init_nsproxy, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | .pending = { \ |
| 134 | .list = LIST_HEAD_INIT(tsk.pending.list), \ |
| 135 | .signal = {{0}}}, \ |
| 136 | .blocked = {{0}}, \ |
Ingo Molnar | e4d9191 | 2006-07-03 00:24:34 -0700 | [diff] [blame] | 137 | .alloc_lock = __SPIN_LOCK_UNLOCKED(tsk.alloc_lock), \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | .journal_info = NULL, \ |
| 139 | .cpu_timers = INIT_CPU_TIMERS(tsk.cpu_timers), \ |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 140 | .fs_excl = ATOMIC_INIT(0), \ |
Milind Arun Choudhary | b32e41b | 2007-05-08 00:30:08 -0700 | [diff] [blame] | 141 | .pi_lock = __SPIN_LOCK_UNLOCKED(tsk.pi_lock), \ |
Ingo Molnar | de30a2b | 2006-07-03 00:24:42 -0700 | [diff] [blame] | 142 | INIT_TRACE_IRQFLAGS \ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 143 | INIT_LOCKDEP \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | |
| 147 | #define INIT_CPU_TIMERS(cpu_timers) \ |
| 148 | { \ |
| 149 | LIST_HEAD_INIT(cpu_timers[0]), \ |
| 150 | LIST_HEAD_INIT(cpu_timers[1]), \ |
| 151 | LIST_HEAD_INIT(cpu_timers[2]), \ |
| 152 | } |
| 153 | |
| 154 | |
| 155 | #endif |