diff options
author | Theodore Ts'o <tytso@mit.edu> | 2011-09-09 18:58:51 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-09-09 18:58:51 -0400 |
commit | 24aaa8ef4e2b5764ada1fc69787e2fbd4f6276e5 (patch) | |
tree | 7f83cc8e52b5f2edc5d89d2d1808d0972831f9bf /fs/ext4/ext4.h | |
parent | 5704265188ffe4290ed73b3cb685206c3ed8209d (diff) |
ext4: convert the free_blocks field in s_flex_groups to be free_clusters
Convert the free_blocks to be free_clusters to make the final revised
bigalloc changes easier to read/understand.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ext4.h')
-rw-r--r-- | fs/ext4/ext4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index c7588366471c..d2584224c89a 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h | |||
@@ -300,7 +300,7 @@ struct ext4_group_desc | |||
300 | 300 | ||
301 | struct flex_groups { | 301 | struct flex_groups { |
302 | atomic_t free_inodes; | 302 | atomic_t free_inodes; |
303 | atomic_t free_blocks; | 303 | atomic_t free_clusters; |
304 | atomic_t used_dirs; | 304 | atomic_t used_dirs; |
305 | }; | 305 | }; |
306 | 306 | ||