diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2006-03-15 22:47:20 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-03-16 21:28:24 -0500 |
commit | 2c276603c3e5ebf38155a9d1fbbda656d52d138e (patch) | |
tree | 8f382336491425b0efef4a00b77c81f89ce8cd46 /arch/powerpc/mm/lmb.c | |
parent | 9b15879aefe6a4c2236297df68c46498af26143d (diff) |
[PATCH] powerpc: Fix bug in bug fix for bug in lmb_alloc()
My patch (d7a5b2ffa1352f0310630934a56aecbdfb617b72) to always panic if
lmb_alloc() fails is broken because it checks alloc < 0, but should be
checking alloc == 0.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/mm/lmb.c')
-rw-r--r-- | arch/powerpc/mm/lmb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/lmb.c b/arch/powerpc/mm/lmb.c index 874cd103ce6e..417d58518558 100644 --- a/arch/powerpc/mm/lmb.c +++ b/arch/powerpc/mm/lmb.c | |||
@@ -232,7 +232,7 @@ unsigned long __init lmb_alloc_base(unsigned long size, unsigned long align, | |||
232 | 232 | ||
233 | alloc = __lmb_alloc_base(size, align, max_addr); | 233 | alloc = __lmb_alloc_base(size, align, max_addr); |
234 | 234 | ||
235 | if (alloc < 0) | 235 | if (alloc == 0) |
236 | panic("ERROR: Failed to allocate 0x%lx bytes below 0x%lx.\n", | 236 | panic("ERROR: Failed to allocate 0x%lx bytes below 0x%lx.\n", |
237 | size, max_addr); | 237 | size, max_addr); |
238 | 238 | ||