diff options
author | Guo Ren <ren_guo@c-sky.com> | 2019-01-24 15:43:58 +0100 |
---|---|---|
committer | Guo Ren <ren_guo@c-sky.com> | 2019-02-13 02:48:14 +0100 |
commit | 0f231dcfc664aaafa75a006ee10e55f3ae0c9b3c (patch) | |
tree | 8a88759271de6d6b727dca73c92bc5df351466a6 /arch/csky/kernel | |
parent | csky: Fixup wrong pt_regs size (diff) | |
download | linux-0f231dcfc664aaafa75a006ee10e55f3ae0c9b3c.tar.xz linux-0f231dcfc664aaafa75a006ee10e55f3ae0c9b3c.zip |
csky: coding convention: Use task_stack_page
Use task_stack_page instead of p->stack to get stack. Follow the coding
convention style. Also for init_stack, the same with other archs.
Signed-off-by: Guo Ren <ren_guo@c-sky.com>
Diffstat (limited to 'arch/csky/kernel')
-rw-r--r-- | arch/csky/kernel/smp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/csky/kernel/smp.c b/arch/csky/kernel/smp.c index ddc4dd79f282..b07a534b3062 100644 --- a/arch/csky/kernel/smp.c +++ b/arch/csky/kernel/smp.c @@ -160,7 +160,8 @@ int __cpu_up(unsigned int cpu, struct task_struct *tidle) { unsigned long mask = 1 << cpu; - secondary_stack = (unsigned int)tidle->stack + THREAD_SIZE - 8; + secondary_stack = + (unsigned int) task_stack_page(tidle) + THREAD_SIZE - 8; secondary_hint = mfcr("cr31"); secondary_ccr = mfcr("cr18"); |