KVM: SEV: Drop a redundant setting of sev->asid during initialization
authorSean Christopherson <seanjc@google.com>
Tue, 9 Nov 2021 21:51:00 +0000 (21:51 +0000)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 18 Nov 2021 07:10:27 +0000 (02:10 -0500)
Remove a fully redundant write to sev->asid during SEV/SEV-ES guest
initialization.  The ASID is set a few lines earlier prior to the call to
sev_platform_init(), which doesn't take "sev" as a param, i.e. can't
muck with the ASID barring some truly magical behind-the-scenes code.

No functional change intended.

Signed-off-by: Sean Christopherson <seanjc@google.com>
Message-Id: <20211109215101.2211373-6-seanjc@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/svm/sev.c

index 50b9d76e9137395b194b32987f38ae50c3d1a510..80692435ac3dd1e9f7427b9bc791591c0297bfcd 100644 (file)
@@ -249,7 +249,6 @@ static int sev_guest_init(struct kvm *kvm, struct kvm_sev_cmd *argp)
        if (ret)
                goto e_free;
 
-       sev->asid = asid;
        INIT_LIST_HEAD(&sev->regions_list);
 
        return 0;