Commit 7bb1f80f authored by David S. Miller's avatar David S. Miller Committed by Kamal Mostafa

sparc64: Fix sparc64_set_context stack handling.

BugLink: http://bugs.launchpad.net/bugs/1596575

[ Upstream commit 397d1533 ]

Like a signal return, we should use synchronize_user_stack() rather
than flush_user_windows().
Reported-by: default avatarIlya Malakhov <ilmalakhovthefirst@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarTim Gardner <tim.gardner@canonical.com>
Signed-off-by: default avatarKamal Mostafa <kamal@canonical.com>
parent 8f1bc6b5
......@@ -52,7 +52,7 @@ asmlinkage void sparc64_set_context(struct pt_regs *regs)
unsigned char fenab;
int err;
flush_user_windows();
synchronize_user_stack();
if (get_thread_wsaved() ||
(((unsigned long)ucp) & (sizeof(unsigned long)-1)) ||
(!__access_ok(ucp, sizeof(*ucp))))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment