aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_bmap.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2011-05-11 11:04:07 -0400
committerAlex Elder <aelder@sgi.com>2011-05-25 11:48:37 -0400
commit5690f92199956c0f2a2d9f718b5031e1300a1de1 (patch)
tree66ae28ac9f0fe4deae3452f81f244ae162a25fcb /fs/xfs/xfs_bmap.c
parent2f2b3220b0566692da14e06ea5fc0d697a78dc7c (diff)
xfs: do not use unchecked extent indices in xfs_bmapi
Make sure to only call xfs_iext_get_ext after we've validate the extent index when moving on to the next index in xfs_bmapi. Based on an earlier patch from Lachlan McIlroy. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Lachlan McIlroy <lmcilroy@redhat.com> Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_bmap.c')
-rw-r--r--fs/xfs/xfs_bmap.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/fs/xfs/xfs_bmap.c b/fs/xfs/xfs_bmap.c
index 130ec4fa5ea..af655c1d460 100644
--- a/fs/xfs/xfs_bmap.c
+++ b/fs/xfs/xfs_bmap.c
@@ -4825,12 +4825,13 @@ xfs_bmapi(
4825 /* 4825 /*
4826 * Else go on to the next record. 4826 * Else go on to the next record.
4827 */ 4827 */
4828 ep = xfs_iext_get_ext(ifp, ++lastx);
4829 prev = got; 4828 prev = got;
4830 if (lastx >= nextents) 4829 if (++lastx < nextents) {
4831 eof = 1; 4830 ep = xfs_iext_get_ext(ifp, lastx);
4832 else
4833 xfs_bmbt_get_all(ep, &got); 4831 xfs_bmbt_get_all(ep, &got);
4832 } else {
4833 eof = 1;
4834 }
4834 } 4835 }
4835 *nmap = n; 4836 *nmap = n;
4836 /* 4837 /*