diff options
author | David Chinner <dgc@sgi.com> | 2006-11-21 18:55:33 +1100 |
---|---|---|
committer | Tim Shimmin <tes@sgi.com> | 2006-11-21 18:55:33 +1100 |
commit | e5ffd2bb62c3f2c0d9f34e0d16fab6e2c8b056fb (patch) | |
tree | 5b3d07b4e8d5c9b51df143ad3caa02723231058d /fs | |
parent | d2133717d5f994cca970b5aeb9d4664feeb92ff4 (diff) | |
download | op-kernel-dev-e5ffd2bb62c3f2c0d9f34e0d16fab6e2c8b056fb.zip op-kernel-dev-e5ffd2bb62c3f2c0d9f34e0d16fab6e2c8b056fb.tar.gz |
[XFS] Stale the correct inode when freeing clusters.
SGI-PV: 958376
SGI-Modid: xfs-linux-melb:xfs-kern:27503a
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/xfs/xfs_inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index d72c80d..44dfac5 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c @@ -2258,7 +2258,7 @@ xfs_ifree_cluster( AIL_LOCK(mp,s); iip->ili_flush_lsn = iip->ili_item.li_lsn; AIL_UNLOCK(mp, s); - xfs_iflags_set(ip, XFS_ISTALE); + xfs_iflags_set(iip->ili_inode, XFS_ISTALE); pre_flushed++; } lip = lip->li_bio_list; |