summaryrefslogtreecommitdiff
path: root/fs/xfs/scrub/rmap_repair.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/scrub/rmap_repair.c')
-rw-r--r--fs/xfs/scrub/rmap_repair.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/xfs/scrub/rmap_repair.c b/fs/xfs/scrub/rmap_repair.c
index 6d40d6fbf1fa..c5212686f257 100644
--- a/fs/xfs/scrub/rmap_repair.c
+++ b/fs/xfs/scrub/rmap_repair.c
@@ -616,8 +616,7 @@ xrep_rmap_scan_inode(
int error;
/* Grab inode and lock it so we can scan it. */
- error = xfs_iget(mp, rr->sc->tp, ino,
- XFS_IGET_DONTCACHE | XFS_IGET_UNLINKED, 0, &ip);
+ error = xfs_iget(mp, rr->sc->tp, ino, XFS_IGET_UNLINKED, 0, &ip);
if (error)
return error;
@@ -637,7 +636,7 @@ xrep_rmap_scan_inode(
out_unlock:
xfs_iunlock(ip, lock_mode);
- xfs_irele(ip);
+ xchk_irele(rr->sc, ip);
return error;
}