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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
Dipankar Sarma | badf166 | 2005-09-09 13:04:10 -0700 | [diff] [blame] | 10 | #define INIT_FDTABLE \ |
| 11 | { \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | .max_fds = NR_OPEN_DEFAULT, \ |
Eric Dumazet | 0c9e63f | 2006-03-23 03:00:12 -0800 | [diff] [blame] | 13 | .max_fdset = EMBEDDED_FD_SET_SIZE, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | .fd = &init_files.fd_array[0], \ |
Eric Dumazet | 0c9e63f | 2006-03-23 03:00:12 -0800 | [diff] [blame] | 15 | .close_on_exec = (fd_set *)&init_files.close_on_exec_init, \ |
| 16 | .open_fds = (fd_set *)&init_files.open_fds_init, \ |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 17 | .rcu = RCU_HEAD_INIT, \ |
| 18 | .free_files = NULL, \ |
| 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 | |
| 59 | #define INIT_SIGNALS(sig) { \ |
| 60 | .count = ATOMIC_INIT(1), \ |
| 61 | .wait_chldexit = __WAIT_QUEUE_HEAD_INITIALIZER(sig.wait_chldexit),\ |
| 62 | .shared_pending = { \ |
| 63 | .list = LIST_HEAD_INIT(sig.shared_pending.list), \ |
| 64 | .signal = {{0}}}, \ |
| 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, \ |
| 69 | .session = 1, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } |
| 71 | |
Serge E. Hallyn | ab51601 | 2006-10-02 02:18:06 -0700 | [diff] [blame] | 72 | extern struct nsproxy init_nsproxy; |
| 73 | #define INIT_NSPROXY(nsproxy) { \ |
| 74 | .count = ATOMIC_INIT(1), \ |
| 75 | .nslock = SPIN_LOCK_UNLOCKED, \ |
Serge E. Hallyn | 4865ecf | 2006-10-02 02:18:14 -0700 | [diff] [blame^] | 76 | .uts_ns = &init_uts_ns, \ |
Serge E. Hallyn | 1651e14 | 2006-10-02 02:18:08 -0700 | [diff] [blame] | 77 | .namespace = NULL, \ |
Serge E. Hallyn | ab51601 | 2006-10-02 02:18:06 -0700 | [diff] [blame] | 78 | } |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | #define INIT_SIGHAND(sighand) { \ |
| 81 | .count = ATOMIC_INIT(1), \ |
| 82 | .action = { { { .sa_handler = NULL, } }, }, \ |
Ingo Molnar | e4d9191 | 2006-07-03 00:24:34 -0700 | [diff] [blame] | 83 | .siglock = __SPIN_LOCK_UNLOCKED(sighand.siglock), \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | extern struct group_info init_groups; |
| 87 | |
| 88 | /* |
| 89 | * INIT_TASK is used to set up the first task table, touch at |
| 90 | * your own risk!. Base=0, limit=0x1fffff (=2MB) |
| 91 | */ |
| 92 | #define INIT_TASK(tsk) \ |
| 93 | { \ |
| 94 | .state = 0, \ |
| 95 | .thread_info = &init_thread_info, \ |
| 96 | .usage = ATOMIC_INIT(2), \ |
| 97 | .flags = 0, \ |
| 98 | .lock_depth = -1, \ |
| 99 | .prio = MAX_PRIO-20, \ |
| 100 | .static_prio = MAX_PRIO-20, \ |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 101 | .normal_prio = MAX_PRIO-20, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | .policy = SCHED_NORMAL, \ |
| 103 | .cpus_allowed = CPU_MASK_ALL, \ |
| 104 | .mm = NULL, \ |
| 105 | .active_mm = &init_mm, \ |
| 106 | .run_list = LIST_HEAD_INIT(tsk.run_list), \ |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 107 | .ioprio = 0, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | .time_slice = HZ, \ |
| 109 | .tasks = LIST_HEAD_INIT(tsk.tasks), \ |
| 110 | .ptrace_children= LIST_HEAD_INIT(tsk.ptrace_children), \ |
| 111 | .ptrace_list = LIST_HEAD_INIT(tsk.ptrace_list), \ |
| 112 | .real_parent = &tsk, \ |
| 113 | .parent = &tsk, \ |
| 114 | .children = LIST_HEAD_INIT(tsk.children), \ |
| 115 | .sibling = LIST_HEAD_INIT(tsk.sibling), \ |
| 116 | .group_leader = &tsk, \ |
| 117 | .group_info = &init_groups, \ |
| 118 | .cap_effective = CAP_INIT_EFF_SET, \ |
| 119 | .cap_inheritable = CAP_INIT_INH_SET, \ |
| 120 | .cap_permitted = CAP_FULL_SET, \ |
| 121 | .keep_capabilities = 0, \ |
| 122 | .user = INIT_USER, \ |
| 123 | .comm = "swapper", \ |
| 124 | .thread = INIT_THREAD, \ |
| 125 | .fs = &init_fs, \ |
| 126 | .files = &init_files, \ |
| 127 | .signal = &init_signals, \ |
| 128 | .sighand = &init_sighand, \ |
Serge E. Hallyn | ab51601 | 2006-10-02 02:18:06 -0700 | [diff] [blame] | 129 | .nsproxy = &init_nsproxy, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | .pending = { \ |
| 131 | .list = LIST_HEAD_INIT(tsk.pending.list), \ |
| 132 | .signal = {{0}}}, \ |
| 133 | .blocked = {{0}}, \ |
Ingo Molnar | e4d9191 | 2006-07-03 00:24:34 -0700 | [diff] [blame] | 134 | .alloc_lock = __SPIN_LOCK_UNLOCKED(tsk.alloc_lock), \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | .journal_info = NULL, \ |
| 136 | .cpu_timers = INIT_CPU_TIMERS(tsk.cpu_timers), \ |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 137 | .fs_excl = ATOMIC_INIT(0), \ |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 138 | .pi_lock = SPIN_LOCK_UNLOCKED, \ |
Ingo Molnar | de30a2b | 2006-07-03 00:24:42 -0700 | [diff] [blame] | 139 | INIT_TRACE_IRQFLAGS \ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 140 | INIT_LOCKDEP \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | |
| 144 | #define INIT_CPU_TIMERS(cpu_timers) \ |
| 145 | { \ |
| 146 | LIST_HEAD_INIT(cpu_timers[0]), \ |
| 147 | LIST_HEAD_INIT(cpu_timers[1]), \ |
| 148 | LIST_HEAD_INIT(cpu_timers[2]), \ |
| 149 | } |
| 150 | |
| 151 | |
| 152 | #endif |