]> git.baikalelectronics.ru Git - kernel.git/commit
f2fs: fix to calculate max length of contiguous free slots correctly
authorChao Yu <chao2.yu@samsung.com>
Mon, 9 Mar 2015 09:33:16 +0000 (17:33 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Fri, 10 Apr 2015 22:08:40 +0000 (15:08 -0700)
commitcba02155d9b6b931ab396810a3539cf9fcef220a
tree1d4160e76968ff6329886e039065c8b13eab452e
parente19f935584183528d593c53182d4d38dc188c2ac
f2fs: fix to calculate max length of contiguous free slots correctly

When lookuping for creating, we will try to record the level of current dentry
hash table if current dentry has enough contiguous slots for storing name of new
file which will be created later, this can save our lookup time when add a link
into parent dir.

But currently in find_target_dentry, our current length of contiguous free slots
is not calculated correctly. This make us leaving some holes in dentry block
occasionally, it wastes our space of dentry block.

Let's refactor the lookup flow for max slots as following to fix this issue:
a) increase max_len if current slot is free;
b) update max_slots with max_len if max_len is larger than max_slots;
c) reset max_len to zero if current slot is not free.

Signed-off-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/dir.c