aboutsummaryrefslogtreecommitdiff
path: root/emulators/open-vm-tools
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2022-04-20 14:54:12 +0000
committerRenato Botelho <garga@FreeBSD.org>2022-04-20 14:54:12 +0000
commit30dfe4eba542da9acfe9e6a6d738f1a24ec5a5b4 (patch)
tree919f46e532db61e1262a47c9f82e800c5f3c9a93 /emulators/open-vm-tools
parent71ec7cdb3d51f1a8c908488e1eae856d4fa45dbb (diff)
downloadports-30dfe4eba542da9acfe9e6a6d738f1a24ec5a5b4.tar.gz
ports-30dfe4eba542da9acfe9e6a6d738f1a24ec5a5b4.zip
emulators/open-vm-tools: Fix build on current
Since 8b83d7e0ee544, -Wunused-but-set-variable became a fatal error on CURRENT. Remove a couble of set-but-not-used variables and fix the build Sponsored by: Rubicon Communications, LLC ("Netgate")
Diffstat (limited to 'emulators/open-vm-tools')
-rw-r--r--emulators/open-vm-tools/files/patch-modules_freebsd_vmblock_vfsops.c28
1 files changed, 2 insertions, 26 deletions
diff --git a/emulators/open-vm-tools/files/patch-modules_freebsd_vmblock_vfsops.c b/emulators/open-vm-tools/files/patch-modules_freebsd_vmblock_vfsops.c
index 64629219c5fa..ba54239caecd 100644
--- a/emulators/open-vm-tools/files/patch-modules_freebsd_vmblock_vfsops.c
+++ b/emulators/open-vm-tools/files/patch-modules_freebsd_vmblock_vfsops.c
@@ -1,18 +1,6 @@
---- modules/freebsd/vmblock/vfsops.c.orig 2021-09-24 04:19:18 UTC
+--- modules/freebsd/vmblock/vfsops.c.orig 2022-03-04 21:01:24 UTC
+++ modules/freebsd/vmblock/vfsops.c
-@@ -124,6 +124,11 @@ VMBlockVFSMount(struct mount *mp, // IN: mount(
- char *pathname;
- int len, error = 0;
-
-+#if __FreeBSD_version >= 800087
-+ struct thread *td;
-+ td = curthread;
-+#endif
-+
- VMBLOCKDEBUG("VMBlockVFSMount(mp = %p)\n", (void *)mp);
-
- /*
-@@ -171,14 +176,22 @@ VMBlockVFSMount(struct mount *mp, // IN: mount(
+@@ -171,14 +171,22 @@ VMBlockVFSMount(struct mount *mp, // IN: mount(
* Find lower node and lock if not already locked.
*/
@@ -35,15 +23,3 @@
/*
* Check multi VMBlock mount to avoid `lock against myself' panic.
-@@ -276,6 +289,11 @@ VMBlockVFSUnmount(struct mount *mp, // IN: filesyst
- void *mntdata;
- int error;
- int flags = 0, removed = 0;
-+
-+#if __FreeBSD_version >= 800087
-+ struct thread *td;
-+ td = curthread;
-+#endif
-
- VMBLOCKDEBUG("VMBlockVFSUnmount: mp = %p\n", (void *)mp);
-