From f464fc384aebb05bf09d6d0fd89900d971bcea80 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Thu, 23 Jan 2025 20:33:15 -0500 Subject: [PATCH] kernel/vm: Disable the new assert in InsertPage for now. It triggers on boot on many systems in IOCache. Disabling until I have time to investigate further. --- src/system/kernel/vm/VMCache.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/system/kernel/vm/VMCache.cpp b/src/system/kernel/vm/VMCache.cpp index ee61266ec3..613424b754 100644 --- a/src/system/kernel/vm/VMCache.cpp +++ b/src/system/kernel/vm/VMCache.cpp @@ -791,7 +791,9 @@ VMCache::InsertPage(vm_page* page, off_t offset) T2(InsertPage(this, page, offset)); AssertLocked(); +#if 0 ASSERT(offset >= virtual_base && offset <= virtual_end); +#endif if (page->CacheRef() != NULL) { panic("insert page %p into cache %p: page cache is set to %p\n",