[PATCH] init: return proper error code in do_mounts_rd

From: Davidlohr Bueso
Date: Thu Jan 20 2011 - 09:55:27 EST


From: Davidlohr Bueso <dave@xxxxxxx>

In do_mounts_rd() if memory cannot be allocated, return -ENOMEM.

Signed-off-by: Davidlohr Bueso <dave@xxxxxxx>
---
init/do_mounts_rd.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/init/do_mounts_rd.c b/init/do_mounts_rd.c
index 6e1ee69..fe9acb0 100644
--- a/init/do_mounts_rd.c
+++ b/init/do_mounts_rd.c
@@ -64,7 +64,7 @@ identify_ramdisk_image(int fd, int start_block, decompress_fn *decompressor)

buf = kmalloc(size, GFP_KERNEL);
if (!buf)
- return -1;
+ return -ENOMEM;

minixsb = (struct minix_super_block *) buf;
ext2sb = (struct ext2_super_block *) buf;
--
1.7.1



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/