Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec7cf690 authored by Joerg Roedel's avatar Joerg Roedel Committed by Avi Kivity
Browse files

KVM: export kvm_lapic_set_tpr() to modules



This patch exports the kvm_lapic_set_tpr() function from the lapic code to
modules. It is required in the kvm-amd module to optimize CR8 intercepts.

Signed-off-by: default avatarJoerg Roedel <joerg.roedel@amd.com>
Signed-off-by: default avatarAvi Kivity <avi@qumranet.com>
parent 649d6864
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -822,6 +822,7 @@ void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8)
	apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
	apic_set_tpr(apic, ((cr8 & 0x0f) << 4)
		     | (apic_get_reg(apic, APIC_TASKPRI) & 4));
		     | (apic_get_reg(apic, APIC_TASKPRI) & 4));
}
}
EXPORT_SYMBOL_GPL(kvm_lapic_set_tpr);


u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu)
{
{