]> git.karo-electronics.de Git - karo-tx-linux.git/commit
Btrfs: fix race with freeze and free space inodes
authorJosef Bacik <jbacik@fusionio.com>
Fri, 14 Sep 2012 15:22:38 +0000 (11:22 -0400)
committerChris Mason <chris.mason@fusionio.com>
Mon, 1 Oct 2012 19:19:27 +0000 (15:19 -0400)
commit9bade384a59a44cec34ab3e3e6d6108ec689d69f
tree8de1301b749bcf17c93681f7e181ffa48e5a7279
parent3e55e6e33238849c67080beb10d428a9d387e26d
Btrfs: fix race with freeze and free space inodes

So we start our freeze, somebody comes in and does an fsync() on a file
where we have to commit a transaction for whatever reason, and we will
deadlock because the freeze is waiting on FS_FREEZE people to stop writing
to the file system, but the transaction is waiting for its free space inodes
to be written out, which are in turn waiting on sb_start_intwrite while
trying to write the file extents.  To fix this we'll just skip the
sb_start_intwrite() if we TRANS_JOIN_NOLOCK since we're being waited on by a
transaction commit so we're safe wrt to freeze and this will keep us from
deadlocking.  Thanks,

Signed-off-by: Josef Bacik <jbacik@fusionio.com>
fs/btrfs/transaction.c