commit c230200e757ff33773e54a2351aca5b7d5ddaa90
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Dec 28 18:21:57 2025 +0100

    vm_page: drop spurious change

diff --git a/vm/vm_page.c b/vm/vm_page.c
index ba3a52ff..edfaf927 100644
--- a/vm/vm_page.c
+++ b/vm/vm_page.c
@@ -48,7 +48,6 @@
 #include <vm/memory_object.h>
 #include <vm/vm_page.h>
 #include <vm/vm_pageout.h>
-#include <vm/vm_print.h>
 
 #define DEBUG 0
 
@@ -754,21 +753,6 @@ vm_page_seg_add_active_page(struct vm_page_seg *seg, struct vm_page *page)
     assert(page->seg_index == vm_page_seg_index(seg));
     assert(page->type != VM_PT_FREE);
     assert(page->order == VM_PAGE_ORDER_UNLISTED);
-if (page->free)
-{
-  vm_page_print(page);
-panic("page is free");
-}
-if (page->active)
-{
-  vm_page_print(page);
-panic("page is active");
-}
-if (page->inactive)
-{
-  vm_page_print(page);
-panic("page is inactive");
-}
     assert(!page->free && !page->active && !page->inactive);
     page->active = TRUE;
     page->reference = TRUE;
