diff options
author | Theodore Ts'o <tytso@mit.edu> | 2012-06-30 19:14:57 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2012-06-30 19:14:57 -0400 |
commit | f6fb99cadcd44660c68e13f6eab28333653621e6 (patch) | |
tree | 4075bd09e5ec75bbeaa9d0ca498e50cfb0c45dfe /fs/ext4/balloc.c | |
parent | f4e95b3316c4daa43224753bb98f41456fef86c7 (diff) | |
download | linux-3.10-f6fb99cadcd44660c68e13f6eab28333653621e6.tar.gz linux-3.10-f6fb99cadcd44660c68e13f6eab28333653621e6.tar.bz2 linux-3.10-f6fb99cadcd44660c68e13f6eab28333653621e6.zip |
ext4: pass a char * to ext4_count_free() instead of a buffer_head ptr
Make it possible for ext4_count_free to operate on buffers and not
just data in buffer_heads.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Cc: stable@kernel.org
Diffstat (limited to 'fs/ext4/balloc.c')
-rw-r--r-- | fs/ext4/balloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c index cee7812cc3c..d23b31ca9d7 100644 --- a/fs/ext4/balloc.c +++ b/fs/ext4/balloc.c @@ -609,7 +609,8 @@ ext4_fsblk_t ext4_count_free_clusters(struct super_block *sb) if (bitmap_bh == NULL) continue; - x = ext4_count_free(bitmap_bh, sb->s_blocksize); + x = ext4_count_free(bitmap_bh->b_data, + EXT4_BLOCKS_PER_GROUP(sb) / 8); printk(KERN_DEBUG "group %u: stored = %d, counted = %u\n", i, ext4_free_group_clusters(sb, gdp), x); bitmap_count += x; |