diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2021-11-06 00:18:56 +0100 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2021-11-06 10:25:45 +0100 |
commit | f3506eee81d1f700d9ee2d2f4a88fddb669ec032 (patch) | |
tree | 6edb05823f005e0581782b4c9a704817f950c13f /fs/gfs2 | |
parent | 49462e2be119d38c5eb5759d0d1b712df3a41239 (diff) | |
download | linux-f3506eee81d1f700d9ee2d2f4a88fddb669ec032.tar.bz2 |
gfs2: Fix length of holes reported at end-of-file
Fix the length of holes reported at the end of a file: the length is
relative to the beginning of the extent, not the seek position which is
rounded down to the filesystem block size.
This bug went unnoticed for some time, but is now caught by the
following assertion in iomap_iter_done():
WARN_ON_ONCE(iter->iomap.offset + iter->iomap.length <= iter->pos)
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/bmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/bmap.c b/fs/gfs2/bmap.c index 7235d539e969..d67108489148 100644 --- a/fs/gfs2/bmap.c +++ b/fs/gfs2/bmap.c @@ -940,7 +940,7 @@ do_alloc: else if (height == ip->i_height) ret = gfs2_hole_size(inode, lblock, len, mp, iomap); else - iomap->length = size - pos; + iomap->length = size - iomap->offset; } else if (flags & IOMAP_WRITE) { u64 alloc_size; |