Merge "fs/dcache.c: fix spin lockup issue on nlru->lock"
This commit is contained in:
commit
9baa4699bd
1 changed files with 3 additions and 2 deletions
|
@ -1128,11 +1128,12 @@ void shrink_dcache_sb(struct super_block *sb)
|
|||
LIST_HEAD(dispose);
|
||||
|
||||
freed = list_lru_walk(&sb->s_dentry_lru,
|
||||
dentry_lru_isolate_shrink, &dispose, UINT_MAX);
|
||||
dentry_lru_isolate_shrink, &dispose, 1024);
|
||||
|
||||
this_cpu_sub(nr_dentry_unused, freed);
|
||||
shrink_dentry_list(&dispose);
|
||||
} while (freed > 0);
|
||||
cond_resched();
|
||||
} while (list_lru_count(&sb->s_dentry_lru) > 0);
|
||||
}
|
||||
EXPORT_SYMBOL(shrink_dcache_sb);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue