Lines Matching refs:x86_leaf
189 unsigned int x86_leaf = __feature_leaf(x86_feature); in kvm_cpu_cap_clear() local
191 kvm_cpu_caps[x86_leaf] &= ~__feature_bit(x86_feature); in kvm_cpu_cap_clear()
196 unsigned int x86_leaf = __feature_leaf(x86_feature); in kvm_cpu_cap_set() local
198 kvm_cpu_caps[x86_leaf] |= __feature_bit(x86_feature); in kvm_cpu_cap_set()
203 unsigned int x86_leaf = __feature_leaf(x86_feature); in kvm_cpu_cap_get() local
205 return kvm_cpu_caps[x86_leaf] & __feature_bit(x86_feature); in kvm_cpu_cap_get()
231 unsigned int x86_leaf = __feature_leaf(x86_feature); in guest_cpu_cap_set() local
233 vcpu->arch.cpu_caps[x86_leaf] |= __feature_bit(x86_feature); in guest_cpu_cap_set()
239 unsigned int x86_leaf = __feature_leaf(x86_feature); in guest_cpu_cap_clear() local
241 vcpu->arch.cpu_caps[x86_leaf] &= ~__feature_bit(x86_feature); in guest_cpu_cap_clear()
257 unsigned int x86_leaf = __feature_leaf(x86_feature); in guest_cpu_cap_has() local
267 return vcpu->arch.cpu_caps[x86_leaf] & __feature_bit(x86_feature); in guest_cpu_cap_has()