- Fix an assert now that the XLOCK no longer exists.

Sponsored by:	Isilon Systems, Inc.
This commit is contained in:
Jeff Roberson 2005-03-13 12:00:41 +00:00
parent b6ee8476d3
commit b5411d4fcb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=143501

View File

@ -80,10 +80,7 @@ ffs_update(vp, waitfor)
struct inode *ip;
int error;
#ifdef DEBUG_VFS_LOCKS
if ((vp->v_iflag & VI_XLOCK) == 0)
ASSERT_VOP_LOCKED(vp, "ffs_update");
#endif
ASSERT_VOP_LOCKED(vp, "ffs_update");
ufs_itimes(vp);
ip = VTOI(vp);
if ((ip->i_flag & IN_MODIFIED) == 0 && waitfor == 0)