From: Mikulas Patocka Date: Thu, 9 May 2019 18:51:27 +0000 (-0600) Subject: brd: add cond_resched to brd_free_pages X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=936b33f7243fa1e54c8f4f2febd3472cc00e66fd;p=openwrt%2Fstaging%2Fblogic.git brd: add cond_resched to brd_free_pages The loop that frees all the pages can take unbounded amount of time, so add cond_resched() to it. Signed-off-by: Mikulas Patocka Signed-off-by: Jens Axboe --- diff --git a/drivers/block/brd.c b/drivers/block/brd.c index 17defbf4f332..2da615b45b31 100644 --- a/drivers/block/brd.c +++ b/drivers/block/brd.c @@ -152,6 +152,12 @@ static void brd_free_pages(struct brd_device *brd) pos++; + /* + * It takes 3.4 seconds to remove 80GiB ramdisk. + * So, we need cond_resched to avoid stalling the CPU. + */ + cond_resched(); + /* * This assumes radix_tree_gang_lookup always returns as * many pages as possible. If the radix-tree code changes,