]> git.baikalelectronics.ru Git - kernel.git/commit
ext4: use filemap_write_and_wait_range() correctly in collapse range
authorLukas Czerner <lczerner@redhat.com>
Fri, 18 Apr 2014 14:41:52 +0000 (10:41 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 18 Apr 2014 14:41:52 +0000 (10:41 -0400)
commita00781c00e6e0b5a45f7a7c9853d3abda7fc6c18
tree6fe5d06b204b66cae24d572de0dd9c5979b897ac
parent5559e6a6bba27cb16a5cc12935f08009fea157ee
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 <lczerner@redhat.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/extents.c