diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-09-28 16:26:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-09-28 16:26:57 -0400 |
commit | 0f44fbd297e1cda5d9ecc9f5321a86fe647c7d4a (patch) | |
tree | 9f3bd3eb11181cd3874bdd2a66361765522337b4 | |
parent | 7268e3c4b5eb8e3206a467d664c6e17773f2d19e (diff) |
alpha: fix compile problem in arch/alpha/kernel/signal.c
Tssk. Apparently Al hadn't checked commit c52c2ddc1dfa ("alpha: switch
osf_sigprocmask() to use of sigprocmask()") at all. It doesn't compile.
Fixed as per suggestions from Michael Cree.
Reported-by: Michael Cree <mcree@orcon.net.nz>
Cc: Al Viro <viro@ftp.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | arch/alpha/kernel/signal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/alpha/kernel/signal.c b/arch/alpha/kernel/signal.c index 779780a332d3..d290845aef59 100644 --- a/arch/alpha/kernel/signal.c +++ b/arch/alpha/kernel/signal.c | |||
@@ -49,10 +49,10 @@ SYSCALL_DEFINE2(osf_sigprocmask, int, how, unsigned long, newmask) | |||
49 | unsigned long res; | 49 | unsigned long res; |
50 | 50 | ||
51 | siginitset(&mask, newmask & ~_BLOCKABLE); | 51 | siginitset(&mask, newmask & ~_BLOCKABLE); |
52 | res = siprocmask(how, &mask, &oldmask); | 52 | res = sigprocmask(how, &mask, &oldmask); |
53 | if (!res) { | 53 | if (!res) { |
54 | force_successful_syscall_return(); | 54 | force_successful_syscall_return(); |
55 | res = oldmask->sig[0]; | 55 | res = oldmask.sig[0]; |
56 | } | 56 | } |
57 | return res; | 57 | return res; |
58 | } | 58 | } |