From: Khazhismel Kumykov Date: Sat, 13 Oct 2018 04:34:40 +0000 (-0700) Subject: fs/fat/fatent.c: add cond_resched() to fat_count_free_clusters() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ac081c3be3fae6d0cc3e1862507fca3862d30b67;p=linux.git fs/fat/fatent.c: add cond_resched() to fat_count_free_clusters() On non-preempt kernels this loop can take a long time (more than 50 ticks) processing through entries. Link: http://lkml.kernel.org/r/20181010172623.57033-1-khazhy@google.com Signed-off-by: Khazhismel Kumykov Acked-by: OGAWA Hirofumi Reviewed-by: Andrew Morton Signed-off-by: Andrew Morton Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/fat/fatent.c b/fs/fat/fatent.c index defc2168de915..f58c0cacc531d 100644 --- a/fs/fat/fatent.c +++ b/fs/fat/fatent.c @@ -682,6 +682,7 @@ int fat_count_free_clusters(struct super_block *sb) if (ops->ent_get(&fatent) == FAT_ENT_FREE) free++; } while (fat_ent_next(sbi, &fatent)); + cond_resched(); } sbi->free_clusters = free; sbi->free_clus_valid = 1;