diff options
author | Mathias Krause <minipli@googlemail.com> | 2011-07-26 19:08:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-26 19:49:41 -0400 |
commit | adc400f69053b16756ff3b00daa64884c8df0787 (patch) | |
tree | e1217453e0aba0aed1adfec0bfba9baf611dd334 /arch/frv/kernel | |
parent | 6fd4ce886440c7a1b08b6642e606ee19097829df (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/kernel')
-rw-r--r-- | arch/frv/kernel/process.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/frv/kernel/process.c b/arch/frv/kernel/process.c index 9d3597526467..3901df1213c0 100644 --- a/arch/frv/kernel/process.c +++ b/arch/frv/kernel/process.c | |||
@@ -143,10 +143,7 @@ void machine_power_off(void) | |||
143 | 143 | ||
144 | void flush_thread(void) | 144 | void flush_thread(void) |
145 | { | 145 | { |
146 | #if 0 //ndef NO_FPU | 146 | /* nothing */ |
147 | unsigned long zero = 0; | ||
148 | #endif | ||
149 | set_fs(USER_DS); | ||
150 | } | 147 | } |
151 | 148 | ||
152 | inline unsigned long user_stack(const struct pt_regs *regs) | 149 | inline unsigned long user_stack(const struct pt_regs *regs) |