search for: pg_a

Displaying 2 results from an estimated 2 matches for "pg_a".

Did you mean: p_a
2003 Aug 22
3
PAE removal patch for testing
...) (m[(vm_offset_t)(v) >> PDRSHIFT]) +#define pdir_pde(m, v) (m[(vm_offset_t)(v) >> PDRSHIFT]) -#define pmap_pde_v(pte) ((*pte & PG_V) != 0) -#define pmap_pte_w(pte) ((*pte & PG_W) != 0) -#define pmap_pte_m(pte) ((*pte & PG_M) != 0) -#define pmap_pte_u(pte) ((*pte & PG_A) != 0) -#define pmap_pte_v(pte) ((*pte & PG_V) != 0) +#define pmap_pde_v(pte) ((*(int *)pte & PG_V) != 0) +#define pmap_pte_w(pte) ((*(int *)pte & PG_W) != 0) +#define pmap_pte_m(pte) ((*(int *)pte & PG_M) != 0) +#define pmap_pte_u(pte) ((*(int *)pte & PG_A) != 0) +#define...
2005 Mar 24
0
[patch] small accounting and lockup fix for xenfreebsd on -unstable
...4 13:19:58 -08:00 +++ b/freebsd-5.3-xen-sparse/i386-xen/i386-xen/machdep.c 2005-03-24 13:19:58 -08:00 @@ -1454,10 +1454,6 @@ for (i = 0; i < NKPT-1; i++, tmpindex++) xpq_queue_pt_update(IdlePTD + KPTDI + i + 1, xpmap_ptom((tmpindex << PAGE_SHIFT))| PG_M | PG_RW | PG_V | PG_A); tmpindex += NKPT-1; - - - - tmpindex += NKPT-1; PT_UPDATES_FLUSH(); HYPERVISOR_shared_info = (shared_info_t *)(KERNBASE + (tmpindex << PAGE_SHIFT)); ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest &amp...