summaryrefslogtreecommitdiffstats
path: root/sys/vm
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-03-25 06:09:33 +0000
committerdg <dg@FreeBSD.org>1995-03-25 06:09:33 +0000
commite716d0f4913a95c3b0882111d3fe0644e06ce720 (patch)
treef0031b1bc8b2be9f87b60e037e0f3780fe3be851 /sys/vm
parent46bf8615a4a9d056e1052c6d059a06c299d14a4d (diff)
downloadFreeBSD-src-e716d0f4913a95c3b0882111d3fe0644e06ce720.zip
FreeBSD-src-e716d0f4913a95c3b0882111d3fe0644e06ce720.tar.gz
Removed cnt.v_nzfod: In our current scheme of things it is not possible
to accurately track this. It isn't an indicator of resource consumption anyway. Removed cnt.v_kernel_pages: We don't implement this and doing so accurately would be very difficult (and ambiguous - since process pages are often double mapped in the kernel and the process address spaces).
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_object.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c
index 0a0f22c..9ce5bf5 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.37 1995/03/22 12:24:10 davidg Exp $
+ * $Id: vm_object.c,v 1.38 1995/03/23 05:19:44 davidg Exp $
*/
/*
@@ -151,7 +151,6 @@ _vm_object_allocate(size, object)
simple_lock(&vm_object_list_lock);
TAILQ_INSERT_TAIL(&vm_object_list, object, object_list);
vm_object_count++;
- cnt.v_nzfod += atop(size);
simple_unlock(&vm_object_list_lock);
}
OpenPOWER on IntegriCloud