Lines Matching defs:vcpu_svm
250 struct vcpu_svm { struct
251 struct kvm_vcpu vcpu;
253 struct vmcb *vmcb;
254 struct kvm_vmcb_info vmcb01;
255 struct kvm_vmcb_info *current_vmcb;
256 u32 asid;
257 u32 sysenter_esp_hi;
258 u32 sysenter_eip_hi;
259 uint64_t tsc_aux;
261 u64 msr_decfg;
263 u64 next_rip;
265 u64 spec_ctrl;
267 u64 tsc_ratio_msr;
273 u64 virt_spec_ctrl;
275 void *msrpm;
277 ulong nmi_iret_rip;
279 struct svm_nested_state nested;
282 bool nmi_masked;
289 bool awaiting_iret_completion;
298 bool nmi_singlestep;
299 u64 nmi_singlestep_guest_rflags;
301 bool nmi_l1_to_l2;
303 unsigned long soft_int_csbase;
304 unsigned long soft_int_old_rip;
305 unsigned long soft_int_next_rip;
306 bool soft_int_injected;
308 u32 ldr_reg;
309 u32 dfr_reg;
317 u64 avic_physical_id_entry;
327 struct list_head ir_list;
328 spinlock_t ir_list_lock;
330 struct vcpu_sev_es_state sev_es;
332 bool guest_state_loaded;
357 void recalc_intercepts(struct vcpu_svm *svm); argument