diff options
-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) | |||
948 | else | 948 | else |
949 | bitmap = vzalloc(size); /* TODO: get rid of vzalloc */ | 949 | bitmap = vzalloc(size); /* TODO: get rid of vzalloc */ |
950 | 950 | ||
951 | if (bitmap == NULL) { | 951 | if (bitmap == NULL) |
952 | udf_err(sb, "Unable to allocate space for bitmap and %d buffer_head pointers\n", | ||
953 | nr_groups); | ||
954 | return NULL; | 952 | return NULL; |
955 | } | ||
956 | 953 | ||
957 | bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1); | 954 | bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1); |
958 | bitmap->s_nr_groups = nr_groups; | 955 | bitmap->s_nr_groups = nr_groups; |