diff options
Diffstat (limited to 'fs/btrfs/transaction.h')
| -rw-r--r-- | fs/btrfs/transaction.h | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/btrfs/transaction.h b/fs/btrfs/transaction.h index d8f40e1a5d2d..00ed29c4b3f9 100644 --- a/fs/btrfs/transaction.h +++ b/fs/btrfs/transaction.h @@ -56,6 +56,7 @@ struct btrfs_transaction {  	wait_queue_head_t commit_wait;  	struct list_head pending_snapshots;  	struct list_head pending_chunks; +	struct list_head pending_ordered;  	struct list_head switch_commits;  	struct btrfs_delayed_ref_root delayed_refs;  	int aborted; @@ -105,6 +106,7 @@ struct btrfs_trans_handle {  	 */  	struct btrfs_root *root;  	struct seq_list delayed_ref_elem; +	struct list_head ordered;  	struct list_head qgroup_ref_list;  	struct list_head new_bgs;  }; @@ -145,8 +147,6 @@ struct btrfs_trans_handle *btrfs_attach_transaction_barrier(  					struct btrfs_root *root);  struct btrfs_trans_handle *btrfs_start_ioctl_transaction(struct btrfs_root *root);  int btrfs_wait_for_commit(struct btrfs_root *root, u64 transid); -int btrfs_write_and_wait_transaction(struct btrfs_trans_handle *trans, -				     struct btrfs_root *root);  void btrfs_add_dead_root(struct btrfs_root *root);  int btrfs_defrag_root(struct btrfs_root *root); @@ -170,4 +170,6 @@ int btrfs_wait_marked_extents(struct btrfs_root *root,  int btrfs_transaction_blocked(struct btrfs_fs_info *info);  int btrfs_transaction_in_commit(struct btrfs_fs_info *info);  void btrfs_put_transaction(struct btrfs_transaction *transaction); +void btrfs_apply_pending_changes(struct btrfs_fs_info *fs_info); +  #endif  | 
