Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'x86_urgent_for_v6.10_rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull x86 fixes from Borislav Petkov:

- An ARM-relevant fix to not free default RMIDs of a resource control
group

- A randconfig build fix for the VMware virtual GPU driver

* tag 'x86_urgent_for_v6.10_rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/resctrl: Don't try to free nonexistent RMIDs
drm/vmwgfx: Fix missing HYPERVISOR_GUEST dependency

+3 -2
+2 -1
arch/x86/kernel/cpu/resctrl/monitor.c
··· 519 519 * allows architectures that ignore the closid parameter to avoid an 520 520 * unnecessary check. 521 521 */ 522 - if (idx == resctrl_arch_rmid_idx_encode(RESCTRL_RESERVED_CLOSID, 522 + if (!resctrl_arch_mon_capable() || 523 + idx == resctrl_arch_rmid_idx_encode(RESCTRL_RESERVED_CLOSID, 523 524 RESCTRL_RESERVED_RMID)) 524 525 return; 525 526
+1 -1
drivers/gpu/drm/vmwgfx/Kconfig
··· 2 2 config DRM_VMWGFX 3 3 tristate "DRM driver for VMware Virtual GPU" 4 4 depends on DRM && PCI && MMU 5 - depends on X86 || ARM64 5 + depends on (X86 && HYPERVISOR_GUEST) || ARM64 6 6 select DRM_TTM 7 7 select DRM_TTM_HELPER 8 8 select MAPPING_DIRTY_HELPERS