diff options
author | Joe Perches <joe@perches.com> | 2012-01-31 14:42:10 -0800 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2012-02-29 21:53:46 +0100 |
commit | 75b09e022fc22d675c726c94b1b73f5d08dafdf6 (patch) | |
tree | 9c8614e609fcc3cb741d435b5a465f46bfcd693e /fs/udf | |
parent | 88ebdda6159ffc15699f204c33feb3e431bf9bdc (diff) | |
download | linux-75b09e022fc22d675c726c94b1b73f5d08dafdf6.tar.gz linux-75b09e022fc22d675c726c94b1b73f5d08dafdf6.tar.bz2 linux-75b09e022fc22d675c726c94b1b73f5d08dafdf6.zip |
udf: Remove unnecessary OOM messages
Per call site OOM messages are unnecessary.
k.alloc and v.alloc failures use dump_stack().
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf')
-rw-r--r-- | fs/udf/super.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/udf/super.c b/fs/udf/super.c index c09a84daaf50..19111f92d60f 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c @@ -948,11 +948,8 @@ static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index) else bitmap = vzalloc(size); /* TODO: get rid of vzalloc */ - if (bitmap == NULL) { - udf_err(sb, "Unable to allocate space for bitmap and %d buffer_head pointers\n", - nr_groups); + if (bitmap == NULL) return NULL; - } bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1); bitmap->s_nr_groups = nr_groups; |