]> git.baikalelectronics.ru Git - kernel.git/commit
ext4: use the nblocks arg to ext4_truncate_restart_trans()
authorAmir Goldstein <amir73il@gmail.com>
Mon, 28 Feb 2011 04:32:12 +0000 (23:32 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 28 Feb 2011 04:32:12 +0000 (23:32 -0500)
commit0101b20fbc3d9efe3e375fa849341f614d59eb55
tree101f4a24a8f57f798a74eb097c424b882f872bf8
parentc0b6c7fb50919c67db40ca7f30881ddc7ce1a2df
ext4: use the nblocks arg to ext4_truncate_restart_trans()

nblocks is passed into ext4_truncate_restart_trans() from
ext4_ext_truncate_extend_restart() with a value different from the default
blocks_for_truncate(), but is being ignored.

The two other calls to ext4_truncate_restart_trans() already pass the
default value, which is then being recalculated inside the function.

Fix the problem by using the passed argument.

Signed-off-by: Amir Goldstein <amir73il@users.sf.net>
fs/ext4/inode.c