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:
Mateusz Piotrowski 2023-06-22 16:10:48 +00:00 committed by Geoff Amey
parent 6ee35af1a4
commit a7d67aed05
1 changed files with 1 additions and 1 deletions

View File

@ -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)