ext4: use filemap_write_and_wait_range() correctly in collapse range
authorLukas Czerner <[email protected]>
Fri, 18 Apr 2014 14:41:52 +0000 (10:41 -0400)
committerTheodore Ts'o <[email protected]>
Fri, 18 Apr 2014 14:41:52 +0000 (10:41 -0400)
commit1a66c7c3bea52ba0f7596b8940d74fce75281d16
tree6fe5d06b204b66cae24d572de0dd9c5979b897ac
parent694c793fc1ade0946149c5f8d43f71e0728c4e81
ext4: use filemap_write_and_wait_range() correctly in collapse range

Currently we're passing -1 as lend argumnet for
filemap_write_and_wait_range() which is wrong since lend is signed type
so it would cause some confusion and we might not write_and_wait for the
entire range we're expecting to write.

Fix it by using LLONG_MAX instead.

Signed-off-by: Lukas Czerner <[email protected]>
Signed-off-by: "Theodore Ts'o" <[email protected]>
fs/ext4/extents.c