View | Details | Raw Unified | Return to bug 226073
Collapse All | Expand All

(-)files/patch-src-VBox-Additions-common-crOpenGL-egl.c (+9 lines)
Line 0 Link Here
1
--- src/VBox/Additions/common/crOpenGL/egl.c	2018-01-15 09:49:53
2
+++ src/VBox/Additions/common/crOpenGL/egl.c	2018-02-20 10:56:16
3
@@ -347,5 +347,5 @@
4
         for (pAttrib2 = pAttrib + 2; *pAttrib2 != EGL_NONE; pAttrib2 += 2)
5
             if (*pAttrib2 == *pAttrib)
6
-                fSkip == true;
7
+                fSkip = true;
8
         if (fSkip)
9
             continue;
(-)files/patch-src_VBox_Additions_freebsd_vboxvfs_vboxvfs__vfsops.c (-2 / +1 lines)
Lines 11-17 Link Here
11
  *
11
  *
12
  * This file is part of VirtualBox Open Source Edition (OSE), as
12
  * This file is part of VirtualBox Open Source Edition (OSE), as
13
  * available from http://www.virtualbox.org. This file is free software;
13
  * available from http://www.virtualbox.org. This file is free software;
14
@@ -14,245 +9,479 @@
14
@@ -14,245 +9,478 @@
15
  * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15
  * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16
  * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16
  * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17
  */
17
  */
Lines 466-472 Link Here
466
+
466
+
467
+	MNT_ILOCK(mp);
467
+	MNT_ILOCK(mp);
468
+	mp->mnt_data = vboxfsmp;
468
+	mp->mnt_data = vboxfsmp;
469
+	bzero(&mp->mnt_stat.f_fsid, sizeof(&mp->mnt_stat.f_fsid));
470
+	/* f_fsid is int32_t but serial is uint32_t, convert */
469
+	/* f_fsid is int32_t but serial is uint32_t, convert */
471
+	memcpy(&mp->mnt_stat.f_fsid, &fsinfo.serial, sizeof(mp->mnt_stat.f_fsid));
470
+	memcpy(&mp->mnt_stat.f_fsid, &fsinfo.serial, sizeof(mp->mnt_stat.f_fsid));
472
+	mp->mnt_flag |= MNT_LOCAL;
471
+	mp->mnt_flag |= MNT_LOCAL;

Return to bug 226073