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 'for-linus-6.9' of git://git.kernel.org/pub/scm/virt/kvm/kvm

Pull kvm fix from Paolo Bonzini:

- Fix NULL pointer read on s390 in ioctl(KVM_CHECK_EXTENSION) for
/dev/kvm

* tag 'for-linus-6.9' of git://git.kernel.org/pub/scm/virt/kvm/kvm:
KVM: s390: Check kvm pointer when testing KVM_CAP_S390_HPAGE_1M

+1 -1
+1 -1
arch/s390/kvm/kvm-s390.c
··· 587 587 break; 588 588 case KVM_CAP_S390_HPAGE_1M: 589 589 r = 0; 590 - if (hpage && !kvm_is_ucontrol(kvm)) 590 + if (hpage && !(kvm && kvm_is_ucontrol(kvm))) 591 591 r = 1; 592 592 break; 593 593 case KVM_CAP_S390_MEM_OP: