Ignore:
File:
1 edited

Legend:

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

    r63e27ef r560b81c  
    4141#include <arch/mm/mmu.h>
    4242#include <arch/interrupt.h>
    43 #include <assert.h>
    4443#include <interrupt.h>
    4544#include <arch.h>
     
    202201        bool found = page_mapping_find(AS, istate->tpc, true, &t);
    203202        if (found && PTE_EXECUTABLE(&t)) {
    204                 assert(t.p);
     203                ASSERT(t.p);
    205204
    206205                /*
     
    259258        bool found = page_mapping_find(as, page_16k, true, &t);
    260259        if (found) {
    261                 assert(t.p);
     260                ASSERT(t.p);
    262261
    263262                /*
     
    302301        bool found = page_mapping_find(as, page_16k, true, &t);
    303302        if (found && PTE_WRITABLE(&t)) {
    304                 assert(t.p);
     303                ASSERT(t.p);
    305304
    306305                /*
Note: See TracChangeset for help on using the changeset viewer.