}
 }
 
+static inline bool invalid_user_sp(unsigned long sp)
+{
+       unsigned long mask = is_32bit_task() ? 3 : 7;
+       unsigned long top = STACK_TOP - (is_32bit_task() ? 16 : 32);
+
+       return (!sp || (sp & mask) || (sp > top));
+}
+
 #ifdef CONFIG_PPC64
 /*
  * On 64-bit we don't want to invoke hash_page on user addresses from
        return read_user_stack_slow(ptr, ret, 8);
 }
 
-static inline int valid_user_sp(unsigned long sp, int is_64)
-{
-       if (!sp || (sp & 7) || sp > (is_64 ? TASK_SIZE : 0x100000000UL) - 32)
-               return 0;
-       return 1;
-}
-
 /*
  * 64-bit user processes use the same stack frame for RT and non-RT signals.
  */
 
        while (entry->nr < entry->max_stack) {
                fp = (unsigned long __user *) sp;
-               if (!valid_user_sp(sp, 1) || read_user_stack_64(fp, &next_sp))
+               if (invalid_user_sp(sp) || read_user_stack_64(fp, &next_sp))
                        return;
                if (level > 0 && read_user_stack_64(&fp[2], &next_ip))
                        return;
 {
 }
 
-static inline int valid_user_sp(unsigned long sp, int is_64)
-{
-       if (!sp || (sp & 7) || sp > TASK_SIZE - 32)
-               return 0;
-       return 1;
-}
-
 #define __SIGNAL_FRAMESIZE32   __SIGNAL_FRAMESIZE
 #define sigcontext32           sigcontext
 #define mcontext32             mcontext
 
        while (entry->nr < entry->max_stack) {
                fp = (unsigned int __user *) (unsigned long) sp;
-               if (!valid_user_sp(sp, 0) || read_user_stack_32(fp, &next_sp))
+               if (invalid_user_sp(sp) || read_user_stack_32(fp, &next_sp))
                        return;
                if (level > 0 && read_user_stack_32(&fp[1], &next_ip))
                        return;