summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorYoichi Yuasa2005-06-27 23:36:30 +0200
committerLinus Torvalds2005-06-28 00:11:42 +0200
commitd4b3a80e399c989028acd5185c792fab82eda035 (patch)
treea9743afc4925893538108c815a06026dee3cba35 /arch
parent[PATCH] fix WANT_PAGE_VIRTUAL in memmap_init (diff)
downloadkernel-qcow2-linux-d4b3a80e399c989028acd5185c792fab82eda035.tar.gz
kernel-qcow2-linux-d4b3a80e399c989028acd5185c792fab82eda035.tar.xz
kernel-qcow2-linux-d4b3a80e399c989028acd5185c792fab82eda035.zip
[PATCH] mips: fixed try_to_freeze build error
arch/mips/kernel/signal.c: In function 'do_signal': arch/mips/kernel/signal.c:460: error: too many arguments to function 'try_to_freeze' Signed-off-by: Yoichi Yuasa <yuasa@hh.iij4u.or.jp> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/kernel/signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/signal.c b/arch/mips/kernel/signal.c
index 508026ae5842..65ee15396ffd 100644
--- a/arch/mips/kernel/signal.c
+++ b/arch/mips/kernel/signal.c
@@ -457,7 +457,7 @@ static int do_signal(sigset_t *oldset, struct pt_regs *regs)
if (!user_mode(regs))
return 1;
- if (try_to_freeze(0))
+ if (try_to_freeze())
goto no_signal;
if (!oldset)