projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bfba8e5
)
fs/fat/fatent.c: add cond_resched() to fat_count_free_clusters()
author
Khazhismel Kumykov
<
[email protected]
>
Sat, 13 Oct 2018 04:34:40 +0000
(21:34 -0700)
committer
Greg Kroah-Hartman
<
[email protected]
>
Sat, 13 Oct 2018 07:31:03 +0000
(09:31 +0200)
On non-preempt kernels this loop can take a long time (more than 50 ticks)
processing through entries.
Link:
http://lkml.kernel.org/r/
[email protected]
Signed-off-by: Khazhismel Kumykov <
[email protected]
>
Acked-by: OGAWA Hirofumi <
[email protected]
>
Reviewed-by: Andrew Morton <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Greg Kroah-Hartman <
[email protected]
>
fs/fat/fatent.c
patch
|
blob
|
history
diff --git
a/fs/fat/fatent.c
b/fs/fat/fatent.c
index defc2168de915c23406fe869af1ca65834818402..f58c0cacc531df1c6c439325cb6c574cd704486d 100644
(file)
--- 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;