btrfs_wait_ordered_extents(root, 0, 0);
- spin_lock(&fs_info->trans_lock);
- if (!fs_info->running_transaction) {
- spin_unlock(&fs_info->trans_lock);
- return 0;
- }
- spin_unlock(&fs_info->trans_lock);
-
- trans = btrfs_join_transaction(root);
- if (IS_ERR(trans))
+ trans = btrfs_join_transaction_freeze(root);
+ if (IS_ERR(trans)) {
+ /* Frozen, don't bother */
+ if (PTR_ERR(trans) == -EPERM)
+ return 0;
return PTR_ERR(trans);
+ }
return btrfs_commit_transaction(trans, root);
}
TRANS_JOIN,
TRANS_USERSPACE,
TRANS_JOIN_NOLOCK,
+ TRANS_JOIN_FREEZE,
};
static int may_wait_transaction(struct btrfs_root *root, int type)
if (!h)
return ERR_PTR(-ENOMEM);
- sb_start_intwrite(root->fs_info->sb);
+ if (!__sb_start_write(root->fs_info->sb, SB_FREEZE_FS, false)) {
+ if (type == TRANS_JOIN_FREEZE)
+ return ERR_PTR(-EPERM);
+ sb_start_intwrite(root->fs_info->sb);
+ }
if (may_wait_transaction(root, type))
wait_current_trans(root);
return start_transaction(root, 0, TRANS_USERSPACE, 0);
}
+struct btrfs_trans_handle *btrfs_join_transaction_freeze(struct btrfs_root *root)
+{
+ return start_transaction(root, 0, TRANS_JOIN_FREEZE, 0);
+}
+
/* wait for a transaction commit to be fully complete */
static noinline void wait_for_commit(struct btrfs_root *root,
struct btrfs_transaction *commit)
struct btrfs_root *root, int num_items);
struct btrfs_trans_handle *btrfs_join_transaction(struct btrfs_root *root);
struct btrfs_trans_handle *btrfs_join_transaction_nolock(struct btrfs_root *root);
+struct btrfs_trans_handle *btrfs_join_transaction_freeze(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,