diff options
author | Nathan Scott <nathans@sgi.com> | 2006-03-17 17:26:34 +1100 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-03-17 17:26:34 +1100 |
commit | ce9d37c257ceba5b4d089c544e4673546f647565 (patch) | |
tree | 20202556fc940c1b216cd8461258c6c25db1c0f8 /fs/xfs | |
parent | 238f4c5468656e3e8b1d39d75c1e4fd73592c1ea (diff) | |
download | blackbird-op-linux-ce9d37c257ceba5b4d089c544e4673546f647565.tar.gz blackbird-op-linux-ce9d37c257ceba5b4d089c544e4673546f647565.zip |
[XFS] Merge Yingpings fix for a vn_count assert failure during QA -
another ENOSPC condition.
SGI-PV: 950784
SGI-Modid: xfs-linux-melb:xfs-kern:25482a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_iops.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/linux-2.6/xfs_iops.c b/fs/xfs/linux-2.6/xfs_iops.c index 64c3395074de..af487437bd7e 100644 --- a/fs/xfs/linux-2.6/xfs_iops.c +++ b/fs/xfs/linux-2.6/xfs_iops.c @@ -491,6 +491,8 @@ xfs_vn_symlink( d_instantiate(dentry, ip); xfs_validate_fields(dir, &vattr); xfs_validate_fields(ip, &vattr); + } else { + xfs_cleanup_inode(dvp, cvp, dentry, 0); } } return -error; |