[ARM] Stack starts at THREAD_START_SP offset, not THREAD_SIZE-8
Use the correct constants. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
committed by
Russell King
parent
ca6ca91d8c
commit
7db078be19
@@ -110,7 +110,7 @@ int __cpuinit __cpu_up(unsigned int cpu)
|
|||||||
* We need to tell the secondary core where to find
|
* We need to tell the secondary core where to find
|
||||||
* its stack and the page tables.
|
* its stack and the page tables.
|
||||||
*/
|
*/
|
||||||
secondary_data.stack = (void *)idle->thread_info + THREAD_SIZE - 8;
|
secondary_data.stack = (void *)idle->thread_info + THREAD_START_SP;
|
||||||
secondary_data.pgdir = virt_to_phys(pgd);
|
secondary_data.pgdir = virt_to_phys(pgd);
|
||||||
wmb();
|
wmb();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user