aboutsummaryrefslogtreecommitdiffstats
path: root/arch/frv/include
diff options
context:
space:
mode:
authorMathias Krause <minipli@googlemail.com>2011-07-26 19:08:15 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2011-07-26 19:49:41 -0400
commitadc400f69053b16756ff3b00daa64884c8df0787 (patch)
treee1217453e0aba0aed1adfec0bfba9baf611dd334 /arch/frv/include
parent6fd4ce886440c7a1b08b6642e606ee19097829df (diff)
frv, exec: remove redundant set_fs(USER_DS)
The address limit is already set in flush_old_exec() so those calls to set_fs(USER_DS) are redundant. Also removed the dead code in flush_thread(). Signed-off-by: Mathias Krause <minipli@googlemail.com> Acked-by: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/frv/include')
-rw-r--r--arch/frv/include/asm/processor.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/frv/include/asm/processor.h b/arch/frv/include/asm/processor.h
index 4b789ab182b0..81c2e271d620 100644
--- a/arch/frv/include/asm/processor.h
+++ b/arch/frv/include/asm/processor.h
@@ -97,7 +97,6 @@ extern struct task_struct *__kernel_current_task;
97 */ 97 */
98#define start_thread(_regs, _pc, _usp) \ 98#define start_thread(_regs, _pc, _usp) \
99do { \ 99do { \
100 set_fs(USER_DS); /* reads from user space */ \
101 __frame = __kernel_frame0_ptr; \ 100 __frame = __kernel_frame0_ptr; \
102 __frame->pc = (_pc); \ 101 __frame->pc = (_pc); \
103 __frame->psr &= ~PSR_S; \ 102 __frame->psr &= ~PSR_S; \