diff options
author | Kent Overstreet <[email protected]> | 2015-11-29 17:18:33 -0800 |
---|---|---|
committer | Jens Axboe <[email protected]> | 2015-12-30 20:23:06 -0700 |
commit | c5f1e5adf956e3ba82d204c7c141a75da9fa449a (patch) | |
tree | b8f09c4d77adb48ffef67ab304d5f47970a7a65d | |
parent | 2ef9ccbfcb90cf84bdba320a571b18b05c41101b (diff) |
bcache: Add a cond_resched() call to gc
Signed-off-by: Takashi Iwai <[email protected]>
Tested-by: Eric Wheeler <[email protected]>
Cc: Kent Overstreet <[email protected]>
Cc: [email protected]
Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r-- | drivers/md/bcache/btree.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/bcache/btree.c b/drivers/md/bcache/btree.c index 4a1179cbc52e..22b9e34ceb75 100644 --- a/drivers/md/bcache/btree.c +++ b/drivers/md/bcache/btree.c @@ -1741,6 +1741,7 @@ static void bch_btree_gc(struct cache_set *c) do { ret = btree_root(gc_root, c, &op, &writes, &stats); closure_sync(&writes); + cond_resched(); if (ret && ret != -EAGAIN) pr_warn("gc failed!"); |