View | Details | Raw Unified | Return to bug 255208 | Differences between
and this patch

Collapse All | Expand All

(-)b/emulators/virtualbox-ose-additions/Makefile (+1 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	virtualbox-ose
3
PORTNAME=	virtualbox-ose
4
PORTVERSION=	6.1.18
4
PORTVERSION=	6.1.18
5
PORTREVISION=	1
5
CATEGORIES=	emulators
6
CATEGORIES=	emulators
6
MASTER_SITES=	https://download.virtualbox.org/virtualbox/${PORTVERSION}/
7
MASTER_SITES=	https://download.virtualbox.org/virtualbox/${PORTVERSION}/
7
PKGNAMESUFFIX?=	-additions
8
PKGNAMESUFFIX?=	-additions
(-)b/emulators/virtualbox-ose/files/patch-src_VBox_Additions_freebsd_vboxvfs_vboxvfs__vnops.c (-1 / +4 lines)
Lines 1-6 Link Here
1
--- src/VBox/Additions/freebsd/vboxvfs/vboxvfs_vnops.c.orig	2021-01-07 15:34:22 UTC
1
--- src/VBox/Additions/freebsd/vboxvfs/vboxvfs_vnops.c.orig	2021-01-07 15:34:22 UTC
2
+++ src/VBox/Additions/freebsd/vboxvfs/vboxvfs_vnops.c
2
+++ src/VBox/Additions/freebsd/vboxvfs/vboxvfs_vnops.c
3
@@ -14,228 +14,1347 @@
3
@@ -14,228 +14,1350 @@
4
  * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
4
  * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
5
  * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
5
  * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
6
  */
6
  */
Lines 160-165 Link Here
160
+	.vop_write	= vboxfs_write,
160
+	.vop_write	= vboxfs_write,
161
+	.vop_bmap	= VOP_EOPNOTSUPP
161
+	.vop_bmap	= VOP_EOPNOTSUPP
162
 };
162
 };
163
+#if __FreeBSD_version > 1300068
164
+VFS_VOP_VECTOR_REGISTER(vboxfs_vnodeops);
165
+#endif
163
 
166
 
164
-static int vboxvfs_access(struct vop_access_args *ap)
167
-static int vboxvfs_access(struct vop_access_args *ap)
165
+static uint64_t
168
+static uint64_t

Return to bug 255208