diff options
Diffstat (limited to 'usr/src/uts/common/sys/vnode.h')
-rw-r--r-- | usr/src/uts/common/sys/vnode.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/src/uts/common/sys/vnode.h b/usr/src/uts/common/sys/vnode.h index 4fd3444bc0..904d7a80ec 100644 --- a/usr/src/uts/common/sys/vnode.h +++ b/usr/src/uts/common/sys/vnode.h @@ -912,7 +912,9 @@ extern uint_t pvn_vmodsort_supported; * Generally useful macros. */ #define VBSIZE(vp) ((vp)->v_vfsp->vfs_bsize) -#define VTOZ(vp) ((vp)->v_vfsp->vfs_zone) + +#define VTOZONE(vp) ((vp)->v_vfsp->vfs_zone) + #define NULLVP ((struct vnode *)0) #define NULLVPP ((struct vnode **)0) |