Hi all, Today's linux-next merge of the kvm tree got a conflict in: arch/x86/kvm/svm/svm.c between commit: 054409ab253d ("KVM: SVM: fix error return code in svm_create_vcpu()") from Linus' tree and commit: add5e2f04541 ("KVM: SVM: Add support for the SEV-ES VMSA") from the kvm tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc arch/x86/kvm/svm/svm.c index da7eb4aaf44f,941e5251e13f..000000000000 --- a/arch/x86/kvm/svm/svm.c +++ b/arch/x86/kvm/svm/svm.c @@@ -1309,10 -1347,8 +1347,10 @@@ static int svm_create_vcpu(struct kvm_v svm->avic_is_running = true; svm->msrpm = svm_vcpu_alloc_msrpm(); - if (!svm->msrpm) + if (!svm->msrpm) { + err = -ENOMEM; - goto error_free_vmcb_page; + goto error_free_vmsa_page; + } svm_vcpu_init_msrpm(vcpu, svm->msrpm);
Attachment:
pgp5fOUMtYngS.pgp
Description: OpenPGP digital signature