aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/inode.c
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2008-01-14 16:24:38 -0500
committerChris Mason <chris.mason@oracle.com>2008-09-25 11:03:59 -0400
commit61295eb8665e723e77af91d0a1e655a4bd28344f (patch)
tree15e1f88cfa9faaaef85f9afd49f8860c069095a2 /fs/btrfs/inode.c
parent8c416c9e0d35b0462e89b76b7581127efe03b8b2 (diff)
Btrfs: Add drop inode func to avoid data=ordered deadlock
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/inode.c')
-rw-r--r--fs/btrfs/inode.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 5260b4708158..e53d20331646 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -990,6 +990,25 @@ out:
990fail: 990fail:
991 return err; 991 return err;
992} 992}
993
994void btrfs_drop_inode(struct inode *inode)
995{
996 struct btrfs_trans_handle *trans;
997 struct btrfs_root *root = BTRFS_I(inode)->root;
998
999 if (!BTRFS_I(inode)->ordered_trans) {
1000 generic_drop_inode(inode);
1001 return;
1002 }
1003 /* nasty, but it prevents a deadlock with data=ordered by preventing
1004 * a commit until after this inode is done
1005 */
1006 trans = btrfs_start_transaction(root, 1);
1007 generic_drop_inode(inode);
1008 /* note, the inode is now untouchable */
1009 btrfs_end_transaction(trans, root);
1010}
1011
993void btrfs_delete_inode(struct inode *inode) 1012void btrfs_delete_inode(struct inode *inode)
994{ 1013{
995 struct btrfs_trans_handle *trans; 1014 struct btrfs_trans_handle *trans;