The address limit is already set in flush_old_exec() so those calls to
set_fs(USER_DS) are redundant.
Signed-off-by: Mathias Krause <minipli@googlemail.com>
Cc: Greg Ungerer <gerg@uclinux.org>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
 static inline void start_thread(struct pt_regs * regs, unsigned long pc,
                                unsigned long usp)
 {
-       /* reads from user space */
-       set_fs(USER_DS);
-
        regs->pc = pc;
        regs->sr &= ~0x2000;
        wrusp(usp);
 
 #define start_thread(_regs, _pc, _usp)                  \
 do {                                                    \
-       set_fs(USER_DS); /* reads from user space */    \
        (_regs)->pc = (_pc);                            \
        ((struct switch_stack *)(_regs))[-1].a6 = 0;    \
        reformat(_regs);                                \
 
 void flush_thread(void)
 {
        unsigned long zero = 0;
-       set_fs(USER_DS);
+
        current->thread.fs = __USER_DS;
        if (!FPU_IS_EMU)
                asm volatile (".chip 68k/68881\n\t"
 
 #ifdef CONFIG_FPU
        unsigned long zero = 0;
 #endif
-       set_fs(USER_DS);
+
        current->thread.fs = __USER_DS;
 #ifdef CONFIG_FPU
        if (!FPU_IS_EMU)