freebsd: Fix ZFS_ENTER_UNMOUNTOK and ZFS_ENTER on FreeBSD
There was a typo in zfs_znode_impl. The two macros were lowercase instead of all caps, which caused compilation problems on FreeBSD.
This commit is contained in:
parent
6ee35af1a4
commit
a7d67aed05
|
@ -134,7 +134,7 @@ extern minor_t zfsdev_minor_alloc(void);
|
|||
/* Called on entry to each ZFS vnode and vfs operation */
|
||||
#define ZFS_ENTER(zfsvfs) ZFS_ENTER_ERROR(zfsvfs, EIO)
|
||||
|
||||
#define zfs_enter_unmountok zfs_enter
|
||||
#define ZFS_ENTER_UNMOUNTOK ZFS_ENTER
|
||||
|
||||
/* Must be called before exiting the vop */
|
||||
#define ZFS_EXIT(zfsvfs) ZFS_TEARDOWN_EXIT_READ(zfsvfs, FTAG)
|
||||
|
|
Loading…
Reference in New Issue