The patch titled use-extended-crashkernel-command-line-on-ia64 fix has been added to the -mm tree. Its filename is use-extended-crashkernel-command-line-on-ia64-fix.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: use-extended-crashkernel-command-line-on-ia64 fix From: Kamalesh Babulal <kamalesh@xxxxxxxxxxxxxxxxxx> arch/ia64/kernel/efi.c: In function 'efi_memmap_init': arch/ia64/kernel/efi.c:1088: error: 'total_memory' undeclared (first use in this function) arch/ia64/kernel/efi.c:1088: error: (Each undeclared identifier is reported only once arch/ia64/kernel/efi.c:1088: error: for each function it appears in.) make[1]: *** [arch/ia64/kernel/efi.o] Error 1 make: *** [arch/ia64/kernel] Error 2 The use-extended-crashkernel-command-line-on-ia64.patch uses total_mem and return total_memory. Signed-off-by: Kamalesh Babulal <kamalesh@xxxxxxxxxxxxxxxxxx> Cc: Bernhard Walle <bwalle@xxxxxxx> Cc: "Luck, Tony" <tony.luck@xxxxxxxxx> Cc: Vivek Goyal <vgoyal@xxxxxxxxxx> Cc: "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/ia64/kernel/efi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/ia64/kernel/efi.c~use-extended-crashkernel-command-line-on-ia64-fix arch/ia64/kernel/efi.c --- a/arch/ia64/kernel/efi.c~use-extended-crashkernel-command-line-on-ia64-fix +++ a/arch/ia64/kernel/efi.c @@ -1085,7 +1085,7 @@ efi_memmap_init(unsigned long *s, unsign *s = (u64)kern_memmap; *e = (u64)++k; - return total_memory; + return total_mem; } void _ Patches currently in -mm which might be from kamalesh@xxxxxxxxxxxxxxxxxx are fix-3-gregkh-driver-kobject-remove-the-static-array-for-the-name.patch git-net-fix-macec.patch memoryless-nodes-fixup-uses-of-node_online_map-in-generic-code-fix.patch use-extended-crashkernel-command-line-on-ia64-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html