Lines Matching full:ve
457 * fail, and, as a practical matter, we've overflowed the in DEFINE_IDTENTRY_DF()
1273 #define VE_FAULT_STR "VE fault"
1292 * Virtualization Exceptions (#VE) are delivered to TDX guests due to
1313 * MMIO regions, use #VE triggering MSRs, instructions, or CPUID leaves
1314 * that might generate #VE. VMM can remove memory from TD at any point,
1316 * termination, not to #VE.
1321 * During #VE delivery, all interrupts, including NMIs, are blocked until
1322 * TDGETVEINFO is called. It prevents #VE nesting until the kernel reads
1323 * the VE info.
1325 * If a guest kernel action which would normally cause a #VE occurs in
1331 * aspect. Similarly to #PF, #VE in these places will expose kernel to
1336 struct ve_info ve; in DEFINE_IDTENTRY() local
1340 * till TDGETVEINFO TDCALL is executed. This ensures that VE in DEFINE_IDTENTRY()
1341 * info cannot be overwritten by a nested #VE. in DEFINE_IDTENTRY()
1343 tdx_get_ve_info(&ve); in DEFINE_IDTENTRY()
1351 if (!tdx_handle_virt_exception(regs, &ve)) in DEFINE_IDTENTRY()
1352 ve_raise_fault(regs, 0, ve.gla); in DEFINE_IDTENTRY()