aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiv Sardi <xaiki@sgi.com>2008-03-05 21:43:03 -0500
committerLachlan McIlroy <lachlan@redback.melbourne.sgi.com>2008-04-17 21:34:47 -0400
commite12070a5dca8bfeee352e9655ae79772a96b32f8 (patch)
tree76ebdb3044efec2699090ac70fe7aa9edbf1a311
parent4b119e21d0c66c22e8ca03df05d9de623d0eb50f (diff)
[XFS] actually check error returned by xfs_flush_pages, clean up and
bailout if fails. SGI-PV: 973041 SGI-Modid: xfs-linux-melb:xfs-kern:30462a Signed-off-by: Niv Sardi <xaiki@sgi.com> Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
-rw-r--r--fs/xfs/xfs_bmap.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/xfs/xfs_bmap.c b/fs/xfs/xfs_bmap.c
index 2def273855a2..87f646749817 100644
--- a/fs/xfs/xfs_bmap.c
+++ b/fs/xfs/xfs_bmap.c
@@ -5869,6 +5869,10 @@ xfs_getbmap(
5869 /* xfs_fsize_t last_byte = xfs_file_last_byte(ip); */ 5869 /* xfs_fsize_t last_byte = xfs_file_last_byte(ip); */
5870 error = xfs_flush_pages(ip, (xfs_off_t)0, 5870 error = xfs_flush_pages(ip, (xfs_off_t)0,
5871 -1, 0, FI_REMAPF); 5871 -1, 0, FI_REMAPF);
5872 if (error) {
5873 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
5874 return error;
5875 }
5872 } 5876 }
5873 5877
5874 ASSERT(whichfork == XFS_ATTR_FORK || ip->i_delayed_blks == 0); 5878 ASSERT(whichfork == XFS_ATTR_FORK || ip->i_delayed_blks == 0);