NetBSD/sys/vm/vm_object.c

1854 lines
46 KiB
C
Raw Normal View History

1997-02-05 11:26:25 +03:00
/* $NetBSD: vm_object.c,v 1.40 1997/02/05 08:26:25 mrg Exp $ */
1993-03-21 12:45:37 +03:00
/*
1994-05-23 07:11:20 +04:00
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* This code is derived from software contributed to Berkeley by
* The Mach Operating System project at Carnegie-Mellon University.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)vm_object.c 8.5 (Berkeley) 3/22/94
1993-03-21 12:45:37 +03:00
*
*
* Copyright (c) 1987, 1990 Carnegie-Mellon University.
* All rights reserved.
*
* Authors: Avadis Tevanian, Jr., Michael Wayne Young
*
* Permission to use, copy, modify and distribute this software and
* its documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
/*
1997-02-05 10:48:42 +03:00
* Virtual memory object module.
1993-03-21 12:45:37 +03:00
*/
1993-12-17 10:56:32 +03:00
#include <sys/param.h>
#include <sys/systm.h>
1994-05-23 07:11:20 +04:00
#include <sys/malloc.h>
#include <sys/proc.h>
1993-03-21 12:45:37 +03:00
1993-12-17 10:56:32 +03:00
#include <vm/vm.h>
#include <vm/vm_page.h>
#include <vm/vm_pageout.h>
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* Virtual memory objects maintain the actual data
* associated with allocated virtual memory. A given
* page of memory exists within exactly one object.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* An object is only deallocated when all "references"
* are given up. Only one "reference" to a given
* region of an object should be writeable.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Associated with each object is a list of all resident
* memory pages belonging to that object; this list is
* maintained by the "vm_page" module, and locked by the object's
* lock.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Each object also records a "pager" routine which is
* used to retrieve (and store) pages to the proper backing
* storage. In addition, objects may be backed by other
* objects from which they were virtual-copied.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* The only items within the object structure which are
* modified after time of creation are:
* reference count locked by object's lock
* pager routine locked by object's lock
1993-03-21 12:45:37 +03:00
*
*/
struct vm_object kernel_object_store;
struct vm_object kmem_object_store;
#define VM_OBJECT_HASH_COUNT 157
int vm_cache_max = 100; /* can patch if necessary */
struct vm_object_hash_head vm_object_hashtable[VM_OBJECT_HASH_COUNT];
1993-03-21 12:45:37 +03:00
long object_collapses = 0;
long object_bypasses = 0;
boolean_t vm_object_collapse_allowed = TRUE;
1993-03-21 12:45:37 +03:00
#ifndef VMDEBUG
#define VMDEBUG 0
#endif
#ifdef DEBUG
#define VMDEBUG_SHADOW 0x1
#define VMDEBUG_SHADOW_VERBOSE 0x2
#define VMDEBUG_COLLAPSE 0x4
#define VMDEBUG_COLLAPSE_PAGEIN 0x8
int vmdebug = VMDEBUG;
#endif
static void _vm_object_allocate __P((vm_size_t, vm_object_t));
int vm_object_collapse_aux __P((vm_object_t));
int vm_object_bypass __P((vm_object_t));
void vm_object_set_shadow __P((vm_object_t, vm_object_t));
int vm_object_remove_from_pager
__P((vm_object_t, vm_offset_t, vm_offset_t));
1994-05-23 07:11:20 +04:00
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* vm_object_init:
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Initialize the VM objects module.
1993-03-21 12:45:37 +03:00
*/
void
1994-05-23 07:11:20 +04:00
vm_object_init(size)
vm_size_t size;
1993-03-21 12:45:37 +03:00
{
register int i;
TAILQ_INIT(&vm_object_cached_list);
TAILQ_INIT(&vm_object_list);
1993-03-21 12:45:37 +03:00
vm_object_count = 0;
simple_lock_init(&vm_cache_lock);
simple_lock_init(&vm_object_list_lock);
for (i = 0; i < VM_OBJECT_HASH_COUNT; i++)
TAILQ_INIT(&vm_object_hashtable[i]);
1993-03-21 12:45:37 +03:00
kernel_object = &kernel_object_store;
1994-05-23 07:11:20 +04:00
_vm_object_allocate(size, kernel_object);
1993-03-21 12:45:37 +03:00
kmem_object = &kmem_object_store;
_vm_object_allocate(VM_KMEM_SIZE + VM_MBUF_SIZE, kmem_object);
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_allocate:
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Returns a new object with the given size.
1993-03-21 12:45:37 +03:00
*/
vm_object_t
vm_object_allocate(size)
1993-03-21 12:45:37 +03:00
vm_size_t size;
{
register vm_object_t result;
result = (vm_object_t)
malloc((u_long)sizeof *result, M_VMOBJ, M_WAITOK);
_vm_object_allocate(size, result);
return(result);
}
static void
1993-03-21 12:45:37 +03:00
_vm_object_allocate(size, object)
vm_size_t size;
register vm_object_t object;
{
TAILQ_INIT(&object->memq);
1993-03-21 12:45:37 +03:00
vm_object_lock_init(object);
object->ref_count = 1;
object->resident_page_count = 0;
object->size = size;
1994-05-23 07:11:20 +04:00
object->flags = OBJ_INTERNAL; /* vm_allocate_with_pager will reset */
1993-03-21 12:45:37 +03:00
object->paging_in_progress = 0;
object->copy = NULL;
/*
* Object starts out read-write, with no pager.
*/
object->pager = NULL;
object->paging_offset = 0;
object->shadow = NULL;
object->shadow_offset = (vm_offset_t) 0;
LIST_INIT(&object->shadowers);
1993-03-21 12:45:37 +03:00
simple_lock(&vm_object_list_lock);
TAILQ_INSERT_TAIL(&vm_object_list, object, object_list);
1993-03-21 12:45:37 +03:00
vm_object_count++;
1994-05-23 07:11:20 +04:00
cnt.v_nzfod += atop(size);
1993-03-21 12:45:37 +03:00
simple_unlock(&vm_object_list_lock);
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_reference:
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Gets another reference to the given object.
1993-03-21 12:45:37 +03:00
*/
void
vm_object_reference(object)
1993-03-21 12:45:37 +03:00
register vm_object_t object;
{
if (object == NULL)
return;
vm_object_lock(object);
object->ref_count++;
vm_object_unlock(object);
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_deallocate:
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Release a reference to the specified object,
* gained either through a vm_object_allocate
* or a vm_object_reference call. When all references
* are gone, storage associated with this object
* may be relinquished.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* No object may be locked.
1993-03-21 12:45:37 +03:00
*/
void
vm_object_deallocate(object)
1993-03-21 12:45:37 +03:00
register vm_object_t object;
{
/*
1997-02-05 10:48:42 +03:00
* While "temp" is used for other things as well, we
* initialize it to NULL here for being able to check
* if we are in the first revolution of the loop.
*/
vm_object_t temp = NULL;
1993-03-21 12:45:37 +03:00
while (object != NULL) {
/*
1997-02-05 10:48:42 +03:00
* The cache holds a reference (uncounted) to
* the object; we must lock it before removing
* the object.
1993-03-21 12:45:37 +03:00
*/
vm_object_cache_lock();
/*
1997-02-05 10:48:42 +03:00
* Lose the reference
1993-03-21 12:45:37 +03:00
*/
vm_object_lock(object);
if (--(object->ref_count) != 0) {
/*
1997-02-05 10:48:42 +03:00
* If this is a deallocation of a shadow
* reference (which it is unless it's the
* first time round) and this operation made
* us singly-shadowed, try to collapse us
* with our shadower.
*/
vm_object_unlock(object);
if (temp != NULL &&
(temp = object->shadowers.lh_first) != NULL &&
temp->shadowers_list.le_next == NULL) {
vm_object_lock(temp);
vm_object_collapse(temp);
vm_object_unlock(temp);
}
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* If there are still references, then
* we are done.
1993-03-21 12:45:37 +03:00
*/
vm_object_cache_unlock();
return;
}
/*
1997-02-05 10:48:42 +03:00
* See if this object can persist. If so, enter
* it in the cache, then deactivate all of its
* pages.
1993-03-21 12:45:37 +03:00
*/
1993-12-20 15:39:55 +03:00
if (object->flags & OBJ_CANPERSIST) {
1993-03-21 12:45:37 +03:00
TAILQ_INSERT_TAIL(&vm_object_cached_list, object,
cached_list);
1993-03-21 12:45:37 +03:00
vm_object_cached++;
vm_object_cache_unlock();
vm_object_deactivate_pages(object);
vm_object_unlock(object);
vm_object_cache_trim();
return;
}
/*
1997-02-05 10:48:42 +03:00
* Make sure no one can look us up now.
1993-03-21 12:45:37 +03:00
*/
vm_object_remove(object->pager);
vm_object_cache_unlock();
temp = object->shadow;
1997-02-05 10:48:42 +03:00
/* unlocks and deallocates object */
1993-03-21 12:45:37 +03:00
vm_object_terminate(object);
object = temp;
}
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_terminate actually destroys the specified object, freeing
* up all previously used resources.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* The object must be locked.
1993-03-21 12:45:37 +03:00
*/
1994-05-23 07:11:20 +04:00
void
vm_object_terminate(object)
1993-03-21 12:45:37 +03:00
register vm_object_t object;
{
register vm_page_t p;
vm_object_t shadow_object;
/*
* Setters of paging_in_progress might be interested that this object
* is going away as soon as we get a grip on it.
*/
object->flags |= OBJ_FADING;
/*
* Wait until the pageout daemon is through with the object or a
* potential collapse operation is finished.
*/
while (object->paging_in_progress) {
vm_object_sleep(object, object, FALSE, "vostrm");
vm_object_lock(object);
}
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* Detach the object from its shadow if we are the shadow's
* copy.
1993-03-21 12:45:37 +03:00
*/
if ((shadow_object = object->shadow) != NULL) {
vm_object_lock(shadow_object);
vm_object_set_shadow(object, NULL);
1993-03-21 12:45:37 +03:00
if (shadow_object->copy == object)
shadow_object->copy = NULL;
#if 0
else if (shadow_object->copy != NULL)
panic("vm_object_terminate: copy/shadow inconsistency");
#endif
vm_object_unlock(shadow_object);
}
/*
1994-05-23 07:11:20 +04:00
* If not an internal object clean all the pages, removing them
* from paging queues as we go.
*
1994-05-23 07:11:20 +04:00
* XXX need to do something in the event of a cleaning error.
1993-03-21 12:45:37 +03:00
*/
1994-05-23 07:11:20 +04:00
if ((object->flags & OBJ_INTERNAL) == 0) {
(void) vm_object_page_clean(object, 0, 0, TRUE, TRUE);
vm_object_unlock(object);
1993-03-21 12:45:37 +03:00
}
/*
1994-05-23 07:11:20 +04:00
* Now free the pages.
* For internal objects, this also removes them from paging queues.
1993-03-21 12:45:37 +03:00
*/
while ((p = object->memq.tqh_first) != NULL) {
1993-03-21 12:45:37 +03:00
VM_PAGE_CHECK(p);
vm_page_lock_queues();
1993-03-21 12:45:37 +03:00
vm_page_free(p);
1994-05-23 07:11:20 +04:00
cnt.v_pfree++;
vm_page_unlock_queues();
1993-03-21 12:45:37 +03:00
}
if ((object->flags & OBJ_INTERNAL) != 0)
1994-05-23 07:11:20 +04:00
vm_object_unlock(object);
1993-03-21 12:45:37 +03:00
/*
1994-05-23 07:11:20 +04:00
* Let the pager know object is dead.
1993-03-21 12:45:37 +03:00
*/
if (object->pager != NULL)
vm_pager_deallocate(object->pager);
simple_lock(&vm_object_list_lock);
TAILQ_REMOVE(&vm_object_list, object, object_list);
1993-03-21 12:45:37 +03:00
vm_object_count--;
simple_unlock(&vm_object_list_lock);
/*
1994-05-23 07:11:20 +04:00
* Free the space for the object.
1993-03-21 12:45:37 +03:00
*/
free((caddr_t)object, M_VMOBJ);
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_page_clean
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Clean all dirty pages in the specified range of object.
* If syncio is TRUE, page cleaning is done synchronously.
* If de_queue is TRUE, pages are removed from any paging queue
* they were on, otherwise they are left on whatever queue they
* were on before the cleaning operation began.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Odd semantics: if start == end, we clean everything.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* The object must be locked.
1994-05-23 07:11:20 +04:00
*
1997-02-05 10:48:42 +03:00
* Returns TRUE if all was well, FALSE if there was a pager error
* somewhere. We attempt to clean (and dequeue) all pages regardless
* of where an error occurs.
1993-03-21 12:45:37 +03:00
*/
1994-05-23 07:11:20 +04:00
boolean_t
vm_object_page_clean(object, start, end, syncio, de_queue)
1993-03-21 12:45:37 +03:00
register vm_object_t object;
register vm_offset_t start;
register vm_offset_t end;
1994-05-23 07:11:20 +04:00
boolean_t syncio;
boolean_t de_queue;
1993-03-21 12:45:37 +03:00
{
register vm_page_t p;
1996-02-05 04:53:47 +03:00
int onqueue = 0;
1994-05-23 07:11:20 +04:00
boolean_t noerror = TRUE;
if (object == NULL)
return (TRUE);
/*
* If it is an internal object and there is no pager, attempt to
* allocate one. Note that vm_object_collapse may relocate one
* from a collapsed object so we must recheck afterward.
*/
if ((object->flags & OBJ_INTERNAL) && object->pager == NULL) {
vm_object_collapse(object);
if (object->pager == NULL) {
vm_pager_t pager;
1993-03-21 12:45:37 +03:00
1994-05-23 07:11:20 +04:00
vm_object_unlock(object);
pager = vm_pager_allocate(PG_DFLT, (caddr_t)0,
object->size, VM_PROT_ALL,
(vm_offset_t)0);
if (pager)
vm_object_setpager(object, pager, 0, FALSE);
vm_object_lock(object);
}
}
1993-03-21 12:45:37 +03:00
if (object->pager == NULL)
1994-05-23 07:11:20 +04:00
return (FALSE);
1993-03-21 12:45:37 +03:00
again:
1994-05-23 07:11:20 +04:00
/*
* Wait until the pageout daemon is through with the object.
*/
while (object->paging_in_progress) {
vm_object_sleep(object, object, FALSE, "vospgc");
1994-05-23 07:11:20 +04:00
vm_object_lock(object);
}
/*
* Loop through the object page list cleaning as necessary.
*/
for (p = object->memq.tqh_first; p != NULL; p = p->listq.tqe_next) {
1996-02-05 04:53:47 +03:00
if ((start == end || (p->offset >= start && p->offset < end)) &&
!(p->flags & PG_FICTITIOUS)) {
1993-12-20 15:39:55 +03:00
if ((p->flags & PG_CLEAN) &&
pmap_is_modified(VM_PAGE_TO_PHYS(p)))
p->flags &= ~PG_CLEAN;
1994-05-23 07:11:20 +04:00
/*
* Remove the page from any paging queue.
* This needs to be done if either we have been
* explicitly asked to do so or it is about to
* be cleaned (see comment below).
*/
if (de_queue || !(p->flags & PG_CLEAN)) {
vm_page_lock_queues();
if (p->flags & PG_ACTIVE) {
TAILQ_REMOVE(&vm_page_queue_active,
p, pageq);
p->flags &= ~PG_ACTIVE;
cnt.v_active_count--;
onqueue = 1;
} else if (p->flags & PG_INACTIVE) {
TAILQ_REMOVE(&vm_page_queue_inactive,
p, pageq);
p->flags &= ~PG_INACTIVE;
cnt.v_inactive_count--;
onqueue = -1;
} else
onqueue = 0;
vm_page_unlock_queues();
}
/*
* To ensure the state of the page doesn't change
* during the clean operation we do two things.
* First we set the busy bit and write-protect all
* mappings to ensure that write accesses to the
* page block (in vm_fault). Second, we remove
* the page from any paging queue to foil the
* pageout daemon (vm_pageout_scan).
*/
pmap_page_protect(VM_PAGE_TO_PHYS(p), VM_PROT_READ);
1993-12-20 15:39:55 +03:00
if (!(p->flags & PG_CLEAN)) {
p->flags |= PG_BUSY;
#ifdef DIAGNOSTIC
if (object->paging_in_progress == 0xdead)
panic("vm_object_page_clean: "
"object deallocated");
#endif
1993-03-21 12:45:37 +03:00
object->paging_in_progress++;
vm_object_unlock(object);
1994-05-23 07:11:20 +04:00
/*
* XXX if put fails we mark the page as
* clean to avoid an infinite loop.
* Will loose changes to the page.
*/
if (vm_pager_put(object->pager, p, syncio)) {
1996-10-13 01:50:05 +04:00
printf("%s: pager_put error\n",
1996-10-10 21:16:17 +04:00
"vm_object_page_clean");
1994-05-23 07:11:20 +04:00
p->flags |= PG_CLEAN;
noerror = FALSE;
}
1993-03-21 12:45:37 +03:00
vm_object_lock(object);
object->paging_in_progress--;
1994-05-23 07:11:20 +04:00
if (!de_queue && onqueue) {
vm_page_lock_queues();
if (onqueue > 0)
vm_page_activate(p);
else
vm_page_deactivate(p);
vm_page_unlock_queues();
}
1993-12-20 15:39:55 +03:00
p->flags &= ~PG_BUSY;
1993-03-21 12:45:37 +03:00
PAGE_WAKEUP(p);
goto again;
}
}
}
1994-05-23 07:11:20 +04:00
return (noerror);
1993-03-21 12:45:37 +03:00
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_deactivate_pages
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Deactivate all pages in the specified object. (Keep its pages
* in memory even though it is no longer referenced.)
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* The object must be locked.
1993-03-21 12:45:37 +03:00
*/
1994-05-23 07:11:20 +04:00
void
1993-03-21 12:45:37 +03:00
vm_object_deactivate_pages(object)
register vm_object_t object;
{
register vm_page_t p, next;
for (p = object->memq.tqh_first; p != NULL; p = next) {
next = p->listq.tqe_next;
vm_page_lock_queues();
if (p->flags & PG_ACTIVE)
vm_page_deactivate(p);
vm_page_unlock_queues();
1993-03-21 12:45:37 +03:00
}
}
/*
1997-02-05 10:48:42 +03:00
* Trim the object cache to size.
1993-03-21 12:45:37 +03:00
*/
1994-05-23 07:11:20 +04:00
void
1993-03-21 12:45:37 +03:00
vm_object_cache_trim()
{
register vm_object_t object;
vm_object_cache_lock();
while (vm_object_cached > vm_cache_max) {
object = vm_object_cached_list.tqh_first;
1993-03-21 12:45:37 +03:00
vm_object_cache_unlock();
if (object != vm_object_lookup(object->pager))
panic("vm_object_deactivate: I'm sooo confused.");
pager_cache(object, FALSE);
vm_object_cache_lock();
}
vm_object_cache_unlock();
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_pmap_copy:
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Makes all physical pages in the specified
* object range copy-on-write. No writeable
* references to these pages should remain.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* The object must *not* be locked.
1993-03-21 12:45:37 +03:00
*/
void
vm_object_pmap_copy(object, start, end)
1993-03-21 12:45:37 +03:00
register vm_object_t object;
register vm_offset_t start;
register vm_offset_t end;
{
register vm_page_t p;
if (object == NULL)
return;
vm_object_lock(object);
for (p = object->memq.tqh_first; p != NULL; p = p->listq.tqe_next) {
1993-03-21 12:45:37 +03:00
if ((start <= p->offset) && (p->offset < end)) {
pmap_page_protect(VM_PAGE_TO_PHYS(p), VM_PROT_READ);
p->flags |= PG_COPYONWRITE;
1993-03-21 12:45:37 +03:00
}
}
vm_object_unlock(object);
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_pmap_remove:
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Removes all physical pages in the specified
* object range from all physical maps.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* The object must *not* be locked.
1993-03-21 12:45:37 +03:00
*/
void
vm_object_pmap_remove(object, start, end)
1993-03-21 12:45:37 +03:00
register vm_object_t object;
register vm_offset_t start;
register vm_offset_t end;
{
register vm_page_t p;
if (object == NULL)
return;
vm_object_lock(object);
for (p = object->memq.tqh_first; p != NULL; p = p->listq.tqe_next)
1993-03-21 12:45:37 +03:00
if ((start <= p->offset) && (p->offset < end))
pmap_page_protect(VM_PAGE_TO_PHYS(p), VM_PROT_NONE);
vm_object_unlock(object);
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_copy:
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Create a new object which is a copy of an existing
* object, and mark all of the pages in the existing
* object 'copy-on-write'. The new object has one reference.
* Returns the new object.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* May defer the copy until later if the object is not backed
* up by a non-default pager.
1993-03-21 12:45:37 +03:00
*/
void
vm_object_copy(src_object, src_offset, size,
1993-03-21 12:45:37 +03:00
dst_object, dst_offset, src_needs_copy)
register vm_object_t src_object;
vm_offset_t src_offset;
vm_size_t size;
vm_object_t *dst_object; /* OUT */
vm_offset_t *dst_offset; /* OUT */
boolean_t *src_needs_copy; /* OUT */
{
register vm_object_t new_copy;
register vm_object_t old_copy;
vm_offset_t new_start, new_end;
register vm_page_t p;
if (src_object == NULL) {
/*
1997-02-05 10:48:42 +03:00
* Nothing to copy
1993-03-21 12:45:37 +03:00
*/
*dst_object = NULL;
*dst_offset = 0;
*src_needs_copy = FALSE;
return;
}
/*
1997-02-05 10:48:42 +03:00
* If the object's pager is null_pager or the
* default pager, we don't have to make a copy
* of it. Instead, we set the needs copy flag and
* make a shadow later.
1993-03-21 12:45:37 +03:00
*/
vm_object_lock(src_object);
if (src_object->pager == NULL ||
1993-12-20 15:39:55 +03:00
(src_object->flags & OBJ_INTERNAL)) {
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* Make another reference to the object
1993-03-21 12:45:37 +03:00
*/
src_object->ref_count++;
/*
1997-02-05 10:48:42 +03:00
* Mark all of the pages copy-on-write.
1993-03-21 12:45:37 +03:00
*/
for (p = src_object->memq.tqh_first; p; p = p->listq.tqe_next)
1993-03-21 12:45:37 +03:00
if (src_offset <= p->offset &&
p->offset < src_offset + size)
p->flags |= PG_COPYONWRITE;
1993-03-21 12:45:37 +03:00
vm_object_unlock(src_object);
*dst_object = src_object;
*dst_offset = src_offset;
/*
1997-02-05 10:48:42 +03:00
* Must make a shadow when write is desired
1993-03-21 12:45:37 +03:00
*/
*src_needs_copy = TRUE;
return;
}
/*
1997-02-05 10:48:42 +03:00
* Try to collapse the object before copying it.
1993-03-21 12:45:37 +03:00
*/
vm_object_collapse(src_object);
/*
1997-02-05 10:48:42 +03:00
* If the object has a pager, the pager wants to
* see all of the changes. We need a copy-object
* for the changed pages.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* If there is a copy-object, and it is empty,
* no changes have been made to the object since the
* copy-object was made. We can use the same copy-
* object.
1993-03-21 12:45:37 +03:00
*/
1997-02-05 10:48:42 +03:00
Retry1:
1993-03-21 12:45:37 +03:00
old_copy = src_object->copy;
if (old_copy != NULL) {
/*
1997-02-05 10:48:42 +03:00
* Try to get the locks (out of order)
1993-03-21 12:45:37 +03:00
*/
if (!vm_object_lock_try(old_copy)) {
vm_object_unlock(src_object);
1997-02-05 10:48:42 +03:00
/* XXX should spin a bit here... */
1993-03-21 12:45:37 +03:00
vm_object_lock(src_object);
goto Retry1;
}
if (old_copy->resident_page_count == 0 &&
old_copy->pager == NULL) {
/*
1997-02-05 10:48:42 +03:00
* Return another reference to
* the existing copy-object.
1993-03-21 12:45:37 +03:00
*/
old_copy->ref_count++;
vm_object_unlock(old_copy);
vm_object_unlock(src_object);
*dst_object = old_copy;
*dst_offset = src_offset;
*src_needs_copy = FALSE;
return;
}
vm_object_unlock(old_copy);
}
vm_object_unlock(src_object);
/*
1997-02-05 10:48:42 +03:00
* If the object has a pager, the pager wants
* to see all of the changes. We must make
* a copy-object and put the changed pages there.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* The copy-object is always made large enough to
* completely shadow the original object, since
* it may have several users who want to shadow
* the original object at different points.
1993-03-21 12:45:37 +03:00
*/
new_copy = vm_object_allocate(src_object->size);
1997-02-05 10:48:42 +03:00
Retry2:
1993-03-21 12:45:37 +03:00
vm_object_lock(src_object);
/*
1997-02-05 10:48:42 +03:00
* Copy object may have changed while we were unlocked
1993-03-21 12:45:37 +03:00
*/
old_copy = src_object->copy;
if (old_copy != NULL) {
/*
1997-02-05 10:48:42 +03:00
* Try to get the locks (out of order)
1993-03-21 12:45:37 +03:00
*/
if (!vm_object_lock_try(old_copy)) {
vm_object_unlock(src_object);
goto Retry2;
}
/*
1997-02-05 10:48:42 +03:00
* Consistency check
1993-03-21 12:45:37 +03:00
*/
if (old_copy->shadow != src_object ||
old_copy->shadow_offset != (vm_offset_t) 0)
panic("vm_object_copy: copy/shadow inconsistency");
/*
1997-02-05 10:48:42 +03:00
* Make the old copy-object shadow the new one.
* It will receive no more pages from the original
* object. Locking of new_copy not needed. We
* have the only pointer.
1993-03-21 12:45:37 +03:00
*/
1997-02-05 10:48:42 +03:00
src_object->ref_count--;
vm_object_set_shadow(old_copy, new_copy);
1997-02-05 10:48:42 +03:00
new_copy->ref_count++;
vm_object_unlock(old_copy);
1993-03-21 12:45:37 +03:00
}
1997-02-05 10:48:42 +03:00
new_start = (vm_offset_t)0;
new_end = (vm_offset_t)new_copy->size;
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* Point the new copy at the existing object.
1993-03-21 12:45:37 +03:00
*/
vm_object_set_shadow(new_copy, src_object);
1993-03-21 12:45:37 +03:00
new_copy->shadow_offset = new_start;
src_object->ref_count++;
src_object->copy = new_copy;
/*
1997-02-05 10:48:42 +03:00
* Mark all the affected pages of the existing object
* copy-on-write.
1993-03-21 12:45:37 +03:00
*/
for (p = src_object->memq.tqh_first; p != NULL; p = p->listq.tqe_next)
1993-03-21 12:45:37 +03:00
if ((new_start <= p->offset) && (p->offset < new_end))
p->flags |= PG_COPYONWRITE;
1993-03-21 12:45:37 +03:00
vm_object_unlock(src_object);
*dst_object = new_copy;
*dst_offset = src_offset - new_start;
*src_needs_copy = FALSE;
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_shadow:
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Create a new object which is backed by the
* specified existing object range. The source
* object reference is deallocated.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* The new object and offset into that object
* are returned in the source parameters.
*
1997-02-05 10:48:42 +03:00
* The old object should not be locked.
1993-03-21 12:45:37 +03:00
*/
void
vm_object_shadow(object, offset, length)
1993-03-21 12:45:37 +03:00
vm_object_t *object; /* IN/OUT */
vm_offset_t *offset; /* IN/OUT */
vm_size_t length;
{
register vm_object_t source;
register vm_object_t result;
source = *object;
/*
1997-02-05 10:48:42 +03:00
* Allocate a new object with the given length
1993-03-21 12:45:37 +03:00
*/
if ((result = vm_object_allocate(length)) == NULL)
panic("vm_object_shadow: no object for shadowing");
/*
1997-02-05 10:48:42 +03:00
* The new object shadows the source object, adding
* a reference to it. Our caller changes his reference
* to point to the new object, removing a reference to
* the source object. Net result: no change of reference
* count.
1993-03-21 12:45:37 +03:00
*/
vm_object_lock(source);
vm_object_set_shadow(result, source);
vm_object_unlock(source);
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* Store the offset into the source object,
* and fix up the offset into the new object.
1993-03-21 12:45:37 +03:00
*/
result->shadow_offset = *offset;
/*
1997-02-05 10:48:42 +03:00
* Return the new things
1993-03-21 12:45:37 +03:00
*/
*offset = 0;
*object = result;
}
/*
1997-02-05 10:48:42 +03:00
* Set the specified object's pager to the specified pager.
1993-03-21 12:45:37 +03:00
*/
void
vm_object_setpager(object, pager, paging_offset, read_only)
1993-03-21 12:45:37 +03:00
vm_object_t object;
vm_pager_t pager;
vm_offset_t paging_offset;
boolean_t read_only;
{
#ifdef lint
read_only++; /* No longer used */
1994-05-23 07:11:20 +04:00
#endif
1993-03-21 12:45:37 +03:00
vm_object_lock(object); /* XXX ? */
object->pager = pager;
object->paging_offset = paging_offset;
vm_object_unlock(object); /* XXX ? */
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_hash hashes the pager/id pair.
1993-03-21 12:45:37 +03:00
*/
1994-05-23 07:11:20 +04:00
1993-03-21 12:45:37 +03:00
#define vm_object_hash(pager) \
(((unsigned long)pager)%VM_OBJECT_HASH_COUNT)
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* vm_object_lookup looks in the object cache for an object with the
* specified pager and paging id.
1993-03-21 12:45:37 +03:00
*/
vm_object_t
vm_object_lookup(pager)
1993-03-21 12:45:37 +03:00
vm_pager_t pager;
{
register vm_object_hash_entry_t entry;
vm_object_t object;
vm_object_cache_lock();
for (entry = vm_object_hashtable[vm_object_hash(pager)].tqh_first;
entry != NULL;
entry = entry->hash_links.tqe_next) {
1993-03-21 12:45:37 +03:00
object = entry->object;
if (object->pager == pager) {
vm_object_lock(object);
if (object->ref_count == 0) {
TAILQ_REMOVE(&vm_object_cached_list, object,
1994-05-23 07:11:20 +04:00
cached_list);
1993-03-21 12:45:37 +03:00
vm_object_cached--;
}
object->ref_count++;
vm_object_unlock(object);
vm_object_cache_unlock();
return(object);
}
}
vm_object_cache_unlock();
return(NULL);
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_enter enters the specified object/pager/id into
* the hash table.
1993-03-21 12:45:37 +03:00
*/
void
vm_object_enter(object, pager)
1993-03-21 12:45:37 +03:00
vm_object_t object;
vm_pager_t pager;
{
struct vm_object_hash_head *bucket;
1993-03-21 12:45:37 +03:00
register vm_object_hash_entry_t entry;
/*
1997-02-05 10:48:42 +03:00
* We don't cache null objects, and we can't cache
* objects with the null pager.
1993-03-21 12:45:37 +03:00
*/
if (object == NULL)
return;
if (pager == NULL)
return;
bucket = &vm_object_hashtable[vm_object_hash(pager)];
entry = (vm_object_hash_entry_t)
malloc((u_long)sizeof *entry, M_VMOBJHASH, M_WAITOK);
entry->object = object;
1993-12-20 15:39:55 +03:00
object->flags |= OBJ_CANPERSIST;
1993-03-21 12:45:37 +03:00
vm_object_cache_lock();
TAILQ_INSERT_TAIL(bucket, entry, hash_links);
1993-03-21 12:45:37 +03:00
vm_object_cache_unlock();
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_remove:
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Remove the pager from the hash table.
* Note: This assumes that the object cache
* is locked. XXX this should be fixed
* by reorganizing vm_object_deallocate.
1993-03-21 12:45:37 +03:00
*/
1994-05-23 07:11:20 +04:00
void
1993-03-21 12:45:37 +03:00
vm_object_remove(pager)
register vm_pager_t pager;
{
struct vm_object_hash_head *bucket;
1993-03-21 12:45:37 +03:00
register vm_object_hash_entry_t entry;
register vm_object_t object;
bucket = &vm_object_hashtable[vm_object_hash(pager)];
for (entry = bucket->tqh_first;
entry != NULL;
entry = entry->hash_links.tqe_next) {
1993-03-21 12:45:37 +03:00
object = entry->object;
if (object->pager == pager) {
TAILQ_REMOVE(bucket, entry, hash_links);
1993-03-21 12:45:37 +03:00
free((caddr_t)entry, M_VMOBJHASH);
break;
}
}
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_cache_clear removes all objects from the cache.
1993-03-21 12:45:37 +03:00
*/
1994-05-23 07:11:20 +04:00
void
vm_object_cache_clear()
1993-03-21 12:45:37 +03:00
{
register vm_object_t object;
/*
* Remove each object in the cache by scanning down the
* list of cached objects.
*/
vm_object_cache_lock();
while ((object = vm_object_cached_list.tqh_first) != NULL) {
1993-03-21 12:45:37 +03:00
vm_object_cache_unlock();
/*
* Note: it is important that we use vm_object_lookup
* to gain a reference, and not vm_object_reference, because
* the logic for removing an object from the cache lies in
* lookup.
*/
if (object != vm_object_lookup(object->pager))
panic("vm_object_cache_clear: I'm sooo confused.");
pager_cache(object, FALSE);
vm_object_cache_lock();
}
vm_object_cache_unlock();
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_remove_from_pager:
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Tell object's pager that it needn't back the page
* anymore. If the pager ends up empty, deallocate it.
1993-03-21 12:45:37 +03:00
*/
int
vm_object_remove_from_pager(object, from, to)
vm_object_t object;
vm_offset_t from, to;
1993-03-21 12:45:37 +03:00
{
vm_pager_t pager = object->pager;
int cnt = 0;
1993-03-21 12:45:37 +03:00
if (pager == NULL)
return 0;
cnt = vm_pager_remove(pager, from, to);
/* If pager became empty, remove it. */
if (cnt > 0 && vm_pager_count(pager) == 0) {
vm_pager_deallocate(pager);
object->pager = NULL;
}
return(cnt);
}
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
/*
* vm_object_collapse_aux:
*
* Internal function to vm_object_collapse called when
* it has been shown that a collapse operation is likely
* to succeed. We know that the backing object is only
* referenced by me and that paging is not in progress.
*/
int
vm_object_collapse_aux(object)
vm_object_t object;
{
vm_object_t backing_object = object->shadow;
vm_offset_t backing_offset = object->shadow_offset;
vm_size_t size = object->size;
vm_offset_t offset, paged_offset;
vm_page_t backing_page, page = NULL;
#ifdef DEBUG
if (vmdebug & VMDEBUG_COLLAPSE)
printf("vm_object_collapse_aux(0x%p)\n", object);
#endif
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
/*
* The algorithm used is roughly like this:
* (1) Trim a potential pager in the backing
* object so it'll only hold pages in reach.
* (2) Loop over all the resident pages in the
* shadow object and either remove them if
* they are shadowed or move them into the
* shadowing object.
* (3) Loop over the paged out pages in the
* shadow object. Start pageins on those
* that aren't shadowed, and just deallocate
* the others. In each iteration check if
* other users of these objects have caused
* pageins resulting in new resident pages.
* This can happen while we are waiting for
* a pagein of ours. If such resident pages
* turn up, restart from (2).
*/
/*
* As a first measure we know we can discard
* everything that the shadowing object doesn't
* shadow.
*/
if (backing_object->pager != NULL) {
if (backing_offset > 0)
vm_object_remove_from_pager(backing_object, 0,
backing_offset);
if (backing_offset + size < backing_object->size)
vm_object_remove_from_pager(backing_object,
backing_offset + size, backing_object->size);
1997-02-05 10:48:42 +03:00
}
/*
* This is the outer loop, iterating until all resident and
* paged out pages in the shadow object are drained.
*/
paged_offset = 0;
while (backing_object->memq.tqh_first != NULL ||
backing_object->pager != NULL) {
/*
1997-02-05 10:48:42 +03:00
* First of all get rid of resident pages in the
* backing object. We can guarantee to remove
* every page thus we can write the while-test
* like this.
1993-03-21 12:45:37 +03:00
*/
while ((backing_page = backing_object->memq.tqh_first) !=
NULL) {
/*
1997-02-05 10:48:42 +03:00
* If the page is outside the shadowing object's
* range or if the page is shadowed (either by a
* resident "non-fake" page or a paged out one) we
* can discard it right away. Otherwise we need
* to move the page to the shadowing object,
* perhaps waking up waiters for "fake" pages
* first.
*/
if (backing_page->offset < backing_offset ||
(offset = backing_page->offset - backing_offset) >=
size ||
((page = vm_page_lookup(object, offset)) != NULL &&
!(page->flags & PG_FAKE)) ||
(object->pager != NULL &&
vm_pager_has_page(object->pager, offset))) {
/*
1997-02-05 10:48:42 +03:00
* Just discard the page, noone needs it.
*/
vm_page_lock_queues();
vm_page_free(backing_page);
vm_page_unlock_queues();
} else {
/*
1997-02-05 10:48:42 +03:00
* If a "fake" page was found, someone may
* be waiting for it. Wake her up and
* then remove the page.
*/
if (page) {
PAGE_WAKEUP(page);
vm_page_lock_queues();
vm_page_free(page);
vm_page_unlock_queues();
1997-02-05 10:48:42 +03:00
}
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
/*
* If the backing page was ever paged out,
* it was due to it being dirty at one
* point. Unless we have no pager
* allocated to the front object (thus
* will move forward the shadow's one),
* mark it dirty again so it won't be
* thrown away without being paged out to
* the front pager.
*/
if (object->pager != NULL &&
vm_object_remove_from_pager(backing_object,
backing_page->offset,
backing_page->offset + PAGE_SIZE))
backing_page->flags &= ~PG_CLEAN;
1997-02-05 10:48:42 +03:00
/* Move the page up front. */
vm_page_rename(backing_page, object, offset);
}
}
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* If there isn't a pager in the shadow object, we're
* ready. Take the easy way out.
1993-03-21 12:45:37 +03:00
*/
if (backing_object->pager == NULL)
break;
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
/*
* If the shadowing object doesn't have a pager
* the easiest thing to do now is to just move the
* backing pager up front and everything is done.
*/
if (object->pager == NULL) {
object->pager = backing_object->pager;
object->paging_offset = backing_object->paging_offset +
backing_offset;
backing_object->pager = NULL;
break;
}
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
/*
* What's left to do is to find all paged out
* pages in the backing pager and either discard
* or move it to the front object. We need to
* recheck the resident page set as a pagein might
* have given other threads the chance to, via
* readfaults, page in another page into the
* resident set. In this case the outer loop must
* get reentered. That is also the case if some other
* thread removes the front pager, a case that has
* been seen...
*/
while (backing_object->memq.tqh_first == NULL &&
backing_object->pager != NULL && object->pager != NULL &&
(paged_offset = vm_pager_next(backing_object->pager,
paged_offset)) < backing_object->size) {
/*
1997-02-05 10:48:42 +03:00
* If the shadowing object has this page, get
* rid of it from the backing pager. Trust
* the loop condition to get us out of here
* quickly if we remove the last paged out page.
*
1997-02-05 10:48:42 +03:00
* XXX Would clustering several pages at a time
* be a win in this situation?
*/
if (((page = vm_page_lookup(object,
paged_offset - backing_offset)) == NULL ||
(page->flags & PG_FAKE)) &&
!vm_pager_has_page(object->pager,
paged_offset - backing_offset)) {
/*
1997-02-05 10:48:42 +03:00
* If a "fake" page was found, someone
* may be waiting for it. Wake her up
* and then remove the page.
1993-03-21 12:45:37 +03:00
*/
if (page) {
PAGE_WAKEUP(page);
vm_page_lock_queues();
vm_page_free(page);
vm_page_unlock_queues();
1993-03-21 12:45:37 +03:00
}
/*
1997-02-05 10:48:42 +03:00
* Suck the page from the pager and give
* it to the shadowing object.
*/
#ifdef DEBUG
if (vmdebug & VMDEBUG_COLLAPSE_PAGEIN)
printf("vm_object_collapse_aux: "
"pagein needed\n");
#endif
/*
1997-02-05 10:48:42 +03:00
* First allocate a page and mark it
* busy so another thread won't try
* to start another pagein.
*/
for (;;) {
backing_page =
vm_page_alloc(backing_object,
paged_offset);
if (backing_page)
break;
VM_WAIT;
1997-02-05 10:48:42 +03:00
}
backing_page->flags |= PG_BUSY;
/*
1997-02-05 10:48:42 +03:00
* Second, start paging it in. If this
* fails, what can we do but punt?
* Even though the shadowing object
* isn't exactly paging we say so in
* order to not get simultaneous
* cascaded collapses.
*/
object->paging_in_progress++;
backing_object->paging_in_progress++;
if (vm_pager_get_pages(backing_object->pager,
&backing_page, 1, TRUE) != VM_PAGER_OK) {
#ifdef DIAGNOSTIC
panic("vm_object_collapse_aux: "
"could not get paged out page");
#endif
return KERN_FAILURE;
1997-02-05 11:26:25 +03:00
}
cnt.v_pgpgin++;
/*
1997-02-05 10:48:42 +03:00
* A fault might have issued other
* pagein operations. We must wait for
* them to complete, then we get to
* wakeup potential other waiters as
* well.
*/
while (backing_object->paging_in_progress != 1
|| object->paging_in_progress != 1) {
if (object->paging_in_progress != 1) {
vm_object_sleep(object, object,
FALSE, "vosca1");
vm_object_lock(object);
continue;
1997-02-05 10:48:42 +03:00
}
vm_object_sleep(backing_object,
backing_object, FALSE, "vosca2");
vm_object_lock(backing_object);
1997-02-05 10:48:42 +03:00
}
backing_object->paging_in_progress--;
object->paging_in_progress--;
thread_wakeup(backing_object);
thread_wakeup(object);
/*
1997-02-05 10:48:42 +03:00
* During the pagein vm_object_terminate
* might have slept on our front object in
* order to remove it. If this is the
* case, we might as well stop all the
* collapse work right here.
*/
if (object->flags & OBJ_FADING) {
PAGE_WAKEUP(backing_page);
return KERN_FAILURE;
}
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
/*
* Third, relookup in case pager changed
* page. Pager is responsible for
* disposition of old page if moved.
*/
backing_page = vm_page_lookup(backing_object,
paged_offset);
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* This page was once dirty, otherwise
* it hadn't been paged out in this
* shadow object. As we now remove the
* persistant store of the page, make
* sure it will be paged out in the
* front pager by dirtying it.
*/
backing_page->flags &= ~(PG_FAKE|PG_CLEAN);
/*
1997-02-05 10:48:42 +03:00
* Fourth, move it up front, and wake up
* potential waiters.
*/
vm_page_rename(backing_page, object,
paged_offset - backing_offset);
PAGE_WAKEUP(backing_page);
}
vm_object_remove_from_pager(backing_object,
paged_offset, paged_offset + PAGE_SIZE);
paged_offset += PAGE_SIZE;
}
}
/*
1997-02-05 10:48:42 +03:00
* I've seen this condition once in an out of VM situation.
* For the moment I don't know why it occurred, although I suspect
* vm_object_page_clean can create a pager even if it won't use
* it.
*/
if (backing_object->pager != NULL &&
vm_pager_count(backing_object->pager) == 0) {
vm_pager_deallocate(backing_object->pager);
1997-02-05 10:48:42 +03:00
backing_object->pager = NULL;
}
1993-03-21 12:45:37 +03:00
#ifdef DIAGNOSTIC
if (backing_object->pager)
panic("vm_object_collapse_aux: backing_object->pager remains");
#endif
1997-02-05 10:48:42 +03:00
/*
* Object now shadows whatever backing_object did.
* Note that the reference to backing_object->shadow
* moves from within backing_object to within object.
*/
if (backing_object->shadow)
vm_object_lock(backing_object->shadow);
vm_object_set_shadow(object, backing_object->shadow);
1997-02-05 10:48:42 +03:00
if (backing_object->shadow) {
vm_object_set_shadow(backing_object, NULL);
vm_object_unlock(backing_object->shadow);
1997-02-05 10:48:42 +03:00
}
object->shadow_offset += backing_object->shadow_offset;
if (object->shadow != NULL && object->shadow->copy != NULL)
panic("vm_object_collapse_aux: we collapsed a copy-object!");
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
/* Fast cleanup is the only thing left now. */
vm_object_unlock(backing_object);
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
simple_lock(&vm_object_list_lock);
TAILQ_REMOVE(&vm_object_list, backing_object, object_list);
1997-02-05 10:48:42 +03:00
vm_object_count--;
simple_unlock(&vm_object_list_lock);
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
free((caddr_t)backing_object, M_VMOBJ);
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
object_collapses++;
return KERN_SUCCESS;
1997-02-05 10:48:42 +03:00
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_bypass:
*
1997-02-05 10:48:42 +03:00
* Internal function to vm_object_collapse called when collapsing
* the object with its backing one is not allowed but there may
* be an opportunity to bypass the backing object and shadow the
* next object in the chain instead.
*/
int
vm_object_bypass(object)
vm_object_t object;
{
register vm_object_t backing_object = object->shadow;
register vm_offset_t backing_offset = object->shadow_offset;
register vm_offset_t new_offset;
register vm_page_t p, pp;
1997-02-05 10:48:42 +03:00
/*
* If all of the pages in the backing object are
* shadowed by the parent object, the parent
* object no longer has to shadow the backing
* object; it can shadow the next one in the
* chain.
*
* The backing object must not be paged out - we'd
* have to check all of the paged-out pages, as
* well.
*/
1993-03-21 12:45:37 +03:00
if (backing_object->pager != NULL)
return KERN_FAILURE;
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
/*
* Should have a check for a 'small' number
* of pages here.
*/
1993-03-21 12:45:37 +03:00
for (p = backing_object->memq.tqh_first; p != NULL;
p = p->listq.tqe_next) {
new_offset = p->offset - backing_offset;
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* If the parent has a page here, or if
* this page falls outside the parent,
* keep going.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Otherwise, the backing_object must be
* left in the chain.
1993-03-21 12:45:37 +03:00
*/
if (p->offset >= backing_offset && new_offset < object->size &&
((pp = vm_page_lookup(object, new_offset)) == NULL ||
1997-02-05 10:48:42 +03:00
(pp->flags & PG_FAKE))) {
/*
* Page still needed. Can't go any further.
1997-02-05 10:48:42 +03:00
*/
return KERN_FAILURE;
1997-02-05 10:48:42 +03:00
}
}
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
/*
* Make the parent shadow the next object
* in the chain. Deallocating backing_object
* will not remove it, since its reference
* count is at least 2.
*/
1993-03-21 12:45:37 +03:00
vm_object_lock(object->shadow);
if (backing_object->shadow)
vm_object_lock(backing_object->shadow);
vm_object_set_shadow(object, backing_object->shadow);
if (backing_object->shadow)
vm_object_unlock(backing_object->shadow);
1997-02-05 10:48:42 +03:00
vm_object_reference(object->shadow);
vm_object_unlock(object->shadow);
1997-02-05 10:48:42 +03:00
object->shadow_offset += backing_object->shadow_offset;
1993-03-21 12:45:37 +03:00
1997-02-05 10:48:42 +03:00
/*
* Backing object might have had a copy pointer
* to us. If it did, clear it.
*/
if (backing_object->copy == object)
1997-02-05 10:48:42 +03:00
backing_object->copy = NULL;
1994-05-23 07:11:20 +04:00
1997-02-05 10:48:42 +03:00
/*
* Drop the reference count on backing_object.
* Since its ref_count was at least 2, it
* will not vanish; so we don't need to call
* vm_object_deallocate.
*/
backing_object->ref_count--;
vm_object_unlock(backing_object);
object_bypasses++;
return KERN_SUCCESS;
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_collapse:
*
1997-02-05 10:48:42 +03:00
* Collapse an object with the object backing it.
* Pages in the backing object are moved into the
* parent, and the backing object is deallocated.
*
1997-02-05 10:48:42 +03:00
* Requires that the object be locked and the page
* queues be unlocked.
*
*/
void
vm_object_collapse(object)
register vm_object_t object;
{
register vm_object_t backing_object;
if (!vm_object_collapse_allowed)
return;
while (TRUE) {
/*
1997-02-05 10:48:42 +03:00
* Verify that the conditions are right for collapse:
*
1997-02-05 10:48:42 +03:00
* The object exists and no pages in it are currently
* being paged out.
*/
if (object == NULL || object->paging_in_progress)
return;
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* There is a backing object, and ...
*/
if ((backing_object = object->shadow) == NULL)
return;
vm_object_lock(backing_object);
/*
1997-02-05 10:48:42 +03:00
* ... the backing object is not read_only,
* and no pages in the backing object are
* currently being paged out.
* The backing object is internal.
*/
if ((backing_object->flags & OBJ_INTERNAL) == 0 ||
backing_object->paging_in_progress != 0) {
vm_object_unlock(backing_object);
return;
}
/*
1997-02-05 10:48:42 +03:00
* The backing object can't be a copy-object:
* the shadow_offset for the copy-object must stay
* as 0. Furthermore (for the 'we have all the
* pages' case), if we bypass backing_object and
* just shadow the next object in the chain, old
* pages from that object would then have to be copied
* BOTH into the (former) backing_object and into the
* parent object.
*/
if (backing_object->shadow != NULL &&
backing_object->shadow->copy != NULL) {
vm_object_unlock(backing_object);
return;
}
/*
1997-02-05 10:48:42 +03:00
* If there is exactly one reference to the backing
* object, we can collapse it into the parent,
* otherwise we might be able to bypass it completely.
*/
if (backing_object->ref_count == 1) {
if (vm_object_collapse_aux(object) != KERN_SUCCESS) {
vm_object_unlock(backing_object);
return;
}
} else
if (vm_object_bypass(object) != KERN_SUCCESS) {
vm_object_unlock(backing_object);
return;
1993-03-21 12:45:37 +03:00
}
/*
1997-02-05 10:48:42 +03:00
* Try again with this object's new backing object.
1993-03-21 12:45:37 +03:00
*/
}
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_page_remove: [internal]
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Removes all physical pages in the specified
* object range from the object's list of pages.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* The object must be locked.
1993-03-21 12:45:37 +03:00
*/
void
vm_object_page_remove(object, start, end)
1993-03-21 12:45:37 +03:00
register vm_object_t object;
register vm_offset_t start;
register vm_offset_t end;
{
register vm_page_t p, next;
if (object == NULL)
return;
for (p = object->memq.tqh_first; p != NULL; p = next) {
next = p->listq.tqe_next;
1993-03-21 12:45:37 +03:00
if ((start <= p->offset) && (p->offset < end)) {
pmap_page_protect(VM_PAGE_TO_PHYS(p), VM_PROT_NONE);
vm_page_lock_queues();
1993-03-21 12:45:37 +03:00
vm_page_free(p);
vm_page_unlock_queues();
1993-03-21 12:45:37 +03:00
}
}
}
/*
1997-02-05 10:48:42 +03:00
* Routine: vm_object_coalesce
* Function: Coalesces two objects backing up adjoining
* regions of memory into a single object.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* returns TRUE if objects were combined.
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* NOTE: Only works at the moment if the second object is NULL -
* if it's not, which object do we lock first?
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Parameters:
* prev_object First object to coalesce
* prev_offset Offset into prev_object
* next_object Second object into coalesce
* next_offset Offset into next_object
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* prev_size Size of reference to prev_object
* next_size Size of reference to next_object
1993-03-21 12:45:37 +03:00
*
1997-02-05 10:48:42 +03:00
* Conditions:
* The object must *not* be locked.
1993-03-21 12:45:37 +03:00
*/
boolean_t
1997-02-05 10:48:42 +03:00
vm_object_coalesce(prev_object, next_object, prev_offset, next_offset,
prev_size, next_size)
register vm_object_t prev_object;
vm_object_t next_object;
vm_offset_t prev_offset, next_offset;
vm_size_t prev_size, next_size;
1993-03-21 12:45:37 +03:00
{
vm_size_t newsize;
#ifdef lint
next_offset++;
1994-05-23 07:11:20 +04:00
#endif
1993-03-21 12:45:37 +03:00
if (next_object != NULL) {
return(FALSE);
}
if (prev_object == NULL) {
return(TRUE);
}
vm_object_lock(prev_object);
/*
* Try to collapse the object first
*/
vm_object_collapse(prev_object);
/*
1997-02-05 10:48:42 +03:00
* Can't coalesce if:
* . more than one reference
* . paged out
* . shadows another object
* . has a copy elsewhere
* (any of which mean that the pages not mapped to
* prev_entry may be in use anyway)
1993-03-21 12:45:37 +03:00
*/
if (prev_object->ref_count > 1 ||
prev_object->pager != NULL ||
prev_object->shadow != NULL ||
prev_object->copy != NULL) {
vm_object_unlock(prev_object);
return(FALSE);
}
/*
1997-02-05 10:48:42 +03:00
* Remove any pages that may still be in the object from
* a previous deallocation.
1993-03-21 12:45:37 +03:00
*/
1997-02-05 10:48:42 +03:00
vm_object_page_remove(prev_object, prev_offset + prev_size,
prev_offset + prev_size + next_size);
1993-03-21 12:45:37 +03:00
/*
1997-02-05 10:48:42 +03:00
* Extend the object if necessary.
1993-03-21 12:45:37 +03:00
*/
newsize = prev_offset + prev_size + next_size;
if (newsize > prev_object->size)
prev_object->size = newsize;
vm_object_unlock(prev_object);
return(TRUE);
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_print: [ debug ]
1993-03-21 12:45:37 +03:00
*/
void
vm_object_print(object, full)
1993-03-21 12:45:37 +03:00
vm_object_t object;
boolean_t full;
{
1996-10-13 01:50:05 +04:00
_vm_object_print(object, full, printf);
}
void
_vm_object_print(object, full, pr)
vm_object_t object;
boolean_t full;
1994-05-23 07:11:20 +04:00
void (*pr) __P((const char *, ...));
1993-03-21 12:45:37 +03:00
{
register vm_page_t p;
char *delim;
vm_object_t o;
1993-03-21 12:45:37 +03:00
register int count;
extern int indent;
1993-03-21 12:45:37 +03:00
if (object == NULL)
return;
iprintf(pr, "Object 0x%lx: size=0x%lx, res=%d, ref=%d, ",
(long) object, (long) object->size,
1993-03-21 12:45:37 +03:00
object->resident_page_count, object->ref_count);
(*pr)("pager=0x%lx+0x%lx, shadow=(0x%lx)+0x%lx\n",
(long) object->pager, (long) object->paging_offset,
(long) object->shadow, (long) object->shadow_offset);
(*pr)("shadowers=(");
delim = "";
for (o = object->shadowers.lh_first; o; o = o->shadowers_list.le_next) {
(*pr)("%s0x%x", delim, o);
delim = ", ";
};
(*pr)(")\n");
(*pr)("cache: next=0x%lx, prev=0x%lx\n",
(long)object->cached_list.tqe_next,
(long)object->cached_list.tqe_prev);
1993-03-21 12:45:37 +03:00
if (!full)
return;
indent += 2;
count = 0;
for (p = object->memq.tqh_first; p != NULL; p = p->listq.tqe_next) {
1993-03-21 12:45:37 +03:00
if (count == 0)
iprintf(pr, "memory:=");
1993-03-21 12:45:37 +03:00
else if (count == 6) {
(*pr)("\n");
iprintf(pr, " ...");
1993-03-21 12:45:37 +03:00
count = 0;
} else
(*pr)(",");
1993-03-21 12:45:37 +03:00
count++;
(*pr)("(off=0x%x,page=0x%x)", p->offset, VM_PAGE_TO_PHYS(p));
1993-03-21 12:45:37 +03:00
}
if (count != 0)
(*pr)("\n");
1993-03-21 12:45:37 +03:00
indent -= 2;
}
/*
1997-02-05 10:48:42 +03:00
* vm_object_set_shadow:
*
1997-02-05 10:48:42 +03:00
* Maintain the shadow graph so that back-link consistency is
* always kept.
*
1997-02-05 10:48:42 +03:00
* Assumes both objects as well as the old shadow to be locked
* (unless NULL of course).
*/
void
vm_object_set_shadow(object, shadow)
vm_object_t object, shadow;
{
vm_object_t old_shadow = object->shadow;
#ifdef DEBUG
if (vmdebug & VMDEBUG_SHADOW)
printf("vm_object_set_shadow(object=0x%p, shadow=0x%p) "
"old_shadow=0x%p\n", object, shadow, old_shadow);
if (vmdebug & VMDEBUG_SHADOW_VERBOSE) {
vm_object_print(object, 0);
vm_object_print(old_shadow, 0);
vm_object_print(shadow, 0);
}
#endif
if (old_shadow == shadow)
return;
if (old_shadow) {
LIST_REMOVE(object, shadowers_list);
}
if (shadow) {
LIST_INSERT_HEAD(&shadow->shadowers, object, shadowers_list);
}
object->shadow = shadow;
#ifdef DEBUG
if (vmdebug & VMDEBUG_SHADOW_VERBOSE) {
vm_object_print(object, 0);
vm_object_print(old_shadow, 0);
vm_object_print(shadow, 0);
}
#endif
}