From: Kent Overstreet Date: Wed, 26 Mar 2025 15:26:30 +0000 (-0400) Subject: bcachefs: Fix 'hung task' messages in btree node scan X-Git-Tag: block-6.15-20250403~4^2~26 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=ef488bb5d0095ab564241e8001545f49fcb7fa4f;p=linux-block.git bcachefs: Fix 'hung task' messages in btree node scan btree node scan has to wait on kthread workers that scan each device, potentially for awhile. We would like this to be interruptible, but we may need a different mechanism than signals for that - we've had bugs in the past where mounts were failing due to checking for signals, and no explanation on where they came from. Signed-off-by: Kent Overstreet --- diff --git a/fs/bcachefs/btree_node_scan.c b/fs/bcachefs/btree_node_scan.c index 678161321e42..de02c0e378c9 100644 --- a/fs/bcachefs/btree_node_scan.c +++ b/fs/bcachefs/btree_node_scan.c @@ -13,6 +13,7 @@ #include #include +#include #include struct find_btree_nodes_worker { @@ -313,7 +314,8 @@ static int read_btree_nodes(struct find_btree_nodes *f) wake_up_process(t); } err: - closure_sync(&cl); + while (closure_sync_timeout(&cl, sysctl_hung_task_timeout_secs * HZ / 2)) + ; return f->ret ?: ret; }