summaryrefslogtreecommitdiffstats
path: root/remote/modules/vmware
diff options
context:
space:
mode:
authorSimon Rettberg2014-09-04 15:26:39 +0200
committerroot2014-09-04 15:26:39 +0200
commit8f53d2c379218f155e645f9d1fd3f78073c2bf6c (patch)
tree46b98e41d434a3b1317386922c58834df0c38514 /remote/modules/vmware
parent[pvs2-fr] fix startup sessionscript for pvs (diff)
downloadtm-scripts-8f53d2c379218f155e645f9d1fd3f78073c2bf6c.tar.gz
tm-scripts-8f53d2c379218f155e645f9d1fd3f78073c2bf6c.tar.xz
tm-scripts-8f53d2c379218f155e645f9d1fd3f78073c2bf6c.zip
[vanilla-kernel] New Module
Diffstat (limited to 'remote/modules/vmware')
-rw-r--r--remote/modules/vmware/patches/vmnet__3.13-3.13__1.0-10.0.2.patch (renamed from remote/modules/vmware/patches/vmnet__3.13-9.9__1.0-100.0.patch)0
-rw-r--r--remote/modules/vmware/patches/vmnet__3.13-9.9__1.0-10.0.2.patch27
2 files changed, 27 insertions, 0 deletions
diff --git a/remote/modules/vmware/patches/vmnet__3.13-9.9__1.0-100.0.patch b/remote/modules/vmware/patches/vmnet__3.13-3.13__1.0-10.0.2.patch
index 54607506..54607506 100644
--- a/remote/modules/vmware/patches/vmnet__3.13-9.9__1.0-100.0.patch
+++ b/remote/modules/vmware/patches/vmnet__3.13-3.13__1.0-10.0.2.patch
diff --git a/remote/modules/vmware/patches/vmnet__3.13-9.9__1.0-10.0.2.patch b/remote/modules/vmware/patches/vmnet__3.13-9.9__1.0-10.0.2.patch
new file mode 100644
index 00000000..54607506
--- /dev/null
+++ b/remote/modules/vmware/patches/vmnet__3.13-9.9__1.0-10.0.2.patch
@@ -0,0 +1,27 @@
+--- a/filter.c 2014-04-17 05:30:43.497846349 -0700
++++ b/filter.c 2014-04-17 05:30:41.445846394 -0700
+@@ -203,7 +203,11 @@
+ #endif
+
+ static unsigned int
++#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0)
+ VNetFilterHookFn(unsigned int hooknum, // IN:
++#else
++VNetFilterHookFn(const struct nf_hook_ops *ops, // IN:
++#endif
+ #ifdef VMW_NFHOOK_USES_SKB
+ struct sk_buff *skb, // IN:
+ #else
+@@ -252,7 +256,11 @@
+
+ /* When the host transmits, hooknum is VMW_NF_INET_POST_ROUTING. */
+ /* When the host receives, hooknum is VMW_NF_INET_LOCAL_IN. */
+- transmit = (hooknum == VMW_NF_INET_POST_ROUTING);
++ #if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0)
++ transmit = (hooknum == VMW_NF_INET_POST_ROUTING);
++ #else
++ transmit = (ops->hooknum == VMW_NF_INET_POST_ROUTING);
++ #endif
+
+ packetHeader = compat_skb_network_header(skb);
+ ip = (struct iphdr*)packetHeader;