* [PATCH] try_to_freeze call fixes.
@ 2005-07-18 3:36 Nigel Cunningham
0 siblings, 0 replies; only message in thread
From: Nigel Cunningham @ 2005-07-18 3:36 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Lameter, Linux Kernel Mailing List
Hi all.
Here are fixes for four try_to_freeze calls that are still (incorrectly)
using a parameter after the recent try_to_freeze() changes.
Regards,
Nigel
Signed-Off by: Nigel Cunningham <nigel@suspend2.net>
mips/kernel/irixsig.c | 2 +-
mips/kernel/signal32.c | 2 +-
sh/kernel/signal.c | 2 +-
sh64/kernel/signal.c | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff -ruNp 202-more-try-to-freeze.patch-old/arch/mips/kernel/irixsig.c 202-more-try-to-freeze.patch-new/arch/mips/kernel/irixsig.c
--- 202-more-try-to-freeze.patch-old/arch/mips/kernel/irixsig.c 2005-06-20 11:46:44.000000000 +1000
+++ 202-more-try-to-freeze.patch-new/arch/mips/kernel/irixsig.c 2005-07-09 20:41:44.000000000 +1000
@@ -178,7 +178,7 @@ asmlinkage int do_irix_signal(sigset_t *
if (!user_mode(regs))
return 1;
- if (try_to_freeze(0))
+ if (try_to_freeze())
goto no_signal;
if (!oldset)
diff -ruNp 202-more-try-to-freeze.patch-old/arch/mips/kernel/signal32.c 202-more-try-to-freeze.patch-new/arch/mips/kernel/signal32.c
--- 202-more-try-to-freeze.patch-old/arch/mips/kernel/signal32.c 2005-06-20 11:46:44.000000000 +1000
+++ 202-more-try-to-freeze.patch-new/arch/mips/kernel/signal32.c 2005-07-09 20:41:44.000000000 +1000
@@ -774,7 +774,7 @@ int do_signal32(sigset_t *oldset, struct
if (!user_mode(regs))
return 1;
- if (try_to_freeze(0))
+ if (try_to_freeze())
goto no_signal;
if (!oldset)
diff -ruNp 202-more-try-to-freeze.patch-old/arch/sh/kernel/signal.c 202-more-try-to-freeze.patch-new/arch/sh/kernel/signal.c
--- 202-more-try-to-freeze.patch-old/arch/sh/kernel/signal.c 2005-06-20 11:46:47.000000000 +1000
+++ 202-more-try-to-freeze.patch-new/arch/sh/kernel/signal.c 2005-07-09 20:41:45.000000000 +1000
@@ -579,7 +579,7 @@ int do_signal(struct pt_regs *regs, sigs
if (!user_mode(regs))
return 1;
- if (try_to_freeze(0))
+ if (try_to_freeze())
goto no_signal;
if (!oldset)
diff -ruNp 202-more-try-to-freeze.patch-old/arch/sh64/kernel/signal.c 202-more-try-to-freeze.patch-new/arch/sh64/kernel/signal.c
--- 202-more-try-to-freeze.patch-old/arch/sh64/kernel/signal.c 2005-06-20 11:46:47.000000000 +1000
+++ 202-more-try-to-freeze.patch-new/arch/sh64/kernel/signal.c 2005-07-09 20:41:45.000000000 +1000
@@ -697,7 +697,7 @@ int do_signal(struct pt_regs *regs, sigs
if (!user_mode(regs))
return 1;
- if (try_to_freeze(0))
+ if (try_to_freeze())
goto no_signal;
if (!oldset)
--
Evolution.
Enumerate the requirements.
Consider the interdependencies.
Calculate the probabilities.
Be amazed that people believe it happened.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-07-18 14:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-18 3:36 [PATCH] try_to_freeze call fixes Nigel Cunningham
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox