Quantcast
Channel: VMware Communities: Message List
Viewing all articles
Browse latest Browse all 231085

Re: Linux host - Kernel 3.19 breaks VMware (vmnet)

$
0
0

Credits goes to Al Viro for solution.

 

replace

   return skb_copy_datagram_iovec(skb, 0, &iov, len);

with

   struct iov_iter to;

   iov_iter_init(&to, READ, &iov, 1, len);

   return skb_copy_datagram_iter(skb, 0, &to, len);

and everything compiled and working now


Viewing all articles
Browse latest Browse all 231085

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>