Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

+2 -2
+2 -2
arch/alpha/kernel/signal.c
··· 49 49 unsigned long res; 50 50 51 51 siginitset(&mask, newmask & ~_BLOCKABLE); 52 - res = siprocmask(how, &mask, &oldmask); 52 + res = sigprocmask(how, &mask, &oldmask); 53 53 if (!res) { 54 54 force_successful_syscall_return(); 55 - res = oldmask->sig[0]; 55 + res = oldmask.sig[0]; 56 56 } 57 57 return res; 58 58 }