1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-23 11:18:54 +00:00

Remove avail_end. As of yesterday, it is unused.

This commit is contained in:
Alan Cox 2004-04-06 01:38:28 +00:00
parent 9a80fddc71
commit a3b706071c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=127922
2 changed files with 0 additions and 3 deletions

View File

@ -177,7 +177,6 @@ int protection_codes[2][8];
*/
struct pmap kernel_pmap_store;
vm_offset_t avail_end; /* PA of last available physical page */
vm_offset_t virtual_avail; /* VA of first avail page (after kernel bss) */
vm_offset_t virtual_end; /* VA of last avail page (end of kernel AS) */
static boolean_t pmap_initialized = FALSE; /* Has pmap_init completed? */
@ -368,7 +367,6 @@ pmap_bootstrap()
VM_GATEWAY_SIZE;
for (i = 0; phys_avail[i+2]; i+= 2) ;
avail_end = phys_avail[i+1];
count = i+2;
/*

View File

@ -107,7 +107,6 @@ typedef struct pv_entry {
#ifdef _KERNEL
extern vm_offset_t avail_end;
extern vm_offset_t phys_avail[];
extern vm_offset_t virtual_avail;
extern vm_offset_t virtual_end;