aboutsummaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2013-02-05 13:58:29 +0100
committerJan Kara <jack@suse.cz>2013-02-05 17:29:53 +0100
commit288be96de66fa7c09f2cf00a7793db5b4bac4213 (patch)
treec24f8fdae9c32bb22a2741b85a532a0c95d6067c /fs
parentc60305b578674eefe333198c7476dba2178a9082 (diff)
udf: Remove unused s_extLength from udf_bitmap
s_extLength was assigned to but the value was never really used. So just remove the field. Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs')
-rw-r--r--fs/udf/super.c4
-rw-r--r--fs/udf/udf_sb.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/fs/udf/super.c b/fs/udf/super.c
index f8830803d38..bc5b30a819e 100644
--- a/fs/udf/super.c
+++ b/fs/udf/super.c
@@ -1080,8 +1080,6 @@ static int udf_fill_partdesc_info(struct super_block *sb,
if (!bitmap)
return 1;
map->s_uspace.s_bitmap = bitmap;
- bitmap->s_extLength = le32_to_cpu(
- phd->unallocSpaceBitmap.extLength);
bitmap->s_extPosition = le32_to_cpu(
phd->unallocSpaceBitmap.extPosition);
map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
@@ -1116,8 +1114,6 @@ static int udf_fill_partdesc_info(struct super_block *sb,
if (!bitmap)
return 1;
map->s_fspace.s_bitmap = bitmap;
- bitmap->s_extLength = le32_to_cpu(
- phd->freedSpaceBitmap.extLength);
bitmap->s_extPosition = le32_to_cpu(
phd->freedSpaceBitmap.extPosition);
map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
diff --git a/fs/udf/udf_sb.h b/fs/udf/udf_sb.h
index 4f7ddb79699..ed401e94aa8 100644
--- a/fs/udf/udf_sb.h
+++ b/fs/udf/udf_sb.h
@@ -80,7 +80,6 @@ struct udf_virtual_data {
};
struct udf_bitmap {
- __u32 s_extLength;
__u32 s_extPosition;
int s_nr_groups;
struct buffer_head *s_block_bitmap[0];