diff options
author | Davidlohr Bueso <dave@gnu.org> | 2011-03-22 16:34:49 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-22 17:44:15 -0700 |
commit | ea611b2699b51a762ef03f805f9616e65d98f68e (patch) | |
tree | 7c7303390dd4ddeffe2bf6cea3e4acd63f1fb4e4 /init | |
parent | 1a530a6f23f7dca336311ef60c9ca26f3dc63688 (diff) | |
download | linux-3.10-ea611b2699b51a762ef03f805f9616e65d98f68e.tar.gz linux-3.10-ea611b2699b51a762ef03f805f9616e65d98f68e.tar.bz2 linux-3.10-ea611b2699b51a762ef03f805f9616e65d98f68e.zip |
init: return proper error code in do_mounts_rd()
In do_mounts_rd() if memory cannot be allocated, return -ENOMEM.
Signed-off-by: Davidlohr Bueso <dave@gnu.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'init')
-rw-r--r-- | 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 6e1ee6987c7..fe9acb0ae48 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; |