diff options
author | Theodore Ts'o <tytso@mit.edu> | 2012-09-13 12:11:40 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2012-09-13 12:11:40 -0400 |
commit | 5e7bbef19c8385895cb21c41a88bd937902e6316 (patch) | |
tree | a1a510f32c705d97c401bf622e8511d97fc50a9b /fs/ext4 | |
parent | 4da4a56e4f83f52d71e2c5fa86fb1ad77be09753 (diff) |
ext4: advertise the fact that the kernel supports meta_bg resizing
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/super.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index b8de488889d6..eb7722ab771c 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
@@ -2585,10 +2585,12 @@ static struct attribute *ext4_attrs[] = { | |||
2585 | /* Features this copy of ext4 supports */ | 2585 | /* Features this copy of ext4 supports */ |
2586 | EXT4_INFO_ATTR(lazy_itable_init); | 2586 | EXT4_INFO_ATTR(lazy_itable_init); |
2587 | EXT4_INFO_ATTR(batched_discard); | 2587 | EXT4_INFO_ATTR(batched_discard); |
2588 | EXT4_INFO_ATTR(meta_bg_resize); | ||
2588 | 2589 | ||
2589 | static struct attribute *ext4_feat_attrs[] = { | 2590 | static struct attribute *ext4_feat_attrs[] = { |
2590 | ATTR_LIST(lazy_itable_init), | 2591 | ATTR_LIST(lazy_itable_init), |
2591 | ATTR_LIST(batched_discard), | 2592 | ATTR_LIST(batched_discard), |
2593 | ATTR_LIST(meta_bg_resize), | ||
2592 | NULL, | 2594 | NULL, |
2593 | }; | 2595 | }; |
2594 | 2596 | ||