HACK HACK HACK: disable an ASSERT

We need proper IPIs to flush the TLB
This commit is contained in:
Timo Kreuzer 2024-09-23 15:14:56 +03:00
parent 5faf6ed339
commit b036b616ea

View file

@ -2423,7 +2423,7 @@ MiProtectVirtualMemory(IN PEPROCESS Process,
MI_WRITE_INVALID_PTE(PointerPte, PteContents); MI_WRITE_INVALID_PTE(PointerPte, PteContents);
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
// FIXME: Should invalidate entry in every CPU TLB // FIXME: Should invalidate entry in every CPU TLB
ASSERT(KeNumberProcessors == 1); //ASSERT(KeNumberProcessors == 1);
#endif #endif
KeInvalidateTlbEntry(MiPteToAddress(PointerPte)); KeInvalidateTlbEntry(MiPteToAddress(PointerPte));