udf: Remove unnecessary OOM messages
authorJoe Perches <joe@perches.com>
Tue, 31 Jan 2012 22:42:10 +0000 (14:42 -0800)
committerJan Kara <jack@suse.cz>
Wed, 29 Feb 2012 20:53:46 +0000 (21:53 +0100)
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>
fs/udf/super.c

index c09a84d..19111f9 100644 (file)
@@ -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;