]> git.baikalelectronics.ru Git - kernel.git/commit
mbcache2: limit cache size
authorJan Kara <jack@suse.cz>
Mon, 22 Feb 2016 17:33:03 +0000 (12:33 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 22 Feb 2016 17:33:03 +0000 (12:33 -0500)
commit6c91d9faaa5421541390d14204e8e0896b861e9b
tree40c4db4b8b362496ef6365bb676cd3591e4de485
parent86dc05342dbd442a67c34ccc18b9a2090a80c2f8
mbcache2: limit cache size

So far number of entries in mbcache is limited only by the pressure from
the shrinker. Since too many entries degrade the hash table and
generally we expect that caching more entries has diminishing returns,
limit number of entries the same way as in the old mbcache to 16 * hash
table size.

Once we exceed the desired maximum number of entries, we schedule a
backround work to reclaim entries. If the background work cannot keep up
and the number of entries exceeds two times the desired maximum, we
reclaim some entries directly when allocating a new entry.

Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/mbcache2.c