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

Merge tag 'hyperv-fixes-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux

Pull Hyper-V fix from Wei Liu:
"One patch from Dexuan to fix VRAM cache type in Hyper-V framebuffer
driver"

* tag 'hyperv-fixes-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux:
video: hyperv_fb: Fix the cache type when mapping the VRAM

+6 -1
+6 -1
drivers/video/fbdev/hyperv_fb.c
··· 1093 1093 goto err1; 1094 1094 } 1095 1095 1096 - fb_virt = ioremap(par->mem->start, screen_fb_size); 1096 + /* 1097 + * Map the VRAM cacheable for performance. This is also required for 1098 + * VM Connect to display properly for ARM64 Linux VM, as the host also 1099 + * maps the VRAM cacheable. 1100 + */ 1101 + fb_virt = ioremap_cache(par->mem->start, screen_fb_size); 1097 1102 if (!fb_virt) 1098 1103 goto err2; 1099 1104