diff options
Diffstat (limited to 'arch/sparc64/kernel/init_task.c')
-rw-r--r-- | arch/sparc64/kernel/init_task.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/arch/sparc64/kernel/init_task.c b/arch/sparc64/kernel/init_task.c new file mode 100644 index 000000000000..329b38fa5c89 --- /dev/null +++ b/arch/sparc64/kernel/init_task.c | |||
@@ -0,0 +1,35 @@ | |||
1 | #include <linux/mm.h> | ||
2 | #include <linux/module.h> | ||
3 | #include <linux/sched.h> | ||
4 | #include <linux/init_task.h> | ||
5 | #include <linux/mqueue.h> | ||
6 | |||
7 | #include <asm/pgtable.h> | ||
8 | #include <asm/uaccess.h> | ||
9 | #include <asm/processor.h> | ||
10 | |||
11 | static struct fs_struct init_fs = INIT_FS; | ||
12 | static struct files_struct init_files = INIT_FILES; | ||
13 | static struct signal_struct init_signals = INIT_SIGNALS(init_signals); | ||
14 | static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand); | ||
15 | struct mm_struct init_mm = INIT_MM(init_mm); | ||
16 | |||
17 | EXPORT_SYMBOL(init_mm); | ||
18 | |||
19 | /* .text section in head.S is aligned at 2 page boundary and this gets linked | ||
20 | * right after that so that the init_thread_union is aligned properly as well. | ||
21 | * We really don't need this special alignment like the Intel does, but | ||
22 | * I do it anyways for completeness. | ||
23 | */ | ||
24 | __asm__ (".text"); | ||
25 | union thread_union init_thread_union = { INIT_THREAD_INFO(init_task) }; | ||
26 | |||
27 | /* | ||
28 | * Initial task structure. | ||
29 | * | ||
30 | * All other task structs will be allocated on slabs in fork.c | ||
31 | */ | ||
32 | EXPORT_SYMBOL(init_task); | ||
33 | |||
34 | __asm__(".data"); | ||
35 | struct task_struct init_task = INIT_TASK(init_task); | ||