[PATCH 1/10] xfs: remove redundant stat assignment int xfs_bulkstat_one_int
Jeff Liu
jeff.liu at oracle.com
Sat Dec 28 05:19:59 CST 2013
From: Jie Liu <jeff.liu at oracle.com>
Trivial fix to get rid of redundant BULKSTAT_RV_NOTHING assignment
in xfs_bulkstat_one_int().
Signed-off-by: Jie Liu <jeff.liu at oracle.com>
---
fs/xfs/xfs_itable.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/fs/xfs/xfs_itable.c b/fs/xfs/xfs_itable.c
index f463382..b5bb7b6 100644
--- a/fs/xfs/xfs_itable.c
+++ b/fs/xfs/xfs_itable.c
@@ -76,10 +76,8 @@ xfs_bulkstat_one_int(
error = xfs_iget(mp, NULL, ino,
(XFS_IGET_DONTCACHE | XFS_IGET_UNTRUSTED),
XFS_ILOCK_SHARED, &ip);
- if (error) {
- *stat = BULKSTAT_RV_NOTHING;
+ if (error)
goto out_free;
- }
ASSERT(ip != NULL);
ASSERT(ip->i_imap.im_blkno != 0);
@@ -136,7 +134,6 @@ xfs_bulkstat_one_int(
IRELE(ip);
error = formatter(buffer, ubsize, ubused, buf);
-
if (!error)
*stat = BULKSTAT_RV_DIDONE;
--
1.8.3.2
More information about the xfs
mailing list