diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2016-03-19 00:33:19 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2016-03-19 00:33:19 +0100 |
commit | 8213c15bc619e48cde6cd943fc75a825b520a165 (patch) | |
tree | b113c6d4bec8b227bbbb89d452cf335de9a23db2 /app-emulation/vmware-modules/files/279-3.15-01-vsock.patch | |
parent | app-emulation/vmware-workstation: Remove old (diff) | |
download | vmware-8213c15bc619e48cde6cd943fc75a825b520a165.tar.gz vmware-8213c15bc619e48cde6cd943fc75a825b520a165.tar.bz2 vmware-8213c15bc619e48cde6cd943fc75a825b520a165.zip |
app-emulation/vmware-modules: Remove old
Package-Manager: portage-2.2.28
Diffstat (limited to 'app-emulation/vmware-modules/files/279-3.15-01-vsock.patch')
-rw-r--r-- | app-emulation/vmware-modules/files/279-3.15-01-vsock.patch | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/app-emulation/vmware-modules/files/279-3.15-01-vsock.patch b/app-emulation/vmware-modules/files/279-3.15-01-vsock.patch deleted file mode 100644 index 9e8d9d1..0000000 --- a/app-emulation/vmware-modules/files/279-3.15-01-vsock.patch +++ /dev/null @@ -1,46 +0,0 @@ -removing the no longer existing second parameter to sk_data_ready -doesn't seem it ever served a purpose. - -diff -rupN vsock-only/linux/notify.c vsock-only.new/linux/notify.c ---- vsock-only/linux/notify.c 2013-11-05 23:33:27.000000000 -0500 -+++ vsock-only.new/linux/notify.c 2014-10-05 23:46:47.943304728 -0400 -@@ -515,8 +515,11 @@ VSockVmciHandleWrote(struct sock *sk, - vsk = vsock_sk(sk); - PKT_FIELD(vsk, sentWaitingRead) = FALSE; - #endif -- -+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0) -+ sk->sk_data_ready(sk); -+#else - sk->sk_data_ready(sk, 0); -+#endif - } - - -diff -rupN vsock-only/linux/notifyQState.c vsock-only.new/linux/notifyQState.c ---- vsock-only/linux/notifyQState.c 2013-11-05 23:33:27.000000000 -0500 -+++ vsock-only.new/linux/notifyQState.c 2014-10-05 23:46:33.231303931 -0400 -@@ -164,7 +164,11 @@ VSockVmciHandleWrote(struct sock *sk, - struct sockaddr_vm *dst, // IN: unused - struct sockaddr_vm *src) // IN: unused - { -+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0) -+ sk->sk_data_ready(sk); -+#else - sk->sk_data_ready(sk, 0); -+#endif - } - - -@@ -566,7 +570,11 @@ VSockVmciNotifyPktRecvPostDequeue(struct - } - - /* See the comment in VSockVmciNotifyPktSendPostEnqueue */ -+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0) -+ sk->sk_data_ready(sk); -+#else - sk->sk_data_ready(sk, 0); -+#endif - } - - return err; |