Commit 19288951 authored by Filipe Manana's avatar Filipe Manana Committed by David Sterba

btrfs: update comment for btrfs_join_transaction_nostart()

Update the comment for btrfs_join_transaction_nostart() to be more clear
about how it works and how it's different from btrfs_attach_transaction().
Signed-off-by: default avatarFilipe Manana <fdmanana@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 4490e803
...@@ -799,7 +799,10 @@ struct btrfs_trans_handle *btrfs_join_transaction_spacecache(struct btrfs_root * ...@@ -799,7 +799,10 @@ struct btrfs_trans_handle *btrfs_join_transaction_spacecache(struct btrfs_root *
/* /*
* Similar to regular join but it never starts a transaction when none is * Similar to regular join but it never starts a transaction when none is
* running or after waiting for the current one to finish. * running or when there's a running one at a state >= TRANS_STATE_UNBLOCKED.
* This is similar to btrfs_attach_transaction() but it allows the join to
* happen if the transaction commit already started but it's not yet in the
* "doing" phase (the state is < TRANS_STATE_COMMIT_DOING).
*/ */
struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root) struct btrfs_trans_handle *btrfs_join_transaction_nostart(struct btrfs_root *root)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment