Lines Matching full:ve
605 * fail, and, as a practical matter, we've overflowed the in DEFINE_IDTENTRY_DF()
1462 #define VE_FAULT_STR "VE fault"
1481 * Virtualization Exceptions (#VE) are delivered to TDX guests due to
1502 * MMIO regions, use #VE triggering MSRs, instructions, or CPUID leaves
1503 * that might generate #VE. VMM can remove memory from TD at any point,
1505 * termination, not to #VE.
1510 * During #VE delivery, all interrupts, including NMIs, are blocked until
1511 * TDGETVEINFO is called. It prevents #VE nesting until the kernel reads
1512 * the VE info.
1514 * If a guest kernel action which would normally cause a #VE occurs in
1520 * aspect. Similarly to #PF, #VE in these places will expose kernel to
1525 struct ve_info ve; in DEFINE_IDTENTRY() local
1529 * till TDGETVEINFO TDCALL is executed. This ensures that VE in DEFINE_IDTENTRY()
1530 * info cannot be overwritten by a nested #VE. in DEFINE_IDTENTRY()
1532 tdx_get_ve_info(&ve); in DEFINE_IDTENTRY()
1540 if (!tdx_handle_virt_exception(regs, &ve)) in DEFINE_IDTENTRY()
1541 ve_raise_fault(regs, 0, ve.gla); in DEFINE_IDTENTRY()