MIPS_MMU
return (pte & MIPS_MMU(PG_V)) != 0;
return (pte & MIPS_MMU(PG_D)) != 0;
return (pte & MIPS_MMU(PG_G)) != 0;
return (pte & MIPS_MMU(PG_WIRED)) != 0;
return pte | MIPS_MMU(PG_WIRED);
return pte & ~MIPS_MMU(PG_WIRED);
return (pte & MIPS_MMU(PG_RO)) != 0;
const uint32_t ro_bit = MIPS_MMU(PG_RO);
const uint32_t rw_bit = MIPS_MMU(PG_D);
return pte & ~MIPS_MMU(PG_D);