From: Josef Bacik Date: Fri, 3 Dec 2021 22:18:19 +0000 (-0500) Subject: btrfs: make should_throttle loop local in btrfs_truncate_inode_items X-Git-Tag: v6.1-rc5~1892^2~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e48dac7f6f4c0410aa38dbd59b991f2b24b286ae;p=platform%2Fkernel%2Flinux-starfive.git btrfs: make should_throttle loop local in btrfs_truncate_inode_items We reset this bool on every loop through the truncate loop, make this variable local to the loop. Reviewed-by: Filipe Manana Signed-off-by: Josef Bacik Reviewed-by: David Sterba Signed-off-by: David Sterba --- diff --git a/fs/btrfs/inode-item.c b/fs/btrfs/inode-item.c index ef1a9ef..0eeb5ea 100644 --- a/fs/btrfs/inode-item.c +++ b/fs/btrfs/inode-item.c @@ -473,7 +473,6 @@ int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans, int ret; u64 bytes_deleted = 0; bool be_nice = false; - bool should_throttle = false; ASSERT(control->inode || !control->clear_extent_range); ASSERT(new_size == 0 || control->min_type == BTRFS_EXTENT_DATA_KEY); @@ -523,6 +522,7 @@ search_again: while (1) { u64 clear_start = 0, clear_len = 0, extent_start = 0; + bool should_throttle = false; fi = NULL; leaf = path->nodes[0]; @@ -665,7 +665,6 @@ delete: control->last_size = new_size; break; } - should_throttle = false; if (del_item && extent_start != 0 && !control->skip_ref_updates) { struct btrfs_ref ref = { 0 };