diff options
author | Chris Metcalf <cmetcalf@ezchip.com> | 2015-05-05 13:20:03 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@ezchip.com> | 2015-05-11 11:22:34 -0400 |
commit | 9a5d2cbe6a1623dadfd93007382b0d12d6bac894 (patch) | |
tree | c8d37206bb9539014567251e9b0a83b70eeda094 /arch/tile/kernel/setup.c | |
parent | e5701b74ccfdbbb0b4d9abcc7d0c569bf5e5375b (diff) | |
download | linux-9a5d2cbe6a1623dadfd93007382b0d12d6bac894.tar.gz linux-9a5d2cbe6a1623dadfd93007382b0d12d6bac894.tar.bz2 linux-9a5d2cbe6a1623dadfd93007382b0d12d6bac894.zip |
tile: set up initial stack top to honor STACK_TOP_DELTA
For some reason this was never changed to match the rest of the
code where we always initialize the kernel sp 64 bytes below
the top of the page. This is generally harmless, but it does
mean that if you do a dump_stack() early on in kernel boot you
see a bogus warning about stack overrun.
Signed-off-by: Chris Metcalf <cmetcalf@ezchip.com>
Diffstat (limited to 'arch/tile/kernel/setup.c')
-rw-r--r-- | arch/tile/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/tile/kernel/setup.c b/arch/tile/kernel/setup.c index 6873f006f7d0..2c8304c8a2cd 100644 --- a/arch/tile/kernel/setup.c +++ b/arch/tile/kernel/setup.c @@ -71,7 +71,7 @@ static unsigned long __initdata node_percpu[MAX_NUMNODES]; * per-CPU stack and boot info. */ DEFINE_PER_CPU(unsigned long, boot_sp) = - (unsigned long)init_stack + THREAD_SIZE; + (unsigned long)init_stack + THREAD_SIZE - STACK_TOP_DELTA; #ifdef CONFIG_SMP DEFINE_PER_CPU(unsigned long, boot_pc) = (unsigned long)start_kernel; |