Ignore:
File:
1 edited

Legend:

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

    ra000878c r77f65df  
    5454#include <arch/cpu.h>
    5555#include <arch/mm/pagesize.h>
    56 #include <genarch/mm/page_ht.h>
    5756
    5857#ifdef CONFIG_TSB
     
    8988 * field of the MMU fault status area is i.
    9089 */
    91 static const char *fault_types[] = {
     90char *fault_types[] = {
    9291        "unknown",
    9392        "fast miss",
     
    107106        "invalid page size"
    108107        };
     108       
    109109
    110110/** Array of MMU fault status areas. */
     
    405405        uint64_t errno =  __hypercall_fast3(MMU_DEMAP_ALL, 0, 0,
    406406                MMU_FLAG_DTLB | MMU_FLAG_ITLB);
    407         if (errno != HV_EOK) {
     407        if (errno != EOK) {
    408408                panic("Error code = %d.\n", errno);
    409409        }
Note: See TracChangeset for help on using the changeset viewer.