projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7268e3c
)
alpha: fix compile problem in arch/alpha/kernel/signal.c
author
Linus Torvalds
<
[email protected]
>
Tue, 28 Sep 2010 20:26:57 +0000
(13:26 -0700)
committer
Linus Torvalds
<
[email protected]
>
Tue, 28 Sep 2010 20:26:57 +0000
(13:26 -0700)
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 <
[email protected]
>
Cc: Al Viro <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/alpha/kernel/signal.c
patch
|
blob
|
history
diff --git
a/arch/alpha/kernel/signal.c
b/arch/alpha/kernel/signal.c
index 779780a332d36dff463f314129cfa6595084eb75..d290845aef5981f5db242d8abbd2f4d4c96c8fe5 100644
(file)
--- 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)
unsigned long res;
siginitset(&mask, newmask & ~_BLOCKABLE);
- res = siprocmask(how, &mask, &oldmask);
+ res = si
g
procmask(how, &mask, &oldmask);
if (!res) {
force_successful_syscall_return();
- res = oldmask
->
sig[0];
+ res = oldmask
.
sig[0];
}
return res;
}