diff options
author | Mateusz Guzik <mjg@FreeBSD.org> | 2020-01-03 22:47:31 +0000 |
---|---|---|
committer | Mateusz Guzik <mjg@FreeBSD.org> | 2020-01-03 22:47:31 +0000 |
commit | 04d88d154d99b2d66da8d7fcba0a33118c26379d (patch) | |
tree | 41d3495d7f7696ea1e7693fac0e881231e88cd33 | |
parent | b249ce48ea5560afdcff57e72a9880b7d3132434 (diff) | |
download | src-04d88d154d99b2d66da8d7fcba0a33118c26379d.tar.gz src-04d88d154d99b2d66da8d7fcba0a33118c26379d.zip |
vfs: add a file missed in r356337
Notes
Notes:
svn path=/head/; revision=356338
-rw-r--r-- | cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h b/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h index 652458ea309c..6f1a17f27852 100644 --- a/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h +++ b/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h @@ -526,7 +526,7 @@ extern int fop_getattr(vnode_t *vp, vattr_t *vap); #define VN_RELE_ASYNC(vp, taskq) vn_close(vp, 0, NULL, NULL) #define vn_lock(vp, type) -#define VOP_UNLOCK(vp, type) +#define VOP_UNLOCK(vp) extern int vn_open(char *path, int x1, int oflags, int mode, vnode_t **vpp, int x2, int x3); |