KVM: SVM: Fix sev_pin_memory() error handling
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 14 Jul 2020 14:23:51 +0000 (17:23 +0300)
committerPaolo Bonzini <pbonzini@redhat.com>
Sun, 2 Aug 2020 09:23:06 +0000 (05:23 -0400)
commitff2bd9ff115218c144441e1df0370d9083b82866
tree29bbf2f6ba502e491e80ca23f18f86bce982e71a
parenta445fc457d2886a1264ec09c34f4000d1b30784d
KVM: SVM: Fix sev_pin_memory() error handling

The sev_pin_memory() function was modified to return error pointers
instead of NULL but there are two problems.  The first problem is that
if "npages" is zero then it still returns NULL.  Secondly, several of
the callers were not updated to check for error pointers instead of
NULL.

Either one of these issues will lead to an Oops.

Fixes: a8d908b5873c ("KVM: x86: report sev_pin_memory errors with PTR_ERR")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Message-Id: <20200714142351.GA315374@mwanda>
Reviewed-by: Sean Christopherson <sean.j.christopherson@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/svm/sev.c