<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Cannot compile vmnet kernel module on kernel 6.4.10 in VMware Workstation Pro Discussions</title>
    <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983865#M182525</link>
    <description>&lt;P&gt;of course I have all of those packages installed since already used kubecek patch since previous kernel (before 6.4.10). but it fail since 6.4.10 (now I'm use 6.4.11).&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[agun76@fedora ~]$ rpm -qa | grep kernel-devel&lt;BR /&gt;kernel-devel-6.4.9-200.fc38.x86_64&lt;BR /&gt;kernel-devel-6.4.10-200.fc38.x86_64&lt;BR /&gt;kernel-devel-6.4.11-200.fc38.x86_64&lt;BR /&gt;kernel-devel-matched-6.4.11-200.fc38.x86_64&lt;BR /&gt;[agun76@fedora ~]$ rpm -qa | grep kernel-headers&lt;BR /&gt;kernel-headers-6.4.4-200.fc38.x86_64&lt;BR /&gt;[agun76@fedora ~]$ rpm -qa | grep linux-firmware&lt;BR /&gt;linux-firmware-whence-20230804-153.fc38.noarch&lt;BR /&gt;linux-firmware-20230804-153.fc38.noarch&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 25 Aug 2023 01:10:48 GMT</pubDate>
    <dc:creator>agun76</dc:creator>
    <dc:date>2023-08-25T01:10:48Z</dc:date>
    <item>
      <title>Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2982156#M182354</link>
      <description>&lt;H2&gt;Problem&lt;/H2&gt;&lt;P&gt;Building of vmnet module fails in newer kernel versions. For me it failed in kernel version 6.4.10-arch1-1. (Yes I use Archlinux)&lt;/P&gt;&lt;P&gt;I compiled with:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;vmware-modconfig --console --install-all&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;/tmp/modconfig-7XKYCP/vmnet-only/bridge.c: In function ‘VNetBridgeSendLargePacket’:
/tmp/modconfig-7XKYCP/vmnet-only/bridge.c:1413:11: error: implicit declaration of function ‘skb_gso_segment’; did you mean ‘tcp_gso_segment’? [-Werror=implicit-function-declaration]
1413 | segs = skb_gso_segment(skb, 0);
| ^~~~~~~~~~~~~~~
| tcp_gso_segment
/tmp/modconfig-7XKYCP/vmnet-only/bridge.c:1413:9: warning: assignment to ‘struct sk_buff *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
1413 | segs = skb_gso_segment(skb, 0);
| ^
cc1: some warnings being treated as errors
make[2]: *** [scripts/Makefile.build:252: /tmp/modconfig-7XKYCP/vmnet-only/bridge.o] Error 1
make[1]: *** [Makefile:2032: /tmp/modconfig-7XKYCP/vmnet-only] Error 2
make: *** [Makefile:117: vmnet.ko] Error 2
make: Leaving directory '/tmp/modconfig-7XKYCP/vmnet-only'
Unable to install all modules. See log for details.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Analysis&lt;/H2&gt;&lt;P&gt;I figured out that in Linux kernel commit&amp;nbsp;&lt;A href="https://github.com/torvalds/linux/commit/d457a0e329b0bfd3a1450e0b1a18cd2b47a25a08" target="_blank" rel="noopener"&gt;https://github.com/torvalds/linux/commit/d457a0e329b0bfd3a1450e0b1a18cd2b47a25a08&lt;/A&gt;&amp;nbsp;there was a change.&lt;/P&gt;&lt;P&gt;They moved code (including the function&amp;nbsp;&lt;SPAN&gt;skb_gso_segment) from one "header" to another (&amp;lt;linux/inetdevice.h&amp;gt; to &amp;lt;net/gso.h&amp;gt;).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Commit message: "Move declarations into include/net/gso.h and code into net/core/gso.c"&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;H2&gt;Solution&lt;/H2&gt;&lt;P&gt;In bridge.c one needs to add #include &amp;lt;&lt;SPAN&gt;net/gso.h&lt;/SPAN&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;How? I bet You are lazy... Assuming You have installed the .bundle and just want to compile... Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;# Cd to te dir where the vmware modules are.
cd /usr/lib/vmware/modules/source
# Unpack vmnet.
tar -xvf vmnet.tar
# Add the missing include (code is just there now)
sed -i '46 a#include &amp;lt;net/gso.h&amp;gt;' vmnet-only/bridge.c
# Backup original vmnet.tar
mv vmnet.tar vmnet.tar.original
# Pack the patched vmnet.
tar -cf vmnet.tar vmnet-only&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now if you are running&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;vmware-modconfig --console --install-all&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;again everything should work.&lt;/P&gt;&lt;H2&gt;Disclaimer&lt;/H2&gt;&lt;P&gt;Since it is a real pain to let You vmware guys know of a bug. I at least try to help people here. I couldn't figure a way to send You this...&lt;/P&gt;&lt;P&gt;Hope this helps&amp;nbsp;‌‌&lt;img class="lia-deferred-image lia-image-emoji" src="https://communities.vmware.com/html/@514D6166980A9CA4E36DF10C274F31B3/emoticons/1f600.png" alt=":grinning_face:" title=":grinning_face:" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2023 11:18:53 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2982156#M182354</guid>
      <dc:creator>nikjoesta</dc:creator>
      <dc:date>2023-08-14T11:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2982237#M182369</link>
      <description>&lt;P&gt;Thanks a lot, I was having the same on Mint running the latest Liquorix kernel.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2023 23:21:24 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2982237#M182369</guid>
      <dc:creator>ci4ic4</dc:creator>
      <dc:date>2023-08-14T23:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2982249#M182371</link>
      <description>&lt;P&gt;Thank you! This worked for me, running Fedora 38.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2023 02:48:16 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2982249#M182371</guid>
      <dc:creator>aalexa78</dc:creator>
      <dc:date>2023-08-15T02:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2982305#M182382</link>
      <description>&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;I was facing same issue&lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2023 11:38:50 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2982305#M182382</guid>
      <dc:creator>Hyphaed</dc:creator>
      <dc:date>2023-08-15T11:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2982485#M182394</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I informed &lt;SPAN class=""&gt;Michal Kubecek: &lt;A href="https://github.com/mkubecek/vmware-host-modules/issues/209" target="_blank" rel="noopener"&gt;https://github.com/mkubecek/vmware-host-modules/issues/209&lt;/A&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2023 12:55:40 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2982485#M182394</guid>
      <dc:creator>rakotomandimby</dc:creator>
      <dc:date>2023-08-16T12:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2982967#M182452</link>
      <description>&lt;P&gt;still not work on my fedora with 6.4.10 kernel with the following error message :&lt;BR /&gt;&lt;SPAN&gt;Skipping BTF generation for /home/agun76/software/vmware-host-modules-workstation-17.0.2/vmmon-only/vmmon.ko due to unavailability of vmlinux&lt;BR /&gt;make[2]: Leaving directory '/usr/src/kernels/6.4.10-200.fc38.x86_64'&lt;BR /&gt;make -C $PWD SRCROOT=$PWD/. \&lt;BR /&gt;&lt;/SPAN&gt;...&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Skipping BTF generation for /home/agun76/software/vmware-host-modules-workstation-17.0.2/vmnet-only/vmnet.ko due to unavailability of vmlinux&lt;BR /&gt;make[2]: Leaving directory '/usr/src/kernels/6.4.10-200.fc38.x86_64'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I already copy all the latest vmmon-only and vmnet-only from kubecek github and make sure the followng line :&lt;BR /&gt;#include &amp;lt;net/gso.h&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;already available in file : vmnet-only/bridge.c&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;any idea ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2023 03:35:59 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2982967#M182452</guid>
      <dc:creator>agun76</dc:creator>
      <dc:date>2023-08-19T03:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983060#M182457</link>
      <description>&lt;P&gt;I also couldn't get it to build under Fedora 6.4.11. I don't know if it should have worked at all, as the machine I was testing on was actually a VMWare guest, so there was no VMWare workstation installed at all, I downloaded the sources as described above.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2023 21:03:05 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983060#M182457</guid>
      <dc:creator>ci4ic4</dc:creator>
      <dc:date>2023-08-19T21:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983075#M182459</link>
      <description>&lt;P&gt;You might wanna read that:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.reddit.com/r/openSUSE/comments/pwxs3i/btf_file_not_generated_because_vmlinux_could_not/?rdt=43204" target="_self"&gt;https://www.reddit.com/r/openSUSE/comments/pwxs3i/btf_file_not_generated_because_vmlinux_could_not/?rdt=43204&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Long story short:&lt;/P&gt;&lt;P&gt;They changed the location of the file 'vmlinux.xz'&lt;/P&gt;&lt;P&gt;try&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ln -sf /usr/lib/modules/$(uname -r)/vmlinux.xz /boot/&lt;/P&gt;&lt;P&gt;&lt;A href="https://askubuntu.com/questions/1348250/skipping-btf-generation-xxx-due-to-unavailability-of-vmlinux-on-ubuntu-21-04" target="_self"&gt;https://askubuntu.com/questions/1348250/skipping-btf-generation-xxx-due-to-unavailability-of-vmlinux-on-ubuntu-21-04&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Aug 2023 00:13:58 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983075#M182459</guid>
      <dc:creator>nikjoesta</dc:creator>
      <dc:date>2023-08-20T00:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983092#M182463</link>
      <description>&lt;P&gt;Thanks for the response, but in my system (fedora 38 with kernel 6.4.10) file :&amp;nbsp;&lt;SPAN&gt;vmlinux.xz, is not exist in&amp;nbsp;/usr/lib/modules/$(uname -r)/.&lt;BR /&gt;&lt;BR /&gt;i didn't see either in my previous kernel directory.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Aug 2023 06:46:02 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983092#M182463</guid>
      <dc:creator>agun76</dc:creator>
      <dc:date>2023-08-20T06:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983252#M182478</link>
      <description>&lt;P&gt;&lt;a href="https://communities.vmware.com/t5/user/viewprofilepage/user-id/5638156"&gt;@agun76&lt;/a&gt;, dont copy individual files from &lt;A href="https://github.com/mkubecek/vmware-host-modules" target="_blank"&gt;https://github.com/mkubecek/vmware-host-modules&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Clone the repo, checkout &lt;U&gt;&lt;STRONG&gt;the right branch&lt;/STRONG&gt;&lt;/U&gt; and pull, then "make ; sudo make install".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 10:27:18 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983252#M182478</guid>
      <dc:creator>rakotomandimby</dc:creator>
      <dc:date>2023-08-21T10:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983374#M182489</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.vmware.com/t5/user/viewprofilepage/user-id/1664943"&gt;@rakotomandimby&lt;/a&gt;&amp;nbsp;for the response. actually I did it before, and I try to upgrade to the latest kernel 6.4.11, get the source and make it. but the result is the same :&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;[agun76@fedora vmware-host-modules]$ wget &lt;A href="https://github.com/mkubecek/vmware-host-modules/archive/workstation-17.0.2.tar.gz" target="_blank"&gt;https://github.com/mkubecek/vmware-host-modules/archive/workstation-17.0.2.tar.gz&lt;/A&gt;&lt;BR /&gt;--2023-08-22 07:53:15-- &amp;nbsp;&lt;A href="https://github.com/mkubecek/vmware-host-modules/archive/workstation-17.0.2.tar.gz" target="_blank"&gt;https://github.com/mkubecek/vmware-host-modules/archive/workstation-17.0.2.tar.gz&lt;/A&gt;&lt;BR /&gt;Resolving github.com (github.com)... 20.205.243.166&lt;BR /&gt;Connecting to github.com (github.com)|20.205.243.166|:443... connected.&lt;BR /&gt;HTTP request sent, awaiting response... 302 Found&lt;BR /&gt;Location: &lt;A href="https://codeload.github.com/mkubecek/vmware-host-modules/tar.gz/refs/heads/workstation-17.0.2" target="_blank"&gt;https://codeload.github.com/mkubecek/vmware-host-modules/tar.gz/refs/heads/workstation-17.0.2&lt;/A&gt; [following]&lt;BR /&gt;--2023-08-22 07:53:16-- &amp;nbsp;&lt;A href="https://codeload.github.com/mkubecek/vmware-host-modules/tar.gz/refs/heads/workstation-17.0.2" target="_blank"&gt;https://codeload.github.com/mkubecek/vmware-host-modules/tar.gz/refs/heads/workstation-17.0.2&lt;/A&gt;&lt;BR /&gt;Resolving codeload.github.com (codeload.github.com)... 20.205.243.165&lt;BR /&gt;Connecting to codeload.github.com (codeload.github.com)|20.205.243.165|:443... connected.&lt;BR /&gt;HTTP request sent, awaiting response... 200 OK&lt;BR /&gt;Length: unspecified [application/x-gzip]&lt;BR /&gt;Saving to: 'workstation-17.0.2.tar.gz'&lt;BR /&gt;&lt;BR /&gt;workstation-17.0.2.tar.gz &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;[ &amp;nbsp;&amp;lt;=&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;] 470.78K &amp;nbsp;1.47MB/s &amp;nbsp;&amp;nbsp;&amp;nbsp;in 0.3s &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[agun76@fedora vmware-host-modules]$ tar -xzf workstation-17.0.2.tar.gz &amp;nbsp;&lt;BR /&gt;[agun76@fedora vmware-host-modules]$ cd vmware-host-modules-workstation-17.0.2/&lt;BR /&gt;[agun76@fedora vmware-host-modules-workstation-17.0.2]$ make&lt;BR /&gt;make -C vmmon-only &amp;nbsp;&lt;BR /&gt;make[1]: Entering directory '/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only'&lt;BR /&gt;Using kernel build system.&lt;BR /&gt;make -C /lib/modules/6.4.11-200.fc38.x86_64/build/include/.. M=$PWD SRCROOT=$PWD/. \&lt;BR /&gt;&amp;nbsp;MODULEBUILDDIR= modules&lt;BR /&gt;make[2]: Entering directory '/usr/src/kernels/6.4.11-200.fc38.x86_64'&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/linux/driver.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/linux/driverLog.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/linux/hostif.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/common/apic.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/common/comport.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/common/cpuid.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/common/crosspage.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/common/memtrack.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/common/moduleloop.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/common/phystrack.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/common/sharedAreaVmmon.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/common/statVarsVmmon.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/common/task.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/common/vmx86.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/bootstrap/bootstrap.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/bootstrap/monLoader.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/bootstrap/monLoaderVmmon.o&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/bootstrap/vmmblob.o&lt;BR /&gt;&amp;nbsp;LD [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/vmmon.o&lt;BR /&gt;&amp;nbsp;MODPOST /home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/Module.symvers&lt;BR /&gt;&amp;nbsp;CC [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/vmmon.mod.o&lt;BR /&gt;&amp;nbsp;LD [M] &amp;nbsp;/home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/vmmon.ko&lt;BR /&gt;&amp;nbsp;BTF [M] /home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/vmmon.ko&lt;BR /&gt;&lt;STRONG&gt;Skipping BTF generation for /home/agun76/software/vmware-host-modules/vmware-host-modules-workstation-17.0.2/vmmon-only/vmmon.ko due to unavailability of vmlinux&lt;/STRONG&gt;&lt;BR /&gt;make[2]: Leaving directory '/usr/src/kernels/6.4.11-200.fc38.x86_64'&lt;BR /&gt;make -C $PWD SRCROOT=$PWD/. \&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2023 00:57:58 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983374#M182489</guid>
      <dc:creator>agun76</dc:creator>
      <dc:date>2023-08-22T00:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983457#M182492</link>
      <description>&lt;P&gt;I have the same problem.&amp;nbsp; I tried "sed -i '46 a#include &amp;lt;net/gso.h&amp;gt;' vmnet-only/bridge.c&amp;nbsp;&amp;nbsp; &amp;amp;&amp;amp; tar -cf vmnet.tar vmnet-only"&amp;nbsp; but it still did not work.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2023 13:57:19 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983457#M182492</guid>
      <dc:creator>wcdeich4</dc:creator>
      <dc:date>2023-08-22T13:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983463#M182493</link>
      <description>&lt;P&gt;Can You provide more details?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2023 14:21:33 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983463#M182493</guid>
      <dc:creator>nikjoesta</dc:creator>
      <dc:date>2023-08-22T14:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983504#M182496</link>
      <description>&lt;P&gt;&lt;a href="https://communities.vmware.com/t5/user/viewprofilepage/user-id/5638156"&gt;@agun76&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The packages that contain the &lt;STRONG&gt;vmlinux&lt;/STRONG&gt; file are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;kernel-devel&lt;/LI&gt;&lt;LI&gt;kernel-headers&lt;/LI&gt;&lt;LI&gt;linux-firmware&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Have you ensured one of them is installed?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2023 18:19:43 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983504#M182496</guid>
      <dc:creator>rakotomandimby</dc:creator>
      <dc:date>2023-08-22T18:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983865#M182525</link>
      <description>&lt;P&gt;of course I have all of those packages installed since already used kubecek patch since previous kernel (before 6.4.10). but it fail since 6.4.10 (now I'm use 6.4.11).&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[agun76@fedora ~]$ rpm -qa | grep kernel-devel&lt;BR /&gt;kernel-devel-6.4.9-200.fc38.x86_64&lt;BR /&gt;kernel-devel-6.4.10-200.fc38.x86_64&lt;BR /&gt;kernel-devel-6.4.11-200.fc38.x86_64&lt;BR /&gt;kernel-devel-matched-6.4.11-200.fc38.x86_64&lt;BR /&gt;[agun76@fedora ~]$ rpm -qa | grep kernel-headers&lt;BR /&gt;kernel-headers-6.4.4-200.fc38.x86_64&lt;BR /&gt;[agun76@fedora ~]$ rpm -qa | grep linux-firmware&lt;BR /&gt;linux-firmware-whence-20230804-153.fc38.noarch&lt;BR /&gt;linux-firmware-20230804-153.fc38.noarch&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 01:10:48 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2983865#M182525</guid>
      <dc:creator>agun76</dc:creator>
      <dc:date>2023-08-25T01:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2984905#M182623</link>
      <description>&lt;P&gt;Thanks! Fixed the issue for me on (recently updated) Fedora Workstation 38&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;% uname -a&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Linux Feddy808 6.4.12-200.fc38.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 23 17:46:49 UTC 2023 x86_64 GNU/Linux&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;% cat /etc/redhat-release &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Fedora release 38 (Thirty Eight)&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2023 17:20:42 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2984905#M182623</guid>
      <dc:creator>Manbart</dc:creator>
      <dc:date>2023-08-31T17:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2986988#M182781</link>
      <description>&lt;P&gt;having same issue and i cannot overcome.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;after some commands, VMware shows that it needs to install some modules and it shows only vmmon.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;vmnet was intalled.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;when i execute following commnad:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; sudo vmware-modconfig --console --install-all&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i got:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[AppLoader] GLib does not have GSettings support.
make: Entering directory '/tmp/modconfig-M6DyYO/vmmon-only'
Using kernel build system.
/usr/bin/make -C /lib/modules/6.5.2-1-default/build/include/.. M=$PWD SRCROOT=$PWD/. \
  MODULEBUILDDIR= modules
make[1]: Entering directory '/usr/src/linux-6.5.2-1-obj/x86_64/default'
warning: the compiler differs from the one used to build the kernel
  The kernel was built by: gcc (SUSE Linux) 13.2.1 20230803 [revision cc279d6c64562f05019e1d12d0d825f9391b5553]
  You are using:           gcc (SUSE Linux) 13.2.1 20230912 [revision b96e66fd4ef3e36983969fb8cdd1956f551a074b]
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/linux/driver.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/linux/driverLog.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/linux/hostif.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/common/apic.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/common/comport.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/common/cpuid.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/common/crosspage.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/common/memtrack.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/common/moduleloop.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/common/phystrack.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/common/sharedAreaVmmon.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/common/statVarsVmmon.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/common/task.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/common/vmx86.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/bootstrap/bootstrap.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/bootstrap/monLoader.o
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/bootstrap/monLoaderVmmon.o
/tmp/modconfig-M6DyYO/vmmon-only/bootstrap/monLoader.c: In function ‘MonLoader_Process’:
/tmp/modconfig-M6DyYO/vmmon-only/bootstrap/monLoader.c:794:24: warning: the comparison will always evaluate as ‘false’ for the address of ‘entries’ will never be NULL [-Waddress]
  794 |    if (header-&amp;gt;entries == 0 || header-&amp;gt;count == 0) {
      |                        ^~
In file included from /tmp/modconfig-M6DyYO/vmmon-only/bootstrap/monLoader.c:57:
/tmp/modconfig-M6DyYO/vmmon-only/./include/monLoader.h:239:19: note: ‘entries’ declared here
  239 |    MonLoaderEntry entries[];
      |                   ^~~~~~~
  CC [M]  /tmp/modconfig-M6DyYO/vmmon-only/bootstrap/vmmblob.o
In file included from /tmp/modconfig-M6DyYO/vmmon-only/./include/cpu_types.h:29,
                 from /tmp/modconfig-M6DyYO/vmmon-only/./include/modulecall.h:33,
                 from /tmp/modconfig-M6DyYO/vmmon-only/common/moduleloop.c:33:
/tmp/modconfig-M6DyYO/vmmon-only/./include/vm_basic_defs.h:779: warning: "DO_ONCE" redefined
  779 | #define DO_ONCE(code)                                                   \
      | 
In file included from /usr/src/linux-6.5.2-1/include/linux/prandom.h:12,
                 from /usr/src/linux-6.5.2-1/include/linux/random.h:153,
                 from /usr/src/linux-6.5.2-1/include/linux/nodemask.h:97,
                 from /usr/src/linux-6.5.2-1/include/linux/sched.h:23,
                 from /tmp/modconfig-M6DyYO/vmmon-only/common/moduleloop.c:31:
/usr/src/linux-6.5.2-1/include/linux/once.h:46: note: this is the location of the previous definition
   46 | #define DO_ONCE(func, ...)                                                   \
      | 
In file included from /tmp/modconfig-M6DyYO/vmmon-only/./include/cpu_types.h:29,
                 from /tmp/modconfig-M6DyYO/vmmon-only/./include/modulecall.h:33,
                 from /tmp/modconfig-M6DyYO/vmmon-only/common/vmx86.h:33,
                 from /tmp/modconfig-M6DyYO/vmmon-only/common/vmx86.c:38:
/tmp/modconfig-M6DyYO/vmmon-only/./include/vm_basic_defs.h:779: warning: "DO_ONCE" redefined
  779 | #define DO_ONCE(code)                                                   \
      | 
In file included from /usr/src/linux-6.5.2-1/include/linux/prandom.h:12,
                 from /usr/src/linux-6.5.2-1/include/linux/random.h:153,
                 from /usr/src/linux-6.5.2-1/include/linux/nodemask.h:97,
                 from /usr/src/linux-6.5.2-1/include/linux/sched.h:23,
                 from /tmp/modconfig-M6DyYO/vmmon-only/common/vmx86.c:31:
/usr/src/linux-6.5.2-1/include/linux/once.h:46: note: this is the location of the previous definition
   46 | #define DO_ONCE(func, ...)                                                   \
      | 
In file included from /tmp/modconfig-M6DyYO/vmmon-only/./include/cpu_types.h:29,
                 from /tmp/modconfig-M6DyYO/vmmon-only/./include/modulecall.h:33,
                 from /tmp/modconfig-M6DyYO/vmmon-only/linux/hostif.c:58:
/tmp/modconfig-M6DyYO/vmmon-only/./include/vm_basic_defs.h:779: warning: "DO_ONCE" redefined
  779 | #define DO_ONCE(code)                                                   \
      | 
In file included from /usr/src/linux-6.5.2-1/include/linux/prandom.h:12,
                 from /usr/src/linux-6.5.2-1/include/linux/random.h:153,
                 from /usr/src/linux-6.5.2-1/include/linux/nodemask.h:97,
                 from /usr/src/linux-6.5.2-1/include/linux/sched.h:23,
                 from /usr/src/linux-6.5.2-1/include/linux/binfmts.h:5,
                 from /tmp/modconfig-M6DyYO/vmmon-only/linux/hostif.c:31:
/usr/src/linux-6.5.2-1/include/linux/once.h:46: note: this is the location of the previous definition
   46 | #define DO_ONCE(func, ...)                                                   \
      | 
In file included from /tmp/modconfig-M6DyYO/vmmon-only/./include/cpu_types.h:29,
                 from /tmp/modconfig-M6DyYO/vmmon-only/./include/modulecall.h:33,
                 from /tmp/modconfig-M6DyYO/vmmon-only/./common/vmx86.h:33,
                 from /tmp/modconfig-M6DyYO/vmmon-only/linux/driver.h:32,
                 from /tmp/modconfig-M6DyYO/vmmon-only/linux/driver.c:47:
/tmp/modconfig-M6DyYO/vmmon-only/./include/vm_basic_defs.h:779: warning: "DO_ONCE" redefined
  779 | #define DO_ONCE(code)                                                   \
      | 
In file included from /usr/src/linux-6.5.2-1/include/linux/prandom.h:12,
                 from /usr/src/linux-6.5.2-1/include/linux/random.h:153,
                 from /usr/src/linux-6.5.2-1/include/linux/nodemask.h:97,
                 from /usr/src/linux-6.5.2-1/include/linux/list_lru.h:12,
                 from /usr/src/linux-6.5.2-1/include/linux/fs.h:13,
                 from /usr/src/linux-6.5.2-1/include/linux/highmem.h:5,
                 from /tmp/modconfig-M6DyYO/vmmon-only/linux/driver.c:25:
/usr/src/linux-6.5.2-1/include/linux/once.h:46: note: this is the location of the previous definition
   46 | #define DO_ONCE(func, ...)                                                   \
      | 
  LD [M]  /tmp/modconfig-M6DyYO/vmmon-only/vmmon.o
/tmp/modconfig-M6DyYO/vmmon-only/vmmon.o: warning: objtool: CrossPage_CodePage+0x207: 'naked' return found in RETHUNK build
  MODPOST /tmp/modconfig-M6DyYO/vmmon-only/Module.symvers
ERROR: modpost: "__pte_offset_map" [/tmp/modconfig-M6DyYO/vmmon-only/vmmon.ko] undefined!
make[3]: *** [/usr/src/linux-6.5.2-1/scripts/Makefile.modpost:150: /tmp/modconfig-M6DyYO/vmmon-only/Module.symvers] Error 1
make[2]: *** [/usr/src/linux-6.5.2-1/Makefile:2001: modpost] Error 2
make[1]: *** [../../../linux-6.5.2-1/Makefile:234: __sub-make] Error 2
make[1]: Leaving directory '/usr/src/linux-6.5.2-1-obj/x86_64/default'
make: *** [Makefile:117: vmmon.ko] Error 2
make: Leaving directory '/tmp/modconfig-M6DyYO/vmmon-only'
make: Entering directory '/tmp/modconfig-M6DyYO/vmnet-only'
Using kernel build system.
/usr/bin/make -C /lib/modules/6.5.2-1-default/build/include/.. M=$PWD SRCROOT=$PWD/. \
  MODULEBUILDDIR= modules
make[1]: Entering directory '/usr/src/linux-6.5.2-1-obj/x86_64/default'
warning: the compiler differs from the one used to build the kernel
  The kernel was built by: gcc (SUSE Linux) 13.2.1 20230803 [revision cc279d6c64562f05019e1d12d0d825f9391b5553]
  You are using:           gcc (SUSE Linux) 13.2.1 20230912 [revision b96e66fd4ef3e36983969fb8cdd1956f551a074b]
  CC [M]  /tmp/modconfig-M6DyYO/vmnet-only/driver.o
  CC [M]  /tmp/modconfig-M6DyYO/vmnet-only/hub.o
  CC [M]  /tmp/modconfig-M6DyYO/vmnet-only/userif.o
  CC [M]  /tmp/modconfig-M6DyYO/vmnet-only/netif.o
  CC [M]  /tmp/modconfig-M6DyYO/vmnet-only/bridge.o
  CC [M]  /tmp/modconfig-M6DyYO/vmnet-only/procfs.o
  CC [M]  /tmp/modconfig-M6DyYO/vmnet-only/smac_compat.o
  CC [M]  /tmp/modconfig-M6DyYO/vmnet-only/smac.o
  CC [M]  /tmp/modconfig-M6DyYO/vmnet-only/vnetEvent.o
  CC [M]  /tmp/modconfig-M6DyYO/vmnet-only/vnetUserListener.o
  LD [M]  /tmp/modconfig-M6DyYO/vmnet-only/vmnet.o
/tmp/modconfig-M6DyYO/vmnet-only/vmnet.o: warning: objtool: VNetCsumAndCopyToUser+0x28: call to csum_partial_copy_nocheck() with UACCESS enabled
/tmp/modconfig-M6DyYO/vmnet-only/vmnet.o: warning: objtool: init_module(): not an indirect call target
/tmp/modconfig-M6DyYO/vmnet-only/vmnet.o: warning: objtool: cleanup_module(): not an indirect call target
  MODPOST /tmp/modconfig-M6DyYO/vmnet-only/Module.symvers
  CC [M]  /tmp/modconfig-M6DyYO/vmnet-only/vmnet.mod.o
  LD [M]  /tmp/modconfig-M6DyYO/vmnet-only/vmnet.ko
  BTF [M] /tmp/modconfig-M6DyYO/vmnet-only/vmnet.ko
Skipping BTF generation for /tmp/modconfig-M6DyYO/vmnet-only/vmnet.ko due to unavailability of vmlinux
make[1]: Leaving directory '/usr/src/linux-6.5.2-1-obj/x86_64/default'
/usr/bin/make -C $PWD SRCROOT=$PWD/. \
  MODULEBUILDDIR= postbuild
make[1]: Entering directory '/tmp/modconfig-M6DyYO/vmnet-only'
make[1]: 'postbuild' is up to date.
make[1]: Leaving directory '/tmp/modconfig-M6DyYO/vmnet-only'
cp -f vmnet.ko ./../vmnet.o
make: Leaving directory '/tmp/modconfig-M6DyYO/vmnet-only'
Unable to install all modules.  See log for details.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any help here??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Sep 2023 04:50:58 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2986988#M182781</guid>
      <dc:creator>sknalodz</dc:creator>
      <dc:date>2023-09-16T04:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2987054#M182786</link>
      <description>&lt;P&gt;I am getting exactly the same error on&lt;/P&gt;&lt;P&gt;# uname -a&lt;BR /&gt;Linux ...&amp;nbsp; 6.5.15-2-liquorix-amd64 #1 ZEN SMP PREEMPT liquorix 6.5-1ubuntu1~jammy (2023-09-15) x86_64 x86_64 x86_64 GNU/Linux&lt;/P&gt;&lt;P&gt;(Linux Mint 21.2).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Sep 2023 00:10:33 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2987054#M182786</guid>
      <dc:creator>ci4ic4</dc:creator>
      <dc:date>2023-09-17T00:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2987065#M182788</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_20230917_081412.png" style="width: 400px;"&gt;&lt;img src="https://communities.vmware.com/t5/image/serverpage/image-id/103564i30437347FA4D6F76/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Screenshot_20230917_081412.png" alt="Screenshot_20230917_081412.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;It seemed it worked initially, but when starting the VM, the error popped out&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[are@work-st source]$ cat /etc/redhat-release
Fedora release 38 (Thirty Eight)
[are@work-st source]$ uname -a
Linux work-st 6.4.15-200.fc38.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep  7 00:25:01 UTC 2023 x86_64 GNU/Linux&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Could not open /dev/vmmon: No such file or directory.
Please make sure that the kernel module `vmmon' is loaded.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sudo systemctl status vmware.service
[sudo] password for are:
× vmware.service - VMware host virtualization and network services for Workstation
Loaded: loaded (/usr/lib/systemd/system/vmware.service; enabled; preset: disabled)
Drop-In: /usr/lib/systemd/system/service.d
└─10-timeout-abort.conf
Active: failed (Result: exit-code) since Sun 2023-09-17 08:10:29 BST; 7min ago
Process: 29915 ExecStart=/usr/lib/vmware/scripts/init/vmware start (code=exited, status=203/EXEC)
CPU: 1ms

Sep 17 08:10:29 work-st (vmware)[29915]: vmware.service: Failed to locate executable /usr/lib/vmware/scripts/init/vmware: No such file or directory
Sep 17 08:10:29 work-st (vmware)[29915]: vmware.service: Failed at step EXEC spawning /usr/lib/vmware/scripts/init/vmware: No such file or directory
Sep 17 08:10:29 work-st systemd[1]: Starting vmware.service - VMware host virtualization and network services for Workstation...
Sep 17 08:10:29 work-st systemd[1]: vmware.service: Control process exited, code=exited, status=203/EXEC
Sep 17 08:10:29 work-st systemd[1]: vmware.service: Failed with result 'exit-code'.
Sep 17 08:10:29 work-st systemd[1]: Failed to start vmware.service - VMware host virtualization and network services for Workstation.&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;[are@work-st source]$ sudo systemctl status vmware.service
[sudo] password for are:
× vmware.service - VMware host virtualization and network services for Workstation
Loaded: loaded (/usr/lib/systemd/system/vmware.service; enabled; preset: disabled)
Drop-In: /usr/lib/systemd/system/service.d
└─10-timeout-abort.conf
Sep 17 08:10:29 work-st systemd[1]: vmware.service: Failed with result 'exit-code'.
░░ Subject: Unit failed
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit vmware.service has entered the 'failed' state with result 'exit-code'.
Sep 17 08:10:29 work-st systemd[1]: Failed to start vmware.service - VMware host virtualization and network services for Workstation.
░░ Subject: A start job for unit vmware.service has failed
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit vmware.service has finished with a failure.
░░
░░ The job identifier is 5145 and the job result is failed.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have lost a number of months for how long I can't use VMware workstation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Sep 2023 07:35:01 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2987065#M182788</guid>
      <dc:creator>tasikas</dc:creator>
      <dc:date>2023-09-17T07:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot compile vmnet kernel module on kernel 6.4.10</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2987103#M182794</link>
      <description>&lt;P&gt;Apply the solution from &lt;A href="https://communities.vmware.com/t5/Workstation-2023-Tech-Preview/Linux-Kernel-6-5-rc-vmmon-compile-fails/td-p/2981003" target="_blank"&gt;https://communities.vmware.com/t5/Workstation-2023-Tech-Preview/Linux-Kernel-6-5-rc-vmmon-compile-fails/td-p/2981003&lt;/A&gt; ; modules then compile. Restart the vmware service; you will probably still have another error (non-fatal) about /usr/sbin/vmware-authdlauncher not starting; I "solved" this by moving this file to /usr/sbin/vmware-authdlauncher.exe and placing&lt;/P&gt;&lt;P&gt;#!/bin/sh&lt;BR /&gt;export LD_LIBRARY_PATH=/usr/lib/vmware/lib/libssl.so.1.1:/usr/lib/vmware/lib/libcrypto.so.1.1&lt;BR /&gt;exec /usr/sbin/vmware-authdlauncher.exe $@&lt;/P&gt;&lt;P&gt;into /usr/sbin/vmware-authdlauncher . Workstation 17.0.2 now runs just fine under&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Linux ... 6.5.15-2-liquorix-amd64 #1 ZEN SMP PREEMPT liquorix 6.5-1ubuntu1~jammy (2023-09-15) x86_64 x86_64 x86_64 GNU/Linux&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Sep 2023 22:20:04 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Cannot-compile-vmnet-kernel-module-on-kernel-6-4-10/m-p/2987103#M182794</guid>
      <dc:creator>ci4ic4</dc:creator>
      <dc:date>2023-09-17T22:20:04Z</dc:date>
    </item>
  </channel>
</rss>

