summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_object.c
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>1999-06-20 21:47:02 +0000
committeralc <alc@FreeBSD.org>1999-06-20 21:47:02 +0000
commit72c18c01ff96c52afa43173ccb123b3feaf1395f (patch)
treeabe01032141e872c8c34906e1187359a916b4ade /sys/vm/vm_object.c
parent24b8cb9aaa25c2ca99fb547bda3bfb21f890e3aa (diff)
downloadFreeBSD-src-72c18c01ff96c52afa43173ccb123b3feaf1395f.zip
FreeBSD-src-72c18c01ff96c52afa43173ccb123b3feaf1395f.tar.gz
Remove vm_object::cache_count and vm_object::wired_count. They are
not used. (Nor is there any planned use by John who introduced them.) Reviewed by: "John S. Dyson" <toor@dyson.iquest.net>
Diffstat (limited to 'sys/vm/vm_object.c')
-rw-r--r--sys/vm/vm_object.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c
index 010ea28..ceffb96 100644
--- a/sys/vm/vm_object.c
+++ b/sys/vm/vm_object.c
@@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_object.c,v 1.155 1999/05/28 03:39:44 alc Exp $
+ * $Id: vm_object.c,v 1.156 1999/05/30 01:12:19 alc Exp $
*/
/*
@@ -157,8 +157,6 @@ _vm_object_allocate(type, size, object)
object->behavior = OBJ_NORMAL;
object->paging_in_progress = 0;
object->resident_page_count = 0;
- object->cache_count = 0;
- object->wire_count = 0;
object->shadow_count = 0;
object->pg_color = next_index;
if ( size > (PQ_L2_SIZE / 3 + PQ_PRIME1))
OpenPOWER on IntegriCloud