On 04/08/2015 12:59, Xiao Guangrong wrote: > +/* > + * the page table on host is the shadow page table for the page > + * table in guest or amd nested guest, its mmu features completely > + * follow the features in guest. > + */ > +void > +reset_shadow_rsvds_bits_mask(struct kvm_vcpu *vcpu, struct kvm_mmu *context) > +{ > + __reset_rsvds_bits_mask(vcpu, &context->shadow_rsvd_check, > + boot_cpu_data.x86_phys_bits, > + context->shadow_root_level, context->nx, This should be cpu_has_nx, I think. > + guest_cpuid_has_gbpages(vcpu), This should be cpu_has_gbpages. > is_pse(vcpu)); This should be cpu_has_pse. Paolo > +} > +EXPORT_SYMBOL_GPL(reset_shadow_rsvds_bits_mask); -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html