diff options
author | Theodore Ts'o <tytso@mit.edu> | 2017-02-04 23:38:06 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-12 00:41:46 -0500 |
commit | 269bf7b8c5db7544133dcff03bd741f980e1f110 (patch) | |
tree | 46d4e9a382d53233929e2885af147541893672ff /fs | |
parent | 0b37d0c0c6b35317bfc3aee8cdf94f853d594e5f (diff) |
ext4: preserve the needs_recovery flag when the journal is aborted
commit 97abd7d4b5d9c48ec15c425485f054e1c15e591b upstream.
If the journal is aborted, the needs_recovery feature flag should not
be removed. Otherwise, it's the journal might not get replayed and
this could lead to more data getting lost.
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/super.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index bbc316db9495..322119c27348 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
@@ -825,6 +825,7 @@ static void ext4_put_super(struct super_block *sb) | |||
825 | { | 825 | { |
826 | struct ext4_sb_info *sbi = EXT4_SB(sb); | 826 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
827 | struct ext4_super_block *es = sbi->s_es; | 827 | struct ext4_super_block *es = sbi->s_es; |
828 | int aborted = 0; | ||
828 | int i, err; | 829 | int i, err; |
829 | 830 | ||
830 | ext4_unregister_li_request(sb); | 831 | ext4_unregister_li_request(sb); |
@@ -834,9 +835,10 @@ static void ext4_put_super(struct super_block *sb) | |||
834 | destroy_workqueue(sbi->rsv_conversion_wq); | 835 | destroy_workqueue(sbi->rsv_conversion_wq); |
835 | 836 | ||
836 | if (sbi->s_journal) { | 837 | if (sbi->s_journal) { |
838 | aborted = is_journal_aborted(sbi->s_journal); | ||
837 | err = jbd2_journal_destroy(sbi->s_journal); | 839 | err = jbd2_journal_destroy(sbi->s_journal); |
838 | sbi->s_journal = NULL; | 840 | sbi->s_journal = NULL; |
839 | if (err < 0) | 841 | if ((err < 0) && !aborted) |
840 | ext4_abort(sb, "Couldn't clean up the journal"); | 842 | ext4_abort(sb, "Couldn't clean up the journal"); |
841 | } | 843 | } |
842 | 844 | ||
@@ -847,7 +849,7 @@ static void ext4_put_super(struct super_block *sb) | |||
847 | ext4_mb_release(sb); | 849 | ext4_mb_release(sb); |
848 | ext4_ext_release(sb); | 850 | ext4_ext_release(sb); |
849 | 851 | ||
850 | if (!(sb->s_flags & MS_RDONLY)) { | 852 | if (!(sb->s_flags & MS_RDONLY) && !aborted) { |
851 | ext4_clear_feature_journal_needs_recovery(sb); | 853 | ext4_clear_feature_journal_needs_recovery(sb); |
852 | es->s_state = cpu_to_le16(sbi->s_mount_state); | 854 | es->s_state = cpu_to_le16(sbi->s_mount_state); |
853 | } | 855 | } |