Remove the last vestiges of "vm_map_t phys_map". It's been unused

since i386/i386/machdep.c rev 1.45 (or 1994 :-) ).
This commit is contained in:
Alan Cox 1999-10-29 05:17:20 +00:00
parent ff6a49c924
commit 02577fa23e
3 changed files with 0 additions and 4 deletions

View File

@ -91,7 +91,6 @@ vm_map_t clean_map=0;
vm_map_t buffer_map=0;
vm_map_t mb_map=0;
int mb_map_full=0;
vm_map_t phys_map=0;
/*
* kmem_alloc_pageable:

View File

@ -74,7 +74,6 @@ extern vm_map_t kmem_map;
extern vm_map_t mb_map;
extern int mb_map_full;
extern vm_map_t clean_map;
extern vm_map_t phys_map;
extern vm_map_t exec_map;
extern vm_offset_t kernel_vm_end;

View File

@ -1606,8 +1606,6 @@ vm_object_in_map( object)
return 1;
if( _vm_object_in_map( buffer_map, object, 0))
return 1;
if( _vm_object_in_map( phys_map, object, 0))
return 1;
if( _vm_object_in_map( mb_map, object, 0))
return 1;
return 0;