mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 10:44:23 +08:00
7f1a00b6fc
The INIT_TASK() initializer was similarly confused about the stack vs thread_info allocation that the allocators had, and that were fixed in commitb235beea9e
("Clarify naming of thread info/stack allocators"). The task ->stack pointer only incidentally ends up having the same value as the thread_info, and in fact that will change. So fix the initial task struct initializer to point to 'init_stack' instead of 'init_thread_info', and make sure the ia64 definition for that exists. This actually makes the ia64 tsk->stack pointer be sensible for the initial task, but not for any other task. As mentioned in commitb235beea9e
, that whole pointer isn't actually used on ia64, since task_stack_page() there just points to the (single) allocation. All the other architectures seem to have copied the 'init_stack' definition, even if it tended to be generally unusued. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
44 lines
1.2 KiB
C
44 lines
1.2 KiB
C
/*
|
|
* This is where we statically allocate and initialize the initial
|
|
* task.
|
|
*
|
|
* Copyright (C) 1999, 2002-2003 Hewlett-Packard Co
|
|
* David Mosberger-Tang <davidm@hpl.hp.com>
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/fs.h>
|
|
#include <linux/module.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/init_task.h>
|
|
#include <linux/mqueue.h>
|
|
|
|
#include <asm/uaccess.h>
|
|
#include <asm/pgtable.h>
|
|
|
|
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
|
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
|
/*
|
|
* Initial task structure.
|
|
*
|
|
* We need to make sure that this is properly aligned due to the way process stacks are
|
|
* handled. This is done by having a special ".data..init_task" section...
|
|
*/
|
|
#define init_thread_info init_task_mem.s.thread_info
|
|
#define init_stack init_task_mem.stack
|
|
|
|
union {
|
|
struct {
|
|
struct task_struct task;
|
|
struct thread_info thread_info;
|
|
} s;
|
|
unsigned long stack[KERNEL_STACK_SIZE/sizeof (unsigned long)];
|
|
} init_task_mem asm ("init_task") __init_task_data =
|
|
{{
|
|
.task = INIT_TASK(init_task_mem.s.task),
|
|
.thread_info = INIT_THREAD_INFO(init_task_mem.s.task)
|
|
}};
|
|
|
|
EXPORT_SYMBOL(init_task);
|