aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/transaction.h
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2010-10-29 15:37:34 -0400
committerChris Mason <chris.mason@oracle.com>2010-10-29 15:37:34 -0400
commitbb9c12c945cbd1b0eaa1589546dde772ccabeeba (patch)
tree92f0bb01dce5125547c590d7c06b3e02d5c9d4fa /fs/btrfs/transaction.h
parent99d16cbcaf694c803a1b6bf7e851694ffe1d255d (diff)
Btrfs: async transaction commit
Add support for an async transaction commit that is ordered such that any subsequent operations will join the following transaction, but does not wait until the current commit is fully on disk. This avoids much of the latency associated with the btrfs_commit_transaction for callers concerned with serialization and not safety. The wait_for_unblock flag controls whether we wait for the 'middle' portion of commit_transaction to complete, which is necessary if the caller expects some of the modifications contained in the commit to be available (this is the case for subvol/snapshot creation). Signed-off-by: Sage Weil <sage@newdream.net> Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/transaction.h')
-rw-r--r--fs/btrfs/transaction.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/btrfs/transaction.h b/fs/btrfs/transaction.h
index 15f83e1c1ef..e1908e6872f 100644
--- a/fs/btrfs/transaction.h
+++ b/fs/btrfs/transaction.h
@@ -108,6 +108,9 @@ int btrfs_defrag_root(struct btrfs_root *root, int cacheonly);
108int btrfs_clean_old_snapshots(struct btrfs_root *root); 108int btrfs_clean_old_snapshots(struct btrfs_root *root);
109int btrfs_commit_transaction(struct btrfs_trans_handle *trans, 109int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
110 struct btrfs_root *root); 110 struct btrfs_root *root);
111int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans,
112 struct btrfs_root *root,
113 int wait_for_unblock);
111int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans, 114int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
112 struct btrfs_root *root); 115 struct btrfs_root *root);
113int btrfs_should_end_transaction(struct btrfs_trans_handle *trans, 116int btrfs_should_end_transaction(struct btrfs_trans_handle *trans,