diff options
author | jeff <jeff@FreeBSD.org> | 2005-04-12 00:44:46 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2005-04-12 00:44:46 +0000 |
commit | 49b03c82e8f0e1c9d7c4d09efe77e05ef84f9675 (patch) | |
tree | 7f0829a0de912a31e800353899180bf4e3bc25f6 | |
parent | e1d3e5ff388a67059e9b926388a58ab51bb0fe8d (diff) | |
download | FreeBSD-src-49b03c82e8f0e1c9d7c4d09efe77e05ef84f9675.zip FreeBSD-src-49b03c82e8f0e1c9d7c4d09efe77e05ef84f9675.tar.gz |
- Add the mising ASSERT_VOP_ELOCKED code in the !DEBUG_VFS_LOCKS case.
Pointy hat to: me
-rw-r--r-- | sys/sys/vnode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index e1f1c6d..e4090f7 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -514,8 +514,8 @@ void vop_unlock_pre(void *a); #define ASSERT_VI_LOCKED(vp, str) #define ASSERT_VI_UNLOCKED(vp, str) -#if 0 #define ASSERT_VOP_ELOCKED(vp, str) +#if 0 #define ASSERT_VOP_ELOCKED_OTHER(vp, str) #endif #define ASSERT_VOP_LOCKED(vp, str) |