search for: pmap_t

Displaying 1 result from an estimated 1 matches for "pmap_t".

2003 Aug 22
3
PAE removal patch for testing
...#define pmap_pte_set_w(pte, v) ((v)?(*(int *)pte |= PG_W):(*(int *)pte &= ~PG_W)) +#define pmap_pte_set_prot(pte, v) ((*(int *)pte &= ~PG_PROT), (*(int *)pte |= (v))) /* * Given a map and a machine independent protection code, @@ -183,8 +149,8 @@ static struct pmap kernel_pmap_store; pmap_t kernel_pmap; -vm_paddr_t avail_start; /* PA of first available physical page */ -vm_paddr_t avail_end; /* PA of last available physical page */ +vm_offset_t avail_start; /* PA of first available physical page */ +vm_offset_t avail_end; /* PA of last available physical page */ vm_offset_t virtua...