summaryrefslogtreecommitdiffstats
path: root/remote/modules/vmware/patches
diff options
context:
space:
mode:
authorSimon Rettberg2015-12-03 14:49:15 +0100
committerroot2015-12-03 14:49:15 +0100
commit0cbd41570f28031eae63ac82ddff69c7ab131fae (patch)
tree7738092badf44f7ed59275b9e533227268b2e272 /remote/modules/vmware/patches
parent[kernel-vanilla] Bump to 4.3 (diff)
downloadtm-scripts-0cbd41570f28031eae63ac82ddff69c7ab131fae.tar.gz
tm-scripts-0cbd41570f28031eae63ac82ddff69c7ab131fae.tar.xz
tm-scripts-0cbd41570f28031eae63ac82ddff69c7ab131fae.zip
[vmware] Bump version to 12.0.1
Diffstat (limited to 'remote/modules/vmware/patches')
-rw-r--r--remote/modules/vmware/patches/vmci__4.3-4.3__12.0.0.patch26
-rw-r--r--remote/modules/vmware/patches/vmmon__4.3-4.3__12.0.0.patch13
2 files changed, 39 insertions, 0 deletions
diff --git a/remote/modules/vmware/patches/vmci__4.3-4.3__12.0.0.patch b/remote/modules/vmware/patches/vmci__4.3-4.3__12.0.0.patch
new file mode 100644
index 00000000..05dae1b7
--- /dev/null
+++ b/remote/modules/vmware/patches/vmci__4.3-4.3__12.0.0.patch
@@ -0,0 +1,26 @@
+--- a/linux/driver.c 2015-09-14 21:07:49.751696932 +0200
++++ b/linux/driver.c 2015-09-14 22:10:48.015908198 +0200
+@@ -2467,8 +2467,6 @@
+ static void __exit
+ vmci_exit(void)
+ {
+- int retval;
+-
+ if (guestDeviceInit) {
+ pci_unregister_driver(&vmci_driver);
+ vfree(data_buffer);
+@@ -2480,12 +2478,8 @@
+
+ VMCI_HostCleanup();
+
+- retval = misc_deregister(&linuxState.misc);
+- if (retval) {
+- Warning(LGPFX "Module %s: error unregistering\n", VMCI_MODULE_NAME);
+- } else {
+- Log(LGPFX"Module %s: unloaded\n", VMCI_MODULE_NAME);
+- }
++ misc_deregister(&linuxState.misc);
++ Log(LGPFX"Module %s: unloaded\n", VMCI_MODULE_NAME);
+
+ hostDeviceInit = FALSE;
+ }
diff --git a/remote/modules/vmware/patches/vmmon__4.3-4.3__12.0.0.patch b/remote/modules/vmware/patches/vmmon__4.3-4.3__12.0.0.patch
new file mode 100644
index 00000000..3f5a950a
--- /dev/null
+++ b/remote/modules/vmware/patches/vmmon__4.3-4.3__12.0.0.patch
@@ -0,0 +1,13 @@
+--- a/linux/driver.c 2015-08-14 22:39:49.000000000 +0200
++++ b/linux/driver.c 2015-09-14 22:11:06.807909249 +0200
+@@ -387,9 +387,7 @@
+ #ifdef VMX86_DEVEL
+ unregister_chrdev(linuxState.major, linuxState.deviceName);
+ #else
+- if (misc_deregister(&linuxState.misc)) {
+- Warning("Module %s: error unregistering\n", linuxState.deviceName);
+- }
++ misc_deregister(&linuxState.misc);
+ #endif
+
+ Log("Module %s: unloaded\n", linuxState.deviceName);