blob: 0e01ac75268c3239f6ca8227b2ed0064c241338a [file] [log] [blame]
Carsten Otte043405e2007-10-10 17:16:19 +02001#/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This header defines architecture specific interfaces, x86 version
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2. See
7 * the COPYING file in the top-level directory.
8 *
9 */
10
11#ifndef KVM_X86_H
12#define KVM_X86_H
13
14#include "kvm.h"
15
Zhang Xiantao34c16ee2007-10-20 15:34:38 +080016#include <linux/types.h>
17#include <linux/mm.h>
18
19#include <linux/kvm.h>
20#include <linux/kvm_para.h>
21
Hollis Blancharde01a1b52007-12-03 15:30:25 -060022#include <asm/desc.h>
23
Zhang Xiantaocd6e8f82007-11-19 14:33:37 +080024#define CR3_PAE_RESERVED_BITS ((X86_CR3_PWT | X86_CR3_PCD) - 1)
25#define CR3_NONPAE_RESERVED_BITS ((PAGE_SIZE-1) & ~(X86_CR3_PWT | X86_CR3_PCD))
26#define CR3_L_MODE_RESERVED_BITS (CR3_NONPAE_RESERVED_BITS|0xFFFFFF0000000000ULL)
27
28#define KVM_GUEST_CR0_MASK \
29 (X86_CR0_PG | X86_CR0_PE | X86_CR0_WP | X86_CR0_NE \
30 | X86_CR0_NW | X86_CR0_CD)
31#define KVM_VM_CR0_ALWAYS_ON \
32 (X86_CR0_PG | X86_CR0_PE | X86_CR0_WP | X86_CR0_NE | X86_CR0_TS \
33 | X86_CR0_MP)
34#define KVM_GUEST_CR4_MASK \
35 (X86_CR4_VME | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_PGE | X86_CR4_VMXE)
36#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
37#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
38
39#define INVALID_PAGE (~(hpa_t)0)
40#define UNMAPPED_GVA (~(gpa_t)0)
41
42#define DE_VECTOR 0
43#define UD_VECTOR 6
44#define NM_VECTOR 7
45#define DF_VECTOR 8
46#define TS_VECTOR 10
47#define NP_VECTOR 11
48#define SS_VECTOR 12
49#define GP_VECTOR 13
50#define PF_VECTOR 14
51
52#define SELECTOR_TI_MASK (1 << 2)
53#define SELECTOR_RPL_MASK 0x03
54
55#define IOPL_SHIFT 12
56
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080057extern spinlock_t kvm_lock;
58extern struct list_head vm_list;
59
Zhang Xiantao2b3ccfa2007-11-19 14:56:05 +080060enum {
61 VCPU_REGS_RAX = 0,
62 VCPU_REGS_RCX = 1,
63 VCPU_REGS_RDX = 2,
64 VCPU_REGS_RBX = 3,
65 VCPU_REGS_RSP = 4,
66 VCPU_REGS_RBP = 5,
67 VCPU_REGS_RSI = 6,
68 VCPU_REGS_RDI = 7,
69#ifdef CONFIG_X86_64
70 VCPU_REGS_R8 = 8,
71 VCPU_REGS_R9 = 9,
72 VCPU_REGS_R10 = 10,
73 VCPU_REGS_R11 = 11,
74 VCPU_REGS_R12 = 12,
75 VCPU_REGS_R13 = 13,
76 VCPU_REGS_R14 = 14,
77 VCPU_REGS_R15 = 15,
78#endif
79 NR_VCPU_REGS
80};
81
82enum {
83 VCPU_SREG_CS,
84 VCPU_SREG_DS,
85 VCPU_SREG_ES,
86 VCPU_SREG_FS,
87 VCPU_SREG_GS,
88 VCPU_SREG_SS,
89 VCPU_SREG_TR,
90 VCPU_SREG_LDTR,
91};
92
93#include "x86_emulate.h"
94
Zhang Xiantaoad312c72007-12-13 23:50:52 +080095struct kvm_vcpu_arch {
Zhang Xiantao34c16ee2007-10-20 15:34:38 +080096 u64 host_tsc;
97 int interrupt_window_open;
98 unsigned long irq_summary; /* bit vector: 1 per word in irq_pending */
99 DECLARE_BITMAP(irq_pending, KVM_NR_INTERRUPTS);
100 unsigned long regs[NR_VCPU_REGS]; /* for rsp: vcpu_load_rsp_rip() */
101 unsigned long rip; /* needs vcpu_load_rsp_rip() */
102
103 unsigned long cr0;
104 unsigned long cr2;
105 unsigned long cr3;
106 unsigned long cr4;
107 unsigned long cr8;
108 u64 pdptrs[4]; /* pae */
109 u64 shadow_efer;
110 u64 apic_base;
111 struct kvm_lapic *apic; /* kernel irqchip context */
112#define VCPU_MP_STATE_RUNNABLE 0
113#define VCPU_MP_STATE_UNINITIALIZED 1
114#define VCPU_MP_STATE_INIT_RECEIVED 2
115#define VCPU_MP_STATE_SIPI_RECEIVED 3
116#define VCPU_MP_STATE_HALTED 4
117 int mp_state;
118 int sipi_vector;
119 u64 ia32_misc_enable_msr;
120
121 struct kvm_mmu mmu;
122
123 struct kvm_mmu_memory_cache mmu_pte_chain_cache;
124 struct kvm_mmu_memory_cache mmu_rmap_desc_cache;
125 struct kvm_mmu_memory_cache mmu_page_cache;
126 struct kvm_mmu_memory_cache mmu_page_header_cache;
127
128 gfn_t last_pt_write_gfn;
129 int last_pt_write_count;
130 u64 *last_pte_updated;
131
Zhang Xiantao34c16ee2007-10-20 15:34:38 +0800132 struct i387_fxsave_struct host_fx_image;
133 struct i387_fxsave_struct guest_fx_image;
134
135 gva_t mmio_fault_cr2;
136 struct kvm_pio_request pio;
137 void *pio_data;
138
Avi Kivity298101d2007-11-25 13:41:11 +0200139 struct kvm_queued_exception {
140 bool pending;
141 bool has_error_code;
142 u8 nr;
143 u32 error_code;
144 } exception;
145
Zhang Xiantao34c16ee2007-10-20 15:34:38 +0800146 struct {
147 int active;
148 u8 save_iopl;
149 struct kvm_save_segment {
150 u16 selector;
151 unsigned long base;
152 u32 limit;
153 u32 ar;
154 } tr, es, ds, fs, gs;
155 } rmode;
156 int halt_request; /* real mode on Intel only */
157
158 int cpuid_nent;
Dan Kenigsberg07716712007-11-21 17:10:04 +0200159 struct kvm_cpuid_entry2 cpuid_entries[KVM_MAX_CPUID_ENTRIES];
Zhang Xiantao34c16ee2007-10-20 15:34:38 +0800160 /* emulate context */
161
162 struct x86_emulate_ctxt emulate_ctxt;
163};
164
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800165struct kvm_vcpu {
166 KVM_VCPU_COMM;
167
168 struct kvm_vcpu_arch arch;
169};
170
Hollis Blancharde01a1b52007-12-03 15:30:25 -0600171struct descriptor_table {
172 u16 limit;
173 unsigned long base;
174} __attribute__((packed));
175
Zhang Xiantaoea4a5ff2007-11-19 14:40:47 +0800176struct kvm_x86_ops {
177 int (*cpu_has_kvm_support)(void); /* __init */
178 int (*disabled_by_bios)(void); /* __init */
179 void (*hardware_enable)(void *dummy); /* __init */
180 void (*hardware_disable)(void *dummy);
181 void (*check_processor_compatibility)(void *rtn);
182 int (*hardware_setup)(void); /* __init */
183 void (*hardware_unsetup)(void); /* __exit */
184
185 /* Create, but do not attach this VCPU */
186 struct kvm_vcpu *(*vcpu_create)(struct kvm *kvm, unsigned id);
187 void (*vcpu_free)(struct kvm_vcpu *vcpu);
188 int (*vcpu_reset)(struct kvm_vcpu *vcpu);
189
190 void (*prepare_guest_switch)(struct kvm_vcpu *vcpu);
191 void (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu);
192 void (*vcpu_put)(struct kvm_vcpu *vcpu);
193 void (*vcpu_decache)(struct kvm_vcpu *vcpu);
194
195 int (*set_guest_debug)(struct kvm_vcpu *vcpu,
196 struct kvm_debug_guest *dbg);
197 void (*guest_debug_pre)(struct kvm_vcpu *vcpu);
198 int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata);
199 int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
200 u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg);
201 void (*get_segment)(struct kvm_vcpu *vcpu,
202 struct kvm_segment *var, int seg);
203 void (*set_segment)(struct kvm_vcpu *vcpu,
204 struct kvm_segment *var, int seg);
205 void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l);
206 void (*decache_cr4_guest_bits)(struct kvm_vcpu *vcpu);
207 void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0);
208 void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
209 void (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4);
210 void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer);
211 void (*get_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
212 void (*set_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
213 void (*get_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
214 void (*set_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
215 unsigned long (*get_dr)(struct kvm_vcpu *vcpu, int dr);
216 void (*set_dr)(struct kvm_vcpu *vcpu, int dr, unsigned long value,
217 int *exception);
218 void (*cache_regs)(struct kvm_vcpu *vcpu);
219 void (*decache_regs)(struct kvm_vcpu *vcpu);
220 unsigned long (*get_rflags)(struct kvm_vcpu *vcpu);
221 void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags);
222
223 void (*tlb_flush)(struct kvm_vcpu *vcpu);
Zhang Xiantaoea4a5ff2007-11-19 14:40:47 +0800224
Zhang Xiantaoea4a5ff2007-11-19 14:40:47 +0800225 void (*run)(struct kvm_vcpu *vcpu, struct kvm_run *run);
226 int (*handle_exit)(struct kvm_run *run, struct kvm_vcpu *vcpu);
227 void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu);
228 void (*patch_hypercall)(struct kvm_vcpu *vcpu,
229 unsigned char *hypercall_addr);
230 int (*get_irq)(struct kvm_vcpu *vcpu);
231 void (*set_irq)(struct kvm_vcpu *vcpu, int vec);
Avi Kivity298101d2007-11-25 13:41:11 +0200232 void (*queue_exception)(struct kvm_vcpu *vcpu, unsigned nr,
233 bool has_error_code, u32 error_code);
234 bool (*exception_injected)(struct kvm_vcpu *vcpu);
Zhang Xiantaoea4a5ff2007-11-19 14:40:47 +0800235 void (*inject_pending_irq)(struct kvm_vcpu *vcpu);
236 void (*inject_pending_vectors)(struct kvm_vcpu *vcpu,
237 struct kvm_run *run);
238
239 int (*set_tss_addr)(struct kvm *kvm, unsigned int addr);
240};
241
Zhang Xiantao97896d02007-11-14 20:09:30 +0800242extern struct kvm_x86_ops *kvm_x86_ops;
243
Zhang Xiantao54f15852007-11-19 15:24:28 +0800244int kvm_mmu_module_init(void);
245void kvm_mmu_module_exit(void);
246
247void kvm_mmu_destroy(struct kvm_vcpu *vcpu);
248int kvm_mmu_create(struct kvm_vcpu *vcpu);
249int kvm_mmu_setup(struct kvm_vcpu *vcpu);
250void kvm_mmu_set_nonpresent_ptes(u64 trap_pte, u64 notrap_pte);
251
252int kvm_mmu_reset_context(struct kvm_vcpu *vcpu);
253void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot);
254void kvm_mmu_zap_all(struct kvm *kvm);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800255unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm);
Zhang Xiantao54f15852007-11-19 15:24:28 +0800256void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages);
257
258enum emulation_result {
259 EMULATE_DONE, /* no further processing */
260 EMULATE_DO_MMIO, /* kvm_run filled with mmio request */
261 EMULATE_FAIL, /* can't emulate this instruction */
262};
263
264int emulate_instruction(struct kvm_vcpu *vcpu, struct kvm_run *run,
265 unsigned long cr2, u16 error_code, int no_decode);
266void kvm_report_emulation_failure(struct kvm_vcpu *cvpu, const char *context);
267void realmode_lgdt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
268void realmode_lidt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
269void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
270 unsigned long *rflags);
271
272unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr);
273void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long value,
274 unsigned long *rflags);
275int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *data);
276int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
277
278struct x86_emulate_ctxt;
279
280int kvm_emulate_pio(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
281 int size, unsigned port);
282int kvm_emulate_pio_string(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
283 int size, unsigned long count, int down,
284 gva_t address, int rep, unsigned port);
285void kvm_emulate_cpuid(struct kvm_vcpu *vcpu);
286int kvm_emulate_halt(struct kvm_vcpu *vcpu);
287int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address);
288int emulate_clts(struct kvm_vcpu *vcpu);
289int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
290 unsigned long *dest);
291int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
292 unsigned long value);
293
294void set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
295void set_cr3(struct kvm_vcpu *vcpu, unsigned long cr0);
296void set_cr4(struct kvm_vcpu *vcpu, unsigned long cr0);
297void set_cr8(struct kvm_vcpu *vcpu, unsigned long cr0);
298unsigned long get_cr8(struct kvm_vcpu *vcpu);
299void lmsw(struct kvm_vcpu *vcpu, unsigned long msw);
300void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l);
301
302int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata);
303int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data);
304
Avi Kivity298101d2007-11-25 13:41:11 +0200305void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr);
306void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200307void kvm_inject_page_fault(struct kvm_vcpu *vcpu, unsigned long cr2,
308 u32 error_code);
Avi Kivity298101d2007-11-25 13:41:11 +0200309
Zhang Xiantao54f15852007-11-19 15:24:28 +0800310void fx_init(struct kvm_vcpu *vcpu);
311
312int emulator_read_std(unsigned long addr,
313 void *val,
314 unsigned int bytes,
315 struct kvm_vcpu *vcpu);
316int emulator_write_emulated(unsigned long addr,
317 const void *val,
318 unsigned int bytes,
319 struct kvm_vcpu *vcpu);
320
321unsigned long segment_base(u16 selector);
322
Avi Kivityd835dfe2007-11-21 02:57:59 +0200323void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu);
Zhang Xiantao54f15852007-11-19 15:24:28 +0800324void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
325 const u8 *new, int bytes);
326int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva);
327void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu);
328int kvm_mmu_load(struct kvm_vcpu *vcpu);
329void kvm_mmu_unload(struct kvm_vcpu *vcpu);
330
331int kvm_emulate_hypercall(struct kvm_vcpu *vcpu);
332
333int kvm_fix_hypercall(struct kvm_vcpu *vcpu);
334
Avi Kivity30677142007-10-28 18:48:59 +0200335int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva, u32 error_code);
Zhang Xiantao34c16ee2007-10-20 15:34:38 +0800336
337static inline void kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
338{
339 if (unlikely(vcpu->kvm->n_free_mmu_pages < KVM_MIN_FREE_MMU_PAGES))
340 __kvm_mmu_free_some_pages(vcpu);
341}
342
343static inline int kvm_mmu_reload(struct kvm_vcpu *vcpu)
344{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800345 if (likely(vcpu->arch.mmu.root_hpa != INVALID_PAGE))
Zhang Xiantao34c16ee2007-10-20 15:34:38 +0800346 return 0;
347
348 return kvm_mmu_load(vcpu);
349}
350
351static inline int is_long_mode(struct kvm_vcpu *vcpu)
352{
353#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800354 return vcpu->arch.shadow_efer & EFER_LME;
Zhang Xiantao34c16ee2007-10-20 15:34:38 +0800355#else
356 return 0;
357#endif
358}
359
360static inline int is_pae(struct kvm_vcpu *vcpu)
361{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800362 return vcpu->arch.cr4 & X86_CR4_PAE;
Zhang Xiantao34c16ee2007-10-20 15:34:38 +0800363}
364
365static inline int is_pse(struct kvm_vcpu *vcpu)
366{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800367 return vcpu->arch.cr4 & X86_CR4_PSE;
Zhang Xiantao34c16ee2007-10-20 15:34:38 +0800368}
369
370static inline int is_paging(struct kvm_vcpu *vcpu)
371{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800372 return vcpu->arch.cr0 & X86_CR0_PG;
Zhang Xiantao34c16ee2007-10-20 15:34:38 +0800373}
374
Carsten Ottea03490e2007-10-29 16:09:35 +0100375int load_pdptrs(struct kvm_vcpu *vcpu, unsigned long cr3);
Carsten Ottede7d7892007-10-30 18:44:25 +0100376int complete_pio(struct kvm_vcpu *vcpu);
Zhang Xiantaoec6d2732007-11-19 15:08:31 +0800377
378static inline struct kvm_mmu_page *page_header(hpa_t shadow_page)
379{
380 struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT);
381
382 return (struct kvm_mmu_page *)page_private(page);
383}
384
385static inline u16 read_fs(void)
386{
387 u16 seg;
388 asm("mov %%fs, %0" : "=g"(seg));
389 return seg;
390}
391
392static inline u16 read_gs(void)
393{
394 u16 seg;
395 asm("mov %%gs, %0" : "=g"(seg));
396 return seg;
397}
398
399static inline u16 read_ldt(void)
400{
401 u16 ldt;
402 asm("sldt %0" : "=g"(ldt));
403 return ldt;
404}
405
406static inline void load_fs(u16 sel)
407{
408 asm("mov %0, %%fs" : : "rm"(sel));
409}
410
411static inline void load_gs(u16 sel)
412{
413 asm("mov %0, %%gs" : : "rm"(sel));
414}
415
416#ifndef load_ldt
417static inline void load_ldt(u16 sel)
418{
419 asm("lldt %0" : : "rm"(sel));
420}
421#endif
422
423static inline void get_idt(struct descriptor_table *table)
424{
425 asm("sidt %0" : "=m"(*table));
426}
427
428static inline void get_gdt(struct descriptor_table *table)
429{
430 asm("sgdt %0" : "=m"(*table));
431}
432
433static inline unsigned long read_tr_base(void)
434{
435 u16 tr;
436 asm("str %0" : "=g"(tr));
437 return segment_base(tr);
438}
439
440#ifdef CONFIG_X86_64
441static inline unsigned long read_msr(unsigned long msr)
442{
443 u64 value;
444
445 rdmsrl(msr, value);
446 return value;
447}
448#endif
449
450static inline void fx_save(struct i387_fxsave_struct *image)
451{
452 asm("fxsave (%0)":: "r" (image));
453}
454
455static inline void fx_restore(struct i387_fxsave_struct *image)
456{
457 asm("fxrstor (%0)":: "r" (image));
458}
459
460static inline void fpu_init(void)
461{
462 asm("finit");
463}
464
465static inline u32 get_rdx_init_val(void)
466{
467 return 0x600; /* P6 family */
468}
469
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200470static inline void kvm_inject_gp(struct kvm_vcpu *vcpu, u32 error_code)
471{
472 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
473}
474
Zhang Xiantaoec6d2732007-11-19 15:08:31 +0800475#define ASM_VMX_VMCLEAR_RAX ".byte 0x66, 0x0f, 0xc7, 0x30"
476#define ASM_VMX_VMLAUNCH ".byte 0x0f, 0x01, 0xc2"
477#define ASM_VMX_VMRESUME ".byte 0x0f, 0x01, 0xc3"
478#define ASM_VMX_VMPTRLD_RAX ".byte 0x0f, 0xc7, 0x30"
479#define ASM_VMX_VMREAD_RDX_RAX ".byte 0x0f, 0x78, 0xd0"
480#define ASM_VMX_VMWRITE_RAX_RDX ".byte 0x0f, 0x79, 0xd0"
481#define ASM_VMX_VMWRITE_RSP_RDX ".byte 0x0f, 0x79, 0xd4"
482#define ASM_VMX_VMXOFF ".byte 0x0f, 0x01, 0xc4"
483#define ASM_VMX_VMXON_RAX ".byte 0xf3, 0x0f, 0xc7, 0x30"
484
485#define MSR_IA32_TIME_STAMP_COUNTER 0x010
486
487#define TSS_IOPB_BASE_OFFSET 0x66
488#define TSS_BASE_SIZE 0x68
489#define TSS_IOPB_SIZE (65536 / 8)
490#define TSS_REDIRECTION_SIZE (256 / 8)
491#define RMODE_TSS_SIZE (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1)
Hollis Blanchard53e0aa72007-12-03 16:15:26 -0600492
493static inline int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
494{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800495 return vcpu->arch.mp_state == VCPU_MP_STATE_RUNNABLE
496 || vcpu->arch.mp_state == VCPU_MP_STATE_SIPI_RECEIVED;
Hollis Blanchard53e0aa72007-12-03 16:15:26 -0600497}
498
Carsten Otte043405e2007-10-10 17:16:19 +0200499#endif