From: Lachlan McIlroy Date: Thu, 30 Oct 2008 05:50:35 +0000 (+1100) Subject: [XFS] Use xfs_idestroy() to cleanup an inode. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=d07c60e54fb7647d8247ae392f128e8ee8f3e5f3;p=deliverable%2Flinux.git [XFS] Use xfs_idestroy() to cleanup an inode. SGI-PV: 981498 SGI-Modid: xfs-linux-melb:xfs-kern:31927a Signed-off-by: Lachlan McIlroy Signed-off-by: David Chinner --- diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index b0c604e1bd47..2a158a26286a 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c @@ -886,7 +886,7 @@ xfs_iread( */ error = xfs_itobp(mp, tp, ip, &dip, &bp, bno, imap_flags, XFS_BUF_LOCK); if (error) { - kmem_zone_free(xfs_inode_zone, ip); + xfs_idestroy(ip); return error; }