]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[IA64] Reserve elfcorehdr memory in CONFIG_CRASH_DUMP
authorJay Lan <jlan@sgi.com>
Fri, 7 Nov 2008 17:51:55 +0000 (09:51 -0800)
committerTony Luck <tony.luck@intel.com>
Fri, 7 Nov 2008 17:51:55 +0000 (09:51 -0800)
IA64 kdump kernel failed to initialize /proc/vmcore in 2.6.28-rc2.
A bug was introduced in this patch commit:

  d9a9855d0b06ca6d6cc92596fedcc03f8512e062
  always reserve elfcore header memory in crash kernel

The problem was that the call to reserve_elfcorehdr() should be placed
in CONFIG_CRASH_DUMP rather than in CONFIG_CRASH_KERNEL, which does
not exist.

Signed-off-by: Jay Lan <jlan@sgi.com>
Acked-by: Simon Hormon <horms@verge.net.au>
Signed-off-by: Tony Luck <tony.luck@intel.com>
arch/ia64/kernel/setup.c

index bf441f49682cce830ef1ef174bca6e357c3710cf..865af27c7737c1596dde7762e3ab65555fc990db 100644 (file)
@@ -359,7 +359,7 @@ reserve_memory (void)
        }
 #endif
 
-#ifdef CONFIG_CRASH_KERNEL
+#ifdef CONFIG_CRASH_DUMP
        if (reserve_elfcorehdr(&rsvd_region[n].start,
                               &rsvd_region[n].end) == 0)
                n++;