aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2012-11-18 15:29:16 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2012-12-19 18:07:40 -0500
commit5c49574ffd7ac07eae8c3b065d19e6ebc7e4760f (patch)
tree10c25476b152eca9917eea82fbecff28718eb2fc /kernel
parentunify SS_ONSTACK/SS_DISABLE definitions (diff)
downloadlinux-dev-5c49574ffd7ac07eae8c3b065d19e6ebc7e4760f.tar.xz
linux-dev-5c49574ffd7ac07eae8c3b065d19e6ebc7e4760f.zip
new helper: restore_altstack()
to be used by rt_sigreturn instances Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/signal.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/kernel/signal.c b/kernel/signal.c
index e75e4bd2839b..887f2fefe207 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -3103,6 +3103,13 @@ out:
return error;
}
+int restore_altstack(const stack_t __user *uss)
+{
+ int err = do_sigaltstack(uss, NULL, current_user_stack_pointer());
+ /* squash all but EFAULT for now */
+ return err == -EFAULT ? err : 0;
+}
+
#ifdef __ARCH_WANT_SYS_SIGPENDING
/**