summaryrefslogtreecommitdiffstats
path: root/module/zfs/zfs_vfsops.c
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2011-01-05 14:27:30 -0800
committerBrian Behlendorf <[email protected]>2011-02-10 09:27:20 -0800
commit960e08fe3e2cdf5217996b9f42a01f7e20f2b97a (patch)
tree4b253ef28b86959a4398d7482c032e30e8b88bf5 /module/zfs/zfs_vfsops.c
parent7304b6e50f656fbf4b126a4e94deac174133851c (diff)
VFS: Add zfs_inode_update() helper
For the moment we have left ZFS unchanged and it updates many values as part of the znode. However, some of these values should be set in the inode. For the moment this is handled by adding a function called zfs_inode_update() which updates the inode based on the znode. This is considered a workaround until we can systematically go through the ZFS code and have it directly update the inode. At which point zfs_update_inode() can be dropped entirely. Keeping two copies of the same data isn't only inefficient it's a breeding ground for bugs.
Diffstat (limited to 'module/zfs/zfs_vfsops.c')
-rw-r--r--module/zfs/zfs_vfsops.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/module/zfs/zfs_vfsops.c b/module/zfs/zfs_vfsops.c
index ef433125a..4545c20e2 100644
--- a/module/zfs/zfs_vfsops.c
+++ b/module/zfs/zfs_vfsops.c
@@ -1942,6 +1942,9 @@ zfs_vget(vfs_t *vfsp, vnode_t **vpp, fid_t *fidp)
}
*vpp = ZTOV(zp);
+ if (*vpp)
+ zfs_inode_update(VTOZ(*vpp));
+
ZFS_EXIT(zfsvfs);
return (0);
}