Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/mm/sun4v/tlb.c

    r63e27ef r560b81c  
    4343#include <arch/mm/tlb.h>
    4444#include <arch/interrupt.h>
    45 #include <assert.h>
    4645#include <interrupt.h>
    4746#include <arch.h>
     
    216215        bool found = page_mapping_find(AS, va, true, &t);
    217216        if (found && PTE_EXECUTABLE(&t)) {
    218                 assert(t.p);
     217                ASSERT(t.p);
    219218
    220219                /*
     
    266265        bool found = page_mapping_find(as, va, true, &t);
    267266        if (found) {
    268                 assert(t.p);
     267                ASSERT(t.p);
    269268
    270269                /*
     
    304303        bool found = page_mapping_find(as, va, true, &t);
    305304        if (found && PTE_WRITABLE(&t)) {
    306                 assert(t.p);
     305                ASSERT(t.p);
    307306
    308307                /*
     
    346345        __hypercall_fast_ret1(0, 0, 0, 0, 0, CPU_MYID, &myid);
    347346
    348         assert(mmu_fsas[myid].dft < 16);
     347        ASSERT(mmu_fsas[myid].dft < 16);
    349348
    350349        printf("condition which caused the fault: %s\n",
Note: See TracChangeset for help on using the changeset viewer.