diff mbox series

[v2] btrfs: print message when tree-log replay starts

Message ID 20200207151657.2824-1-dsterba@suse.com (mailing list archive)
State New, archived
Headers show
Series [v2] btrfs: print message when tree-log replay starts | expand

Commit Message

David Sterba Feb. 7, 2020, 3:16 p.m. UTC
There's no logged information about tree-log replay although this is
something that points to previous unclean unmount. Other filesystems
report that as well.

Suggested-by: Chris Murphy <lists@colorremedies.com>
CC: stable@vger.kernel.org # 4.4+
Signed-off-by: David Sterba <dsterba@suse.com>
---

* add missing fs_info to btrfs_info

 fs/btrfs/disk-io.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Anand Jain Feb. 7, 2020, 4:01 p.m. UTC | #1
Reviewed-by: Anand Jain <anand.jain@oracle.com>
Johannes Thumshirn Feb. 10, 2020, 9:44 a.m. UTC | #2
Looks good,
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
diff mbox series

Patch

diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index 8fee95916be4..db16014abd64 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -3224,6 +3224,7 @@  int __cold open_ctree(struct super_block *sb, struct btrfs_fs_devices *fs_device
 	/* do not make disk changes in broken FS or nologreplay is given */
 	if (btrfs_super_log_root(disk_super) != 0 &&
 	    !btrfs_test_opt(fs_info, NOLOGREPLAY)) {
+		btrfs_info(fs_info, "start tree-log replay");
 		ret = btrfs_replay_log(fs_info, fs_devices);
 		if (ret) {
 			err = ret;