提交 18e35e0a 编写于 作者: C Chris Mason

Btrfs: Throttle less often waiting for snapshots to delete

Signed-off-by: NChris Mason <chris.mason@oracle.com>
上级 f87f057b
...@@ -2535,6 +2535,10 @@ static int noinline walk_down_tree(struct btrfs_trans_handle *trans, ...@@ -2535,6 +2535,10 @@ static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
root_gen, 0, 0, 1); root_gen, 0, 0, 1);
BUG_ON(ret); BUG_ON(ret);
mutex_unlock(&root->fs_info->alloc_mutex); mutex_unlock(&root->fs_info->alloc_mutex);
atomic_inc(&root->fs_info->throttle_gen);
wake_up(&root->fs_info->transaction_throttle);
continue; continue;
} }
/* /*
...@@ -2603,7 +2607,6 @@ static int noinline walk_down_tree(struct btrfs_trans_handle *trans, ...@@ -2603,7 +2607,6 @@ static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
root_owner = btrfs_header_owner(parent); root_owner = btrfs_header_owner(parent);
root_gen = btrfs_header_generation(parent); root_gen = btrfs_header_generation(parent);
mutex_lock(&root->fs_info->alloc_mutex); mutex_lock(&root->fs_info->alloc_mutex);
ret = __btrfs_free_extent(trans, root, bytenr, blocksize, ret = __btrfs_free_extent(trans, root, bytenr, blocksize,
root_owner, root_gen, 0, 0, 1); root_owner, root_gen, 0, 0, 1);
...@@ -2726,7 +2729,6 @@ int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root ...@@ -2726,7 +2729,6 @@ int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
} }
} }
while(1) { while(1) {
atomic_inc(&root->fs_info->throttle_gen);
wret = walk_down_tree(trans, root, path, &level); wret = walk_down_tree(trans, root, path, &level);
if (wret > 0) if (wret > 0)
break; break;
...@@ -2742,6 +2744,7 @@ int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root ...@@ -2742,6 +2744,7 @@ int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
ret = -EAGAIN; ret = -EAGAIN;
break; break;
} }
atomic_inc(&root->fs_info->throttle_gen);
wake_up(&root->fs_info->transaction_throttle); wake_up(&root->fs_info->transaction_throttle);
} }
for (i = 0; i <= orig_level; i++) { for (i = 0; i <= orig_level; i++) {
......
...@@ -211,11 +211,9 @@ static void throttle_on_drops(struct btrfs_root *root) ...@@ -211,11 +211,9 @@ static void throttle_on_drops(struct btrfs_root *root)
{ {
struct btrfs_fs_info *info = root->fs_info; struct btrfs_fs_info *info = root->fs_info;
harder:
if (atomic_read(&info->throttles)) { if (atomic_read(&info->throttles)) {
DEFINE_WAIT(wait); DEFINE_WAIT(wait);
int thr; int thr;
int harder_count = 0;
thr = atomic_read(&info->throttle_gen); thr = atomic_read(&info->throttle_gen);
do { do {
...@@ -228,18 +226,6 @@ static void throttle_on_drops(struct btrfs_root *root) ...@@ -228,18 +226,6 @@ static void throttle_on_drops(struct btrfs_root *root)
schedule(); schedule();
finish_wait(&info->transaction_throttle, &wait); finish_wait(&info->transaction_throttle, &wait);
} while (thr == atomic_read(&info->throttle_gen)); } while (thr == atomic_read(&info->throttle_gen));
if (harder_count < 5 &&
info->total_ref_cache_size > 1 * 1024 * 1024) {
harder_count++;
goto harder;
}
if (harder_count < 10 &&
info->total_ref_cache_size > 5 * 1024 * 1024) {
harder_count++;
goto harder;
}
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册