mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 02:01:29 +00:00
KVM: SVM: Replace memset(<addr>, 0, PAGESIZE) with clear_page(<addr>)
Signed-off-by: Shani Moideen <shani.moideen@wipro.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
This commit is contained in:
parent
d9e368d612
commit
129ee910df
@ -581,7 +581,7 @@ static int svm_create_vcpu(struct kvm_vcpu *vcpu)
|
||||
goto out2;
|
||||
|
||||
vcpu->svm->vmcb = page_address(page);
|
||||
memset(vcpu->svm->vmcb, 0, PAGE_SIZE);
|
||||
clear_page(vcpu->svm->vmcb);
|
||||
vcpu->svm->vmcb_pa = page_to_pfn(page) << PAGE_SHIFT;
|
||||
vcpu->svm->asid_generation = 0;
|
||||
memset(vcpu->svm->db_regs, 0, sizeof(vcpu->svm->db_regs));
|
||||
@ -957,7 +957,7 @@ static int shutdown_interception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
|
||||
* VMCB is undefined after a SHUTDOWN intercept
|
||||
* so reinitialize it.
|
||||
*/
|
||||
memset(vcpu->svm->vmcb, 0, PAGE_SIZE);
|
||||
clear_page(vcpu->svm->vmcb);
|
||||
init_vmcb(vcpu->svm->vmcb);
|
||||
|
||||
kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
|
||||
|
Loading…
Reference in New Issue
Block a user