]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
Btrfs: don't delay inode ref updates during log replay
authorChris Mason <clm@fb.com>
Wed, 31 Dec 2014 17:18:29 +0000 (12:18 -0500)
committerJiri Slaby <jslaby@suse.cz>
Thu, 9 Apr 2015 12:13:38 +0000 (14:13 +0200)
commit644d10716875b24388680925d6c7502420987bfe
treedd159e5d98a608ad4733091138f0fb0d02d3394b
parent3f1d2f15e95c422dfec90853fa687e93c6a88c9d
Btrfs: don't delay inode ref updates during log replay

commit 6f8960541b1eb6054a642da48daae2320fddba93 upstream.

Commit 1d52c78afbb (Btrfs: try not to ENOSPC on log replay) added a
check to skip delayed inode updates during log replay because it
confuses the enospc code.  But the delayed processing will end up
ignoring delayed refs from log replay because the inode itself wasn't
put through the delayed code.

This can end up triggering a warning at commit time:

WARNING: CPU: 2 PID: 778 at fs/btrfs/delayed-inode.c:1410 btrfs_assert_delayed_root_empty+0x32/0x34()

Which is repeated for each commit because we never process the delayed
inode ref update.

The fix used here is to change btrfs_delayed_delete_inode_ref to return
an error if we're currently in log replay.  The caller will do the ref
deletion immediately and everything will work properly.

Signed-off-by: Chris Mason <clm@fb.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
fs/btrfs/delayed-inode.c