KVM: ppc: cosmetic changes to mmu hook names
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
c46fb0211f
commit
ecc0981ff0
3 changed files with 5 additions and 4 deletions
|
@ -52,13 +52,14 @@ extern int kvmppc_emulate_instruction(struct kvm_run *run,
|
||||||
extern int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu);
|
extern int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu);
|
||||||
extern void kvmppc_emulate_dec(struct kvm_vcpu *vcpu);
|
extern void kvmppc_emulate_dec(struct kvm_vcpu *vcpu);
|
||||||
|
|
||||||
|
/* Core-specific hooks */
|
||||||
|
|
||||||
extern void kvmppc_mmu_map(struct kvm_vcpu *vcpu, u64 gvaddr, gpa_t gpaddr,
|
extern void kvmppc_mmu_map(struct kvm_vcpu *vcpu, u64 gvaddr, gpa_t gpaddr,
|
||||||
u64 asid, u32 flags, u32 max_bytes,
|
u64 asid, u32 flags, u32 max_bytes,
|
||||||
unsigned int gtlb_idx);
|
unsigned int gtlb_idx);
|
||||||
extern void kvmppc_mmu_priv_switch(struct kvm_vcpu *vcpu, int usermode);
|
extern void kvmppc_mmu_priv_switch(struct kvm_vcpu *vcpu, int usermode);
|
||||||
extern void kvmppc_mmu_switch_pid(struct kvm_vcpu *vcpu, u32 pid);
|
extern void kvmppc_mmu_switch_pid(struct kvm_vcpu *vcpu, u32 pid);
|
||||||
|
extern void kvmppc_mmu_destroy(struct kvm_vcpu *vcpu);
|
||||||
/* Core-specific hooks */
|
|
||||||
|
|
||||||
extern struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm,
|
extern struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm,
|
||||||
unsigned int id);
|
unsigned int id);
|
||||||
|
|
|
@ -248,7 +248,7 @@ static void kvmppc_44x_shadow_release(struct kvmppc_vcpu_44x *vcpu_44x,
|
||||||
KVMTRACE_1D(STLB_INVAL, &vcpu_44x->vcpu, stlb_index, handler);
|
KVMTRACE_1D(STLB_INVAL, &vcpu_44x->vcpu, stlb_index, handler);
|
||||||
}
|
}
|
||||||
|
|
||||||
void kvmppc_core_destroy_mmu(struct kvm_vcpu *vcpu)
|
void kvmppc_mmu_destroy(struct kvm_vcpu *vcpu)
|
||||||
{
|
{
|
||||||
struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
|
struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
|
||||||
int i;
|
int i;
|
||||||
|
|
|
@ -216,7 +216,7 @@ int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
|
||||||
|
|
||||||
void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
|
void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
|
||||||
{
|
{
|
||||||
kvmppc_core_destroy_mmu(vcpu);
|
kvmppc_mmu_destroy(vcpu);
|
||||||
}
|
}
|
||||||
|
|
||||||
void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
|
void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
|
||||||
|
|
Loading…
Add table
Reference in a new issue