~ubuntu-branches/ubuntu/quantal/linux-lowlatency/quantal

« back to all changes in this revision

Viewing changes to arch/x86/kvm/x86.h

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich, Luke Yelavich, Upstream Kernel Changes
  • Date: 2012-03-30 09:03:19 UTC
  • Revision ID: package-import@ubuntu.com-20120330090319-5445yb1865swhoiv
Tags: 3.2.0-21.29
[ Luke Yelavich ]

* [Config] Update configs after rebase against Ubuntu-3.2.0-21.34

[ Upstream Kernel Changes ]

* Low-latency: Rebase against Ubuntu-3.2.0-21.34

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
        return (nr == BP_VECTOR) || (nr == OF_VECTOR);
34
34
}
35
35
 
36
 
struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu,
37
 
                                             u32 function, u32 index);
38
 
 
39
36
static inline bool is_protmode(struct kvm_vcpu *vcpu)
40
37
{
41
38
        return kvm_read_cr0_bits(vcpu, X86_CR0_PE);
125
122
        gva_t addr, void *val, unsigned int bytes,
126
123
        struct x86_exception *exception);
127
124
 
 
125
extern u64 host_xcr0;
 
126
 
128
127
#endif