ext4: fix type declaration of ext4_validate_block_bitmap
authorDarrick J. Wong <darrick.wong@oracle.com>
Wed, 28 Aug 2013 19:59:51 +0000 (15:59 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 28 Aug 2013 19:59:51 +0000 (15:59 -0400)
The block_group parameter to ext4_validate_block_bitmap is both used
as a ext4_group_t inside the function and the same type is passed in
by all callers.  We might as well use the typedef consistently instead
of open-coding the 'unsigned int'.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/balloc.c
fs/ext4/ext4.h

index b430afe77f0cec7bb550fb6466bd878945572aed..a40b1f96c02122a6b1a08f6f8ea34401ef34a155 100644 (file)
@@ -305,7 +305,7 @@ struct ext4_group_desc * ext4_get_group_desc(struct super_block *sb,
  */
 static ext4_fsblk_t ext4_valid_block_bitmap(struct super_block *sb,
                                            struct ext4_group_desc *desc,
-                                           unsigned int block_group,
+                                           ext4_group_t block_group,
                                            struct buffer_head *bh)
 {
        ext4_grpblk_t offset;
@@ -352,7 +352,7 @@ static ext4_fsblk_t ext4_valid_block_bitmap(struct super_block *sb,
 
 void ext4_validate_block_bitmap(struct super_block *sb,
                               struct ext4_group_desc *desc,
-                              unsigned int block_group,
+                              ext4_group_t block_group,
                               struct buffer_head *bh)
 {
        ext4_fsblk_t    blk;
index 28896655ad41873e45ad15bf594f184ddb9d5c4c..2e5818267565f0f16b99859d35bace7e8d3deace 100644 (file)
@@ -1930,7 +1930,7 @@ extern ext4_group_t ext4_get_group_number(struct super_block *sb,
 
 extern void ext4_validate_block_bitmap(struct super_block *sb,
                                       struct ext4_group_desc *desc,
-                                      unsigned int block_group,
+                                      ext4_group_t block_group,
                                       struct buffer_head *bh);
 extern unsigned int ext4_block_group(struct super_block *sb,
                        ext4_fsblk_t blocknr);