summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_page.c
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>2008-03-18 06:52:15 +0000
committeralc <alc@FreeBSD.org>2008-03-18 06:52:15 +0000
commit4e9b2a2931712b722c3954fa39b4385f0d710b6c (patch)
treeb661554c75fe6515f71dc8bebb23a33f67ad3319 /sys/vm/vm_page.c
parent5b6560526e3f033b3c4613a1e51d748fa7e747d7 (diff)
downloadFreeBSD-src-4e9b2a2931712b722c3954fa39b4385f0d710b6c.zip
FreeBSD-src-4e9b2a2931712b722c3954fa39b4385f0d710b6c.tar.gz
Almost seven years ago, vm/vm_page.c was split into three parts:
vm/vm_contig.c, vm/vm_page.c, and vm/vm_pageq.c. Today, vm/vm_pageq.c has withered to the point that it contains only four short functions, two of which are only used by vm/vm_page.c. Since I can't foresee any reason for vm/vm_pageq.c to grow, it is time to fold the remaining contents of vm/vm_pageq.c back into vm/vm_page.c. Add some comments. Rename one of the functions, vm_pageq_enqueue(), that is now static within vm/vm_page.c to vm_page_enqueue(). Eliminate PQ_MAXCOUNT as it no longer serves any purpose.
Diffstat (limited to 'sys/vm/vm_page.c')
-rw-r--r--sys/vm/vm_page.c79
1 files changed, 74 insertions, 5 deletions
diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c
index cea7a23..2df20e4 100644
--- a/sys/vm/vm_page.c
+++ b/sys/vm/vm_page.c
@@ -1,6 +1,7 @@
/*-
* Copyright (c) 1991 Regents of the University of California.
* All rights reserved.
+ * Copyright (c) 1998 Matthew Dillon. All Rights Reserved.
*
* This code is derived from software contributed to Berkeley by
* The Mach Operating System project at Carnegie-Mellon University.
@@ -132,6 +133,7 @@ __FBSDID("$FreeBSD$");
* page structure.
*/
+struct vpgqueues vm_page_queues[PQ_COUNT];
struct mtx vm_page_queue_mtx;
struct mtx vm_page_queue_free_mtx;
@@ -145,6 +147,8 @@ TUNABLE_INT("vm.boot_pages", &boot_pages);
SYSCTL_INT(_vm, OID_AUTO, boot_pages, CTLFLAG_RD, &boot_pages, 0,
"number of pages allocated for bootstrapping the VM system");
+static void vm_page_enqueue(int queue, vm_page_t m);
+
/*
* vm_set_page_size:
*
@@ -259,7 +263,11 @@ vm_page_startup(vm_offset_t vaddr)
* Initialize the queue headers for the hold queue, the active queue,
* and the inactive queue.
*/
- vm_pageq_init();
+ for (i = 0; i < PQ_COUNT; i++)
+ TAILQ_INIT(&vm_page_queues[i].pl);
+ vm_page_queues[PQ_INACTIVE].cnt = &cnt.v_inactive_count;
+ vm_page_queues[PQ_ACTIVE].cnt = &cnt.v_active_count;
+ vm_page_queues[PQ_HOLD].cnt = &cnt.v_active_count;
/*
* Allocate memory for use when boot strapping the kernel memory
@@ -1208,6 +1216,67 @@ vm_waitpfault(void)
}
/*
+ * vm_pageq_requeue:
+ *
+ * If the given page is contained within a page queue, move it to the tail
+ * of that queue.
+ *
+ * The page queues must be locked.
+ */
+void
+vm_pageq_requeue(vm_page_t m)
+{
+ int queue = VM_PAGE_GETQUEUE(m);
+ struct vpgqueues *vpq;
+
+ if (queue != PQ_NONE) {
+ vpq = &vm_page_queues[queue];
+ TAILQ_REMOVE(&vpq->pl, m, pageq);
+ TAILQ_INSERT_TAIL(&vpq->pl, m, pageq);
+ }
+}
+
+/*
+ * vm_pageq_remove:
+ *
+ * Remove a page from its queue.
+ *
+ * The queue containing the given page must be locked.
+ * This routine may not block.
+ */
+void
+vm_pageq_remove(vm_page_t m)
+{
+ int queue = VM_PAGE_GETQUEUE(m);
+ struct vpgqueues *pq;
+
+ if (queue != PQ_NONE) {
+ VM_PAGE_SETQUEUE2(m, PQ_NONE);
+ pq = &vm_page_queues[queue];
+ TAILQ_REMOVE(&pq->pl, m, pageq);
+ (*pq->cnt)--;
+ }
+}
+
+/*
+ * vm_page_enqueue:
+ *
+ * Add the given page to the specified queue.
+ *
+ * The page queues must be locked.
+ */
+static void
+vm_page_enqueue(int queue, vm_page_t m)
+{
+ struct vpgqueues *vpq;
+
+ vpq = &vm_page_queues[queue];
+ VM_PAGE_SETQUEUE2(m, queue);
+ TAILQ_INSERT_TAIL(&vpq->pl, m, pageq);
+ ++*vpq->cnt;
+}
+
+/*
* vm_page_activate:
*
* Put the specified page on the active list (if appropriate).
@@ -1227,7 +1296,7 @@ vm_page_activate(vm_page_t m)
if (m->wire_count == 0 && (m->flags & PG_UNMANAGED) == 0) {
if (m->act_count < ACT_INIT)
m->act_count = ACT_INIT;
- vm_pageq_enqueue(PQ_ACTIVE, m);
+ vm_page_enqueue(PQ_ACTIVE, m);
}
} else {
if (m->act_count < ACT_INIT)
@@ -1330,7 +1399,7 @@ vm_page_free_toq(vm_page_t m)
}
if (m->hold_count != 0) {
m->flags &= ~PG_ZERO;
- vm_pageq_enqueue(PQ_HOLD, m);
+ vm_page_enqueue(PQ_HOLD, m);
} else {
mtx_lock(&vm_page_queue_free_mtx);
m->flags |= PG_FREE;
@@ -1423,10 +1492,10 @@ vm_page_unwire(vm_page_t m, int activate)
if (m->flags & PG_UNMANAGED) {
;
} else if (activate)
- vm_pageq_enqueue(PQ_ACTIVE, m);
+ vm_page_enqueue(PQ_ACTIVE, m);
else {
vm_page_flag_clear(m, PG_WINATCFLS);
- vm_pageq_enqueue(PQ_INACTIVE, m);
+ vm_page_enqueue(PQ_INACTIVE, m);
}
}
} else {
OpenPOWER on IntegriCloud