HomeSort by: relevance | last modified time | path
    Searched defs:PV_WIRED (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/usermode/usermode/
pmap.c 57 #define PV_WIRED 0x01 /* wired mapping */
860 if (vflags & (PV_UNMANAGED | PV_WIRED))
916 if (pv->pv_vflags & PV_WIRED)
927 pv->pv_vflags |= PV_WIRED;
944 if (pv->pv_vflags & PV_WIRED)
1025 if (pv->pv_vflags & PV_WIRED)
1106 if ((pv->pv_vflags & PV_WIRED) == 0)
1109 pv->pv_vflags &= ~PV_WIRED;
1315 if (pv->pv_vflags & PV_WIRED)
  /src/sys/arch/powerpc/ibm4xx/
pmap.c 156 #define PV_WIRED 0x1
157 #define PV_WIRE(pv) ((pv)->pv_va |= PV_WIRED)
158 #define PV_UNWIRE(pv) ((pv)->pv_va &= ~PV_WIRED)
159 #define PV_ISWIRED(pv) ((pv)->pv_va & PV_WIRED)
160 #define PV_VA(pv) ((pv)->pv_va & ~PV_WIRED)

Completed in 12 milliseconds