summaryrefslogtreecommitdiffstats
path: root/arch/microblaze/kernel/process.c
diff options
context:
space:
mode:
authorMichal Simek2011-01-31 15:10:04 +0100
committerMichal Simek2011-03-09 08:09:54 +0100
commit6e83557c38b40d6e9d1c82ad0ae59d8e5db9c50c (patch)
tree856d8cf13273c2f8a696473ff9237cdc17c46632 /arch/microblaze/kernel/process.c
parentmicroblaze: Do not use r0_ram space for syscall debugging (diff)
downloadkernel-qcow2-linux-6e83557c38b40d6e9d1c82ad0ae59d8e5db9c50c.tar.gz
kernel-qcow2-linux-6e83557c38b40d6e9d1c82ad0ae59d8e5db9c50c.tar.xz
kernel-qcow2-linux-6e83557c38b40d6e9d1c82ad0ae59d8e5db9c50c.zip
microblaze: Remove r0_ram pointer and PTO alignment
r0_ram pool was used for saving/restoring register content if hw exception happen. This poll was replaced by pt_pool_space with PT_SIZE size. Based on this change SAVE_STATE_ARG_SPACE was removed which caused that PTO offset is zero that's why is also removed. r0_ram space was used as scratchpad by v850. In early Microblaze Linux developing phase was this part of code blindly copied. Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/kernel/process.c')
-rw-r--r--arch/microblaze/kernel/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/kernel/process.c b/arch/microblaze/kernel/process.c
index ba7c4b16ed35..968648a81c1e 100644
--- a/arch/microblaze/kernel/process.c
+++ b/arch/microblaze/kernel/process.c
@@ -159,7 +159,7 @@ int copy_thread(unsigned long clone_flags, unsigned long usp,
}
/* FIXME STATE_SAVE_PT_OFFSET; */
- ti->cpu_context.r1 = (unsigned long)childregs - STATE_SAVE_ARG_SPACE;
+ ti->cpu_context.r1 = (unsigned long)childregs;
/* we should consider the fact that childregs is a copy of the parent
* regs which were saved immediately after entering the kernel state
* before enabling VM. This MSR will be restored in switch_to and