mirror of https://gitee.com/openkylin/linux.git
KVM: VMX: Make prepare_vmcs12 and load_vmcs12_host_state static
Both are only used locally. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Gleb Natapov <gleb@redhat.com>
This commit is contained in:
parent
fe1140cc36
commit
733568f9ce
|
@ -7330,7 +7330,7 @@ vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
|
||||||
* exit-information fields only. Other fields are modified by L1 with VMWRITE,
|
* exit-information fields only. Other fields are modified by L1 with VMWRITE,
|
||||||
* which already writes to vmcs12 directly.
|
* which already writes to vmcs12 directly.
|
||||||
*/
|
*/
|
||||||
void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
|
static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
|
||||||
{
|
{
|
||||||
/* update guest state fields: */
|
/* update guest state fields: */
|
||||||
vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
|
vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
|
||||||
|
@ -7421,7 +7421,8 @@ void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
|
||||||
* Failures During or After Loading Guest State").
|
* Failures During or After Loading Guest State").
|
||||||
* This function should be called when the active VMCS is L1's (vmcs01).
|
* This function should be called when the active VMCS is L1's (vmcs01).
|
||||||
*/
|
*/
|
||||||
void load_vmcs12_host_state(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
|
static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
|
||||||
|
struct vmcs12 *vmcs12)
|
||||||
{
|
{
|
||||||
if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
|
if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
|
||||||
vcpu->arch.efer = vmcs12->host_ia32_efer;
|
vcpu->arch.efer = vmcs12->host_ia32_efer;
|
||||||
|
|
Loading…
Reference in New Issue