mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 17:17:04 -04:00
bcachefs: Add a kthread_should_stop() check to allocator thread
Turns out it's possible during shutdown for the allocator to get stuck spinning on bch2_invalidate_buckets() without hitting any of the other checks. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
committed by
Kent Overstreet
parent
a34782a066
commit
eff508b459
@@ -1104,6 +1104,8 @@ static int bch2_allocator_thread(void *arg)
|
||||
|
||||
while (1) {
|
||||
cond_resched();
|
||||
if (kthread_should_stop())
|
||||
break;
|
||||
|
||||
pr_debug("discarding %zu invalidated buckets",
|
||||
fifo_used(&ca->free_inc));
|
||||
|
||||
Reference in New Issue
Block a user