The patch titled
nommu: report correct errno in message
has been added to the -mm tree. Its filename is
nommu-report-correct-errno-in-message.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: nommu: report correct errno in message
From: Greg Ungerer <[EMAIL PROTECTED]>
Report the correct errno for out of memory debug output in binfmt_flat.c
Signed-off-by: Philippe De Muyter <[EMAIL PROTECTED]>
Signed-off-by: Greg Ungerer <[EMAIL PROTECTED]>
Cc: David Howells <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
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 [EMAIL PROTECTED] are
drivers-mtd-maps-nettelc-possible-cleanups.patch
m68knommu-fix-coldfire-timer-off-by-1.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
nommu-report-correct-errno-in-message.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html