On 01/04/2018 01:55 AM, Basil Chupin wrote:
On 04/01/18 10:34, Marcus Meissner wrote:
Hi,
The advisories have just been published by the researchers.
http://meltdownattack.com/ / https://spectreattack.com/
SUSE has been aware of these problems and we are in the process of preparing and soon releasing fixes.
Ciao, Marcus
My take on this is that nobody with a Nvidia GPU will be installing the new kernel -- assuming that the 'fix' will be in the form of a new kernel -- until the problem with compiling the nIvidia driver under the
= 4.14.11 version is resolved.
BC
This is all it takes to build on 4.14 kernels: int __init nv_drm_init( struct pci_driver *pci_driver ) { int ret = 0; #if defined(NV_DRM_AVAILABLE) #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 14, 0) ret = drm_pci_init(&nv_drm_driver, pci_driver); #else ret = drm_legacy_pci_init(&nv_drm_driver, pci_driver); #endif #endif return ret; } void nv_drm_exit( struct pci_driver *pci_driver ) { #if defined(NV_DRM_AVAILABLE) #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 14, 0) drm_pci_exit(&nv_drm_driver, pci_driver); #else drm_legacy_pci_exit(&nv_drm_driver, pci_driver); #endif #endif } Mark -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org