]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
kvm: powerpc: book3s: drop is_hv_enabled
authorAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Mon, 7 Oct 2013 16:48:02 +0000 (22:18 +0530)
committerAlexander Graf <agraf@suse.de>
Thu, 17 Oct 2013 16:43:34 +0000 (18:43 +0200)
drop is_hv_enabled, because that should not be a callback property

Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
arch/powerpc/include/asm/kvm_ppc.h
arch/powerpc/kvm/book3s.c
arch/powerpc/kvm/book3s_hv.c
arch/powerpc/kvm/book3s_pr.c
arch/powerpc/kvm/book3s_xics.c
arch/powerpc/kvm/powerpc.c

index 3069cf4dcc881f20a67e184790526b9e51c56e49..c8317fbf92c470f03842da5cf363efd97aed99b4 100644 (file)
@@ -183,7 +183,6 @@ union kvmppc_one_reg {
 
 struct kvmppc_ops {
        struct module *owner;
-       bool is_hv_enabled;
        int (*get_sregs)(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs);
        int (*set_sregs)(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs);
        int (*get_one_reg)(struct kvm_vcpu *vcpu, u64 id,
@@ -232,6 +231,11 @@ struct kvmppc_ops {
 extern struct kvmppc_ops *kvmppc_hv_ops;
 extern struct kvmppc_ops *kvmppc_pr_ops;
 
+static inline bool is_kvmppc_hv_enabled(struct kvm *kvm)
+{
+       return kvm->arch.kvm_ops == kvmppc_hv_ops;
+}
+
 /*
  * Cuts out inst bits with ordering according to spec.
  * That means the leftmost bit is zero. All given bits are included.
index ad8f6ed3f136a4fa06f713ef2eef2eba4b6a47d5..8912608b7e1b34908b2e86870366a4cee500a313 100644 (file)
@@ -72,7 +72,7 @@ void kvmppc_core_load_guest_debugstate(struct kvm_vcpu *vcpu)
 
 static inline unsigned long kvmppc_interrupt_offset(struct kvm_vcpu *vcpu)
 {
-       if (!vcpu->kvm->arch.kvm_ops->is_hv_enabled)
+       if (!is_kvmppc_hv_enabled(vcpu->kvm))
                return to_book3s(vcpu)->hior;
        return 0;
 }
@@ -80,7 +80,7 @@ static inline unsigned long kvmppc_interrupt_offset(struct kvm_vcpu *vcpu)
 static inline void kvmppc_update_int_pending(struct kvm_vcpu *vcpu,
                        unsigned long pending_now, unsigned long old_pending)
 {
-       if (vcpu->kvm->arch.kvm_ops->is_hv_enabled)
+       if (is_kvmppc_hv_enabled(vcpu->kvm))
                return;
        if (pending_now)
                vcpu->arch.shared->int_pending = 1;
@@ -94,7 +94,7 @@ static inline bool kvmppc_critical_section(struct kvm_vcpu *vcpu)
        ulong crit_r1;
        bool crit;
 
-       if (vcpu->kvm->arch.kvm_ops->is_hv_enabled)
+       if (is_kvmppc_hv_enabled(vcpu->kvm))
                return false;
 
        crit_raw = vcpu->arch.shared->critical;
index 8743048881b797b451335086dc2e23579f6228de..072287f1c3bc7347b6ff4f959843c97053fa4aa1 100644 (file)
@@ -2160,7 +2160,6 @@ static long kvm_arch_vm_ioctl_hv(struct file *filp,
 }
 
 static struct kvmppc_ops kvm_ops_hv = {
-       .is_hv_enabled = true,
        .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_hv,
        .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_hv,
        .get_one_reg = kvmppc_get_one_reg_hv,
index fbd985f0cb0292401b0f863ca394bb6301daa60e..df36cf2ed22be44f47923bce1bcedc511d8e8981 100644 (file)
@@ -1526,7 +1526,6 @@ static long kvm_arch_vm_ioctl_pr(struct file *filp,
 }
 
 static struct kvmppc_ops kvm_ops_pr = {
-       .is_hv_enabled = false,
        .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_pr,
        .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_pr,
        .get_one_reg = kvmppc_get_one_reg_pr,
index f7a5108a3483f3d2b55013cab6a083fe28c65b64..02a17dcf16107adbe1309185bf464d0fda4b8772 100644 (file)
@@ -818,7 +818,7 @@ int kvmppc_xics_hcall(struct kvm_vcpu *vcpu, u32 req)
        }
 
        /* Check for real mode returning too hard */
-       if (xics->real_mode && vcpu->kvm->arch.kvm_ops->is_hv_enabled)
+       if (xics->real_mode && is_kvmppc_hv_enabled(vcpu->kvm))
                return kvmppc_xics_rm_complete(vcpu, req);
 
        switch (req) {
index 0320c1721caaabfa275dc5028f56b16e198db383..9ae97686e9f444ded5700bd7621fd0a7207d08e4 100644 (file)
@@ -200,7 +200,7 @@ int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
                goto out;
 
        /* HV KVM can only do PAPR mode for now */
-       if (!vcpu->arch.papr_enabled && vcpu->kvm->arch.kvm_ops->is_hv_enabled)
+       if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
                goto out;
 
 #ifdef CONFIG_KVM_BOOKE_HV