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

  /src/sys/arch/alpha/include/
pmap.h 185 /* attrs in pvh_listx */
216 (((pg)->mdpage.pvh_listx & PGA_REFERENCED) != 0)
218 (((pg)->mdpage.pvh_listx & PGA_MODIFIED) != 0)
361 uintptr_t pvh_listx; /* pv_entry list + attrs */ member in struct:vm_page_md
386 ((struct pv_entry *)((pg)->mdpage.pvh_listx & ~3UL))
390 (pg)->mdpage.pvh_listx = 0UL; \
  /src/sys/arch/alpha/alpha/
pmap.c 2369 attrs = (md->pvh_listx |= attrs);
2830 if (md->pvh_listx & PGA_MODIFIED) {
2833 md->pvh_listx &= ~PGA_MODIFIED;
2869 if (md->pvh_listx & PGA_REFERENCED) {
2872 md->pvh_listx &= ~PGA_REFERENCED;
3184 md->pvh_listx |= (PGA_REFERENCED|PGA_MODIFIED);
3187 md->pvh_listx |= PGA_REFERENCED;
3224 printf("pa 0x%lx (attrs = 0x%lx):\n", pa, md->pvh_listx & PGA_ATTRS);
3325 uintptr_t const attrs = md->pvh_listx & PGA_ATTRS;
3326 newpv->pv_next = (struct pv_entry *)(md->pvh_listx & ~PGA_ATTRS)
    [all...]

Completed in 15 milliseconds