diff options
author | Vlad Apostolov <vapo@sgi.com> | 2006-09-27 21:04:31 -0400 |
---|---|---|
committer | Tim Shimmin <tes@sgi.com> | 2006-09-27 21:04:31 -0400 |
commit | e132f54ce8660bbf34723cc12cb11e6f61d6fbac (patch) | |
tree | 70b188bd20af01adf9c801088213403e2025db0c /fs/xfs | |
parent | 22de606a0b9623bf15752808f123848a65a6cc28 (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')
-rw-r--r-- | fs/xfs/xfs_itable.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_itable.c b/fs/xfs/xfs_itable.c index b9edbc65f364..e338d6cf0273 100644 --- a/fs/xfs/xfs_itable.c +++ b/fs/xfs/xfs_itable.c | |||
@@ -635,13 +635,13 @@ xfs_bulkstat( | |||
635 | ubleft, private_data, | 635 | ubleft, private_data, |
636 | bno, &ubused, dip, &fmterror); | 636 | bno, &ubused, dip, &fmterror); |
637 | if (fmterror == BULKSTAT_RV_NOTHING) { | 637 | if (fmterror == BULKSTAT_RV_NOTHING) { |
638 | if (error == ENOMEM) | 638 | if (error == EFAULT) { |
639 | ubleft = 0; | ||
640 | else if (error) { | ||
641 | ubleft = 0; | 639 | ubleft = 0; |
642 | rval = error; | 640 | rval = error; |
643 | break; | 641 | break; |
644 | } | 642 | } |
643 | else if (error == ENOMEM) | ||
644 | ubleft = 0; | ||
645 | continue; | 645 | continue; |
646 | } | 646 | } |
647 | if (fmterror == BULKSTAT_RV_GIVEUP) { | 647 | if (fmterror == BULKSTAT_RV_GIVEUP) { |