Back out previous commit, bde@ provided an example of something this

breaks.
This commit is contained in:
Ken Smith 2005-02-02 14:21:01 +00:00
parent fcee8ae2e5
commit 87c29bf93e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=141143

View File

@ -254,12 +254,6 @@ ufs_open(struct vop_open_args *ap)
(ap->a_mode & (FWRITE | O_APPEND)) == FWRITE)
return (EPERM);
vnode_create_vobject(vp, DIP(ip, i_size), ap->a_td);
/*
* Set the access time - this catches normal open(2) of files
* as well as execve(2).
*/
ip->i_flag |= IN_ACCESS;
ufs_itimes(vp);
return (0);
}