aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcin Slusarz <marcin.slusarz@gmail.com>2008-02-08 07:20:34 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-08 12:22:35 -0500
commit883cb9d1842a37c6eed77f2c64792d35048c1e8d (patch)
treee0c95015c8721868dab0d060385aec18164718a6
parent66e1da3f47d5aaa278d116e72d2f8e8f204cdca3 (diff)
udf: move calculating of nr_groups into helper function
Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Ben Fennema <bfennema@falcon.csc.calpoly.edu> Acked-by: Jan Kara <jack@suse.cz> Cc: Christoph Hellwig <hch@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--fs/udf/balloc.c4
-rw-r--r--fs/udf/super.c16
-rw-r--r--fs/udf/udf_sb.h2
3 files changed, 13 insertions, 9 deletions
diff --git a/fs/udf/balloc.c b/fs/udf/balloc.c
index 8c0c27912278..3f67d9dc8631 100644
--- a/fs/udf/balloc.c
+++ b/fs/udf/balloc.c
@@ -231,9 +231,7 @@ static int udf_bitmap_prealloc_blocks(struct super_block *sb,
231 block_count = part_len - first_block; 231 block_count = part_len - first_block;
232 232
233repeat: 233repeat:
234 nr_groups = (sbi->s_partmaps[partition].s_partition_len + 234 nr_groups = udf_compute_nr_groups(sb, partition);
235 (sizeof(struct spaceBitmapDesc) << 3) +
236 (sb->s_blocksize * 8) - 1) / (sb->s_blocksize * 8);
237 block = first_block + (sizeof(struct spaceBitmapDesc) << 3); 235 block = first_block + (sizeof(struct spaceBitmapDesc) << 3);
238 block_group = block >> (sb->s_blocksize_bits + 3); 236 block_group = block >> (sb->s_blocksize_bits + 3);
239 group_start = block_group ? 0 : sizeof(struct spaceBitmapDesc); 237 group_start = block_group ? 0 : sizeof(struct spaceBitmapDesc);
diff --git a/fs/udf/super.c b/fs/udf/super.c
index 86aa2238bc7b..c19ee38e85b3 100644
--- a/fs/udf/super.c
+++ b/fs/udf/super.c
@@ -937,18 +937,22 @@ static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
937 root->logicalBlockNum, root->partitionReferenceNum); 937 root->logicalBlockNum, root->partitionReferenceNum);
938} 938}
939 939
940int udf_compute_nr_groups(struct super_block *sb, u32 partition)
941{
942 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
943 return (map->s_partition_len +
944 (sizeof(struct spaceBitmapDesc) << 3) +
945 (sb->s_blocksize * 8) - 1) /
946 (sb->s_blocksize * 8);
947}
948
940static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index) 949static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
941{ 950{
942 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[index];
943 struct udf_bitmap *bitmap; 951 struct udf_bitmap *bitmap;
944 int nr_groups; 952 int nr_groups;
945 int size; 953 int size;
946 954
947 /* TODO: move calculating of nr_groups into helper function */ 955 nr_groups = udf_compute_nr_groups(sb, index);
948 nr_groups = (map->s_partition_len +
949 (sizeof(struct spaceBitmapDesc) << 3) +
950 (sb->s_blocksize * 8) - 1) /
951 (sb->s_blocksize * 8);
952 size = sizeof(struct udf_bitmap) + 956 size = sizeof(struct udf_bitmap) +
953 (sizeof(struct buffer_head *) * nr_groups); 957 (sizeof(struct buffer_head *) * nr_groups);
954 958
diff --git a/fs/udf/udf_sb.h b/fs/udf/udf_sb.h
index 2c05f8277fd8..d9adb0fff84c 100644
--- a/fs/udf/udf_sb.h
+++ b/fs/udf/udf_sb.h
@@ -43,6 +43,8 @@ static inline struct udf_sb_info *UDF_SB(struct super_block *sb)
43 43
44struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi); 44struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi);
45 45
46int udf_compute_nr_groups(struct super_block *sb, u32 partition);
47
46#define UDF_QUERY_FLAG(X,Y) ( UDF_SB(X)->s_flags & ( 1 << (Y) ) ) 48#define UDF_QUERY_FLAG(X,Y) ( UDF_SB(X)->s_flags & ( 1 << (Y) ) )
47#define UDF_SET_FLAG(X,Y) ( UDF_SB(X)->s_flags |= ( 1 << (Y) ) ) 49#define UDF_SET_FLAG(X,Y) ( UDF_SB(X)->s_flags |= ( 1 << (Y) ) )
48#define UDF_CLEAR_FLAG(X,Y) ( UDF_SB(X)->s_flags &= ~( 1 << (Y) ) ) 50#define UDF_CLEAR_FLAG(X,Y) ( UDF_SB(X)->s_flags &= ~( 1 << (Y) ) )