/* Push a fake return address to tell the unwinder it's a rethook. */
        "       pushq $arch_rethook_trampoline\n"
        UNWIND_HINT_FUNC
-       /* Save the 'sp - 8', this will be fixed later. */
+       "       pushq $" __stringify(__KERNEL_DS) "\n"
+       /* Save the 'sp - 16', this will be fixed later. */
        "       pushq %rsp\n"
        "       pushfq\n"
        SAVE_REGS_STRING
        "       movq %rsp, %rdi\n"
        "       call arch_rethook_trampoline_callback\n"
        RESTORE_REGS_STRING
-       /* In the callback function, 'regs->flags' is copied to 'regs->sp'. */
-       "       addq $8, %rsp\n"
+       /* In the callback function, 'regs->flags' is copied to 'regs->ss'. */
+       "       addq $16, %rsp\n"
        "       popfq\n"
 #else
        /* Push a fake return address to tell the unwinder it's a rethook. */
        "       pushl $arch_rethook_trampoline\n"
        UNWIND_HINT_FUNC
-       /* Save the 'sp - 4', this will be fixed later. */
+       "       pushl %ss\n"
+       /* Save the 'sp - 8', this will be fixed later. */
        "       pushl %esp\n"
        "       pushfl\n"
        SAVE_REGS_STRING
        "       movl %esp, %eax\n"
        "       call arch_rethook_trampoline_callback\n"
        RESTORE_REGS_STRING
-       /* In the callback function, 'regs->flags' is copied to 'regs->sp'. */
-       "       addl $4, %esp\n"
+       /* In the callback function, 'regs->flags' is copied to 'regs->ss'. */
+       "       addl $8, %esp\n"
        "       popfl\n"
 #endif
        ASM_RET
 #endif
        regs->ip = (unsigned long)&arch_rethook_trampoline;
        regs->orig_ax = ~0UL;
-       regs->sp += sizeof(long);
-       frame_pointer = ®s->sp + 1;
+       regs->sp += 2*sizeof(long);
+       frame_pointer = (long *)(regs + 1);
 
        /*
         * The return address at 'frame_pointer' is recovered by the
        rethook_trampoline_handler(regs, (unsigned long)frame_pointer);
 
        /*
-        * Copy FLAGS to 'pt_regs::sp' so that arch_rethook_trapmoline()
+        * Copy FLAGS to 'pt_regs::ss' so that arch_rethook_trapmoline()
         * can do RET right after POPF.
         */
-       regs->sp = regs->flags;
+       *(unsigned long *)®s->ss = regs->flags;
 }
 NOKPROBE_SYMBOL(arch_rethook_trampoline_callback);
 
 void arch_rethook_fixup_return(struct pt_regs *regs,
                               unsigned long correct_ret_addr)
 {
-       unsigned long *frame_pointer = ®s->sp + 1;
+       unsigned long *frame_pointer = (void *)(regs + 1);
 
        /* Replace fake return address with real one. */
        *frame_pointer = correct_ret_addr;