Announcement

Collapse
No announcement yet.

Possible Fix For VMWare Player/Workstation...

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Possible Fix For VMWare Player/Workstation...

    Thanks to Al Viro, and to coderus on the VMware forum, we now have a solution for vmnet and Kernel 3.19, as follows:
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    In vmnet-only/driver.c (lines 269, 1194, and 1195):
    Replace instances of f_dentry with f_path.dentry
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    In vmnet-only/userif.c (line 526):
    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);
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    I have not tried the above yet, still on 14.10...

    Jesse

    #2
    Does anybody know what about with the 4.2.0 kernel??

    Comment


      #3
      Originally posted by Alfons View Post
      Does anybody know what about with the 4.2.0 kernel??
      It was broken the last time I tried it, about six months ago. I subsequently set up qemu/KVM and have not had any need to fight vmware since them.

      Comment


        #4
        You got out in time.
        http://www.theregister.co.uk/2016/01...nt_team_fired/

        Comment


          #5
          Cony !!

          Comment


            #6
            Wow, I did not know about the VMWare development team getting the axe. Looks like I made my transition in the nick of time.

            Comment

            Working...
            X