From: Haicheng Li Date: Sun, 28 Apr 2013 11:16:06 +0000 (+0800) Subject: f2fs: fix inconsistent using of NM_WOUT_THRESHOLD X-Git-Tag: v3.10-rc1~45^2~9 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6cac3759ce118a87103ce4342e6de98215d01787;p=pandora-kernel.git f2fs: fix inconsistent using of NM_WOUT_THRESHOLD try_to_free_nats() is usually called with parameter nr_shrink as "nm_i->nat_cnt - NM_WOUT_THRESHOLD" by flush_nat_entries() during checkpointing process. However, this is inconsistent with the actual threshold check as "if (nm_i->nat_cnt < 2 * NM_WOUT_THRESHOLD)" , which will ignore the free_nats requests when NM_WOUT_THRESHOLD < nm_i->nat_cnt < 2 * NM_WOUT_THRESHOLD So fix the threshold check condition. Signed-off-by: Haicheng Li Signed-off-by: Jaegeuk Kim --- Reading git-diff-tree failed