Kernel – 6.16-rc4 Released – OK with latest NVIDIA and Extra VMMON Hack.. Update..
Kernel 6.16-rc4 is out, and brief details are here: https://lkml.iu.edu/hypermail/linux/kernel/2506.3/09013.html
The latest NVIDIA driver 575.64 compiles and loads/runs OK but may fail when installed using the NV…..run file, but will be OK is installed manually, for some reason..
UPDATE: NVIDIA 575.64.03 is out, which seems to fix the need for manual compile etc… https://www.nvidia.com/en-us/drivers/details/249044/
VMware 17.6.3 with the 6.15 patches and an additional VMMON patch/hack will work… This patch has been hastily put together, based on the error message, and may be incorrect, but seems to work OK on my Fedora 42 system (Win10 Guest..)…
vmmon-only/linux/hostif.c around line 3406:
……………………….
int
HostIF_SafeRDMSR(unsigned int msr, // IN
uint64 *val) // OUT: MSR value
{
int err;
u64 v;
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 16, 0)
err = rdmsrq_safe(msr, &v);
#else
err = rdmsrl_safe(msr, &v);
#endif
*val = (err == 0) ? v : 0; // Linux corrupts ‘v’ on error
return err;
}
………………….
Remember, cut/paste from a website may introduce bad formatting, so best to type by hand..
As before, use with extreme caution!!
Robert Gadsdon. June 30th 2025.
(Apologies for delay in dealing with comments etc… Urgent medicals issues intervened…)
Comments
Kernel – 6.16-rc4 Released – OK with latest NVIDIA and Extra VMMON Hack.. Update.. — No Comments