This is a note to let you know that I've just added the patch titled arm64: KVM: Fix system register enumeration to the 4.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: arm64-kvm-fix-system-register-enumeration.patch and it can be found in the queue-4.14 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 5d8d4af24460d079ecdb190254b14b528add1228 Mon Sep 17 00:00:00 2001 From: Marc Zyngier <marc.zyngier@xxxxxxx> Date: Tue, 2 Apr 2019 03:28:39 +0100 Subject: arm64: KVM: Fix system register enumeration From: Marc Zyngier <marc.zyngier@xxxxxxx> commit 5d8d4af24460d079ecdb190254b14b528add1228 upstream. The introduction of the SVE registers to userspace started with a refactoring of the way we expose any register via the ONE_REG interface. Unfortunately, this change doesn't exactly behave as expected if the number of registers is non-zero and consider everything to be an error. The visible result is that QEMU barfs very early when creating vcpus. Make sure we only exit early in case there is an actual error, rather than a positive number of registers... Fixes: be25bbb392fa ("KVM: arm64: Factor out core register ID enumeration") Signed-off-by: Marc Zyngier <marc.zyngier@xxxxxxx> Signed-off-by: Takahiro Itazuri <itazur@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- arch/arm64/kvm/guest.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/arch/arm64/kvm/guest.c +++ b/arch/arm64/kvm/guest.c @@ -326,17 +326,17 @@ int kvm_arm_copy_reg_indices(struct kvm_ int ret; ret = kvm_arm_copy_core_reg_indices(uindices); - if (ret) + if (ret < 0) return ret; uindices += ret; ret = kvm_arm_copy_fw_reg_indices(vcpu, uindices); - if (ret) + if (ret < 0) return ret; uindices += kvm_arm_get_fw_num_regs(vcpu); ret = copy_timer_indices(vcpu, uindices); - if (ret) + if (ret < 0) return ret; uindices += NUM_TIMER_REGS; Patches currently in stable-queue which might be from marc.zyngier@xxxxxxx are queue-4.14/kvm-arm64-factor-out-core-register-id-enumeration.patch queue-4.14/arm64-kvm-fix-system-register-enumeration.patch queue-4.14/kvm-arm64-filter-out-invalid-core-register-ids-in-kvm_get_reg_list.patch