aboutsummaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_itable.c
diff options
context:
space:
mode:
authorVlad Apostolov <vapo@sgi.com>2006-09-28 11:04:31 +1000
committerTim Shimmin <tes@sgi.com>2006-09-28 11:04:31 +1000
commite132f54ce8660bbf34723cc12cb11e6f61d6fbac (patch)
tree70b188bd20af01adf9c801088213403e2025db0c /fs/xfs/xfs_itable.c
parent22de606a0b9623bf15752808f123848a65a6cc28 (diff)
[XFS] pv 955157, rv bnaujok - break the loop on EFAULT formatter() error
SGI-PV: 955157 SGI-Modid: xfs-linux-melb:xfs-kern:26869a Signed-off-by: Vlad Apostolov <vapo@sgi.com> Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_itable.c')
-rw-r--r--fs/xfs/xfs_itable.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_itable.c b/fs/xfs/xfs_itable.c
index b9edbc65f36..e338d6cf027 100644
--- a/fs/xfs/xfs_itable.c
+++ b/fs/xfs/xfs_itable.c
@@ -635,13 +635,13 @@ xfs_bulkstat(
ubleft, private_data,
bno, &ubused, dip, &fmterror);
if (fmterror == BULKSTAT_RV_NOTHING) {
- if (error == ENOMEM)
- ubleft = 0;
- else if (error) {
+ if (error == EFAULT) {
ubleft = 0;
rval = error;
break;
}
+ else if (error == ENOMEM)
+ ubleft = 0;
continue;
}
if (fmterror == BULKSTAT_RV_GIVEUP) {