All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] oom_kill bug
@ 2007-10-20 20:45 Al Viro
  0 siblings, 0 replies; only message in thread
From: Al Viro @ 2007-10-20 20:45 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

	Wrong order of arguments

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
---
diff --git a/mm/oom_kill.c b/mm/oom_kill.c
index 824cade..91a081a 100644
--- a/mm/oom_kill.c
+++ b/mm/oom_kill.c
@@ -496,7 +496,7 @@ retry:
 			panic("Out of memory and no killable processes...\n");
 		}
 
-		if (oom_kill_process(p, points, gfp_mask, order,
+		if (oom_kill_process(p, gfp_mask, order, points,
 				     "Out of memory"))
 			goto retry;
 

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2007-10-21  3:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-20 20:45 [PATCH] oom_kill bug Al Viro

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.