The patch titled nommu: report correct errno in message has been removed from the -mm tree. Its filename was nommu-report-correct-errno-in-message.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: nommu: report correct errno in message From: Greg Ungerer <gerg@xxxxxxxxxxxx> Report the correct errno for out of memory debug output in binfmt_flat.c Signed-off-by: Philippe De Muyter <phdm@xxxxxxxxx> Signed-off-by: Greg Ungerer <gerg@xxxxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/binfmt_flat.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN fs/binfmt_flat.c~nommu-report-correct-errno-in-message fs/binfmt_flat.c --- a/fs/binfmt_flat.c~nommu-report-correct-errno-in-message +++ a/fs/binfmt_flat.c @@ -558,7 +558,7 @@ static int load_flat_file(struct linux_b if (!realdatastart) realdatastart = (unsigned long) -ENOMEM; printk("Unable to allocate RAM for process data, errno %d\n", - (int)-datapos); + (int)-realdatastart); do_munmap(current->mm, textpos, text_len); ret = realdatastart; goto err; _ Patches currently in -mm which might be from gerg@xxxxxxxxxxxx are origin.patch git-arm.patch drivers-mtd-maps-nettelc-possible-cleanups.patch nommu-stub-expand_stack-for-nommu-case.patch m68knommu-use-trhead_size-instead-of-hard-constant.patch m68knommu-remove-cruft-from-setup-code.patch m68knommu-remove-old-cache-management-cruft-from-mm-code.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