diff options
author | peter <peter@FreeBSD.org> | 1997-06-22 15:47:16 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-06-22 15:47:16 +0000 |
commit | e0245a10b266a1abf80916d730d18966653de374 (patch) | |
tree | 8091fc02d41d7423f59df1cedbe8d799147da4ee /sys/vm | |
parent | f4c30626def2b0ef09a5c7cd31772bd834d5d877 (diff) | |
download | FreeBSD-src-e0245a10b266a1abf80916d730d18966653de374.zip FreeBSD-src-e0245a10b266a1abf80916d730d18966653de374.tar.gz |
Kill some stale leftovers from the earlier attempts at SMP per-cpu pages
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_kern.c | 7 | ||||
-rw-r--r-- | sys/vm/vm_kern.h | 3 | ||||
-rw-r--r-- | sys/vm/vm_object.c | 7 |
3 files changed, 3 insertions, 14 deletions
diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c index d218d41..2fa675d 100644 --- a/sys/vm/vm_kern.c +++ b/sys/vm/vm_kern.c @@ -61,13 +61,12 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_kern.c,v 1.35 1997/04/26 11:46:23 peter Exp $ + * $Id: vm_kern.c,v 1.36 1997/05/29 02:57:22 peter Exp $ */ /* * Kernel memory management. */ -#include "opt_smp_privpages.h" #include <sys/param.h> #include <sys/systm.h> @@ -100,10 +99,6 @@ vm_map_t mb_map=0; int mb_map_full=0; vm_map_t io_map=0; vm_map_t phys_map=0; -#if defined(SMP) && defined(SMP_PRIVPAGES) -vm_map_t ppage_map=0; -#endif - /* * kmem_alloc_pageable: diff --git a/sys/vm/vm_kern.h b/sys/vm/vm_kern.h index 5d85318..dbf06fa 100644 --- a/sys/vm/vm_kern.h +++ b/sys/vm/vm_kern.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_kern.h,v 1.13 1997/03/31 11:11:26 davidg Exp $ + * $Id: vm_kern.h,v 1.14 1997/04/26 11:46:23 peter Exp $ */ #ifndef _VM_VM_KERN_H_ @@ -78,7 +78,6 @@ extern vm_map_t clean_map; extern vm_map_t phys_map; extern vm_map_t exec_map; extern vm_map_t u_map; -extern vm_map_t ppage_map; extern vm_offset_t kernel_vm_end; /* XXX - elsewhere? */ diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c index 63f3552..59d20e0 100644 --- a/sys/vm/vm_object.c +++ b/sys/vm/vm_object.c @@ -61,13 +61,12 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_object.c,v 1.92 1997/05/29 02:57:22 peter Exp $ + * $Id: vm_object.c,v 1.93 1997/06/22 03:00:24 dyson Exp $ */ /* * Virtual memory object module. */ -#include "opt_smp_privpages.h" #include <sys/param.h> #include <sys/systm.h> @@ -1455,10 +1454,6 @@ vm_object_in_map( object) return 1; if( _vm_object_in_map( u_map, object, 0)) return 1; -#if defined(SMP) && defined(SMP_PRIVPAGES) - if( _vm_object_in_map( ppage_map, object, 0)) - return 1; -#endif return 0; } |