diff options
author | dg <dg@FreeBSD.org> | 1994-10-05 09:48:45 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-10-05 09:48:45 +0000 |
commit | 52b4dc9c30d3103c53b99bb28b17fb2a972a012b (patch) | |
tree | 9c109936447aaa693cde32bdf5eba383172d10b9 /sys/vm/vm_object.c | |
parent | 66cba7eaa57d9b5f9afa015d93715f53ea5a8fd6 (diff) | |
download | FreeBSD-src-52b4dc9c30d3103c53b99bb28b17fb2a972a012b.zip FreeBSD-src-52b4dc9c30d3103c53b99bb28b17fb2a972a012b.tar.gz |
Stuff object into v_vmdata rather than pager. Not important which at
the moment, but will be in the future. Other changes mostly cosmetic,
but are made for future VMIO considerations.
Submitted by: John Dyson
Diffstat (limited to 'sys/vm/vm_object.c')
-rw-r--r-- | sys/vm/vm_object.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c index 8ec42f3..49849ca 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.5 1994/08/18 22:36:06 wollman Exp $ + * $Id: vm_object.c,v 1.6 1994/08/27 16:14:39 davidg Exp $ */ /* @@ -657,7 +657,7 @@ vm_object_cache_trim() vm_object_cache_unlock(); if (object != vm_object_lookup(object->pager)) - panic("vm_object_deactivate: I'm sooo confused."); + panic("vm_object_cache_trim: I'm sooo confused."); pager_cache(object, FALSE); |