Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 48235a68 authored by Stefan Behrens's avatar Stefan Behrens Committed by Josef Bacik
Browse files

Btrfs: fix false positive in check-integrity on unmount



During unmount, it could happen that the integrity checker printed a
warning message "attempt to free ... on umount which is not yet iodone"
which turned out to be a false positive.

Signed-off-by: default avatarStefan Behrens <sbehrens@giantdisaster.de>
parent 86ff7ffc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3337,7 +3337,7 @@ void btrfsic_unmount(struct btrfs_root *root,
				btrfsic_block_link_free(l);
		}

		if (b_all->is_iodone)
		if (b_all->is_iodone || b_all->never_written)
			btrfsic_block_free(b_all);
		else
			printk(KERN_INFO "btrfs: attempt to free %c-block"