summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2020-08-12 15:08:17 -0400
committerKent Overstreet <kent.overstreet@gmail.com>2020-08-12 15:08:17 -0400
commit86fa1258a3ef59adccdd1534e55ef773b82c4cb7 (patch)
tree610133e424587dcef08179433873d79fc7018775
parent8fe5564bf84318ca1da3348bc340486c5440a168 (diff)
bcachefs: Add a cond_resched() to bch2_alloc_write()bcachefs-v5.7
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
-rw-r--r--fs/bcachefs/alloc_background.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/bcachefs/alloc_background.c b/fs/bcachefs/alloc_background.c
index 43b9f99194b9..9aa0b42b26b6 100644
--- a/fs/bcachefs/alloc_background.c
+++ b/fs/bcachefs/alloc_background.c
@@ -350,6 +350,8 @@ int bch2_alloc_write(struct bch_fs *c, unsigned flags, bool *wrote)
bch2_btree_iter_set_pos(iter, POS(i, first_bucket));
while (1) {
+ bch2_trans_cond_resched(&trans);
+
ret = bch2_alloc_write_key(&trans, iter, flags);
if (ret < 0 || ret == ALLOC_END)
break;