]> Zhao Yanbai Git Server - minix.git/commitdiff
Overly restrictive assert
authorTomas Hruby <tom@minix3.org>
Wed, 21 Jul 2010 13:46:29 +0000 (13:46 +0000)
committerTomas Hruby <tom@minix3.org>
Wed, 21 Jul 2010 13:46:29 +0000 (13:46 +0000)
- not true if APIC is enabled

servers/vm/arch/i386/pagetable.c

index 88005138141f1776aa12c56cc06e217640f63c23..3675083726032742d50e2e1e53d5f159c6065eee 100644 (file)
@@ -469,7 +469,7 @@ PUBLIC int pt_ptalloc_in_range(pt_t *pt, vir_bytes start, vir_bytes end,
 
        first_pde = start ? I386_VM_PDE(start) : proc_pde;
        last_pde = end ? I386_VM_PDE(end) : I386_VM_DIR_ENTRIES - 1;
-       assert(first_pde >= proc_pde && first_pde <= last_pde);
+       assert(first_pde >= 0);
        assert(last_pde < I386_VM_DIR_ENTRIES);
 
        /* Scan all page-directory entries in the range. */