From: Nathan Scott Date: Thu, 18 May 2006 15:50:35 +0000 (+0000) Subject: Fix missed iput on realtime inodes in phase6 of repair. X-Git-Tag: v2.8.0~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=41a3704eaeafa0ca76f52ae6472a720e1c3b2f62;p=thirdparty%2Fxfsprogs-dev.git Fix missed iput on realtime inodes in phase6 of repair. Merge of master-melb:xfs-cmds:25965a by kenmcd. --- diff --git a/repair/phase6.c b/repair/phase6.c index 5297c8081..b3a421e93 100644 --- a/repair/phase6.c +++ b/repair/phase6.c @@ -470,7 +470,7 @@ _("can't access block %llu (fsbno %llu) of realtime bitmap inode %llu\n"), } libxfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_SYNC, 0); - + libxfs_iput(ip, 0); return(0); } @@ -540,7 +540,7 @@ _("can't access block %llu (fsbno %llu) of realtime summary inode %llu\n"), } libxfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_SYNC, 0); - + libxfs_iput(ip, 0); return(0); }