diff options
author | Theodore Ts'o <tytso@mit.edu> | 2011-09-10 03:12:51 +0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-09-10 03:12:51 +0400 |
commit | cff1dfd767d1ee3c773fd8b57fe310957e5f8abb (patch) | |
tree | ace05de33bb5d1e2062724818d57d89eae66004f /fs/ext4/ialloc.c | |
parent | 5dee54372c1ea15ab482b959634cda8c01b042bd (diff) | |
download | linux-cff1dfd767d1ee3c773fd8b57fe310957e5f8abb.tar.xz |
ext4: rename ext4_free_blocks_after_init() to ext4_free_clusters_after_init()
This function really returns the number of clusters after initializing
an uninitalized block bitmap has been initialized.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ialloc.c')
-rw-r--r-- | fs/ext4/ialloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c index 71a9c8f3dece..d50a7d5e4726 100644 --- a/fs/ext4/ialloc.c +++ b/fs/ext4/ialloc.c @@ -961,7 +961,7 @@ got: if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) { gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT); ext4_free_group_clusters_set(sb, gdp, - ext4_free_blocks_after_init(sb, group, gdp)); + ext4_free_clusters_after_init(sb, group, gdp)); gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp); } |