summaryrefslogtreecommitdiff
path: root/vm/vm_pageout.c
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1999-06-28 00:37:07 +0000
committerThomas Bushnell <thomas@gnu.org>1999-06-28 00:37:07 +0000
commitcb2d6addae383f459b9f404de38d63384b407052 (patch)
treeb5846e618d218e06b020d513f1c6851790993f00 /vm/vm_pageout.c
parente208bc8b4ce55c986954e83fc9453cf502d61391 (diff)
Oopsies in previous changes.
Diffstat (limited to 'vm/vm_pageout.c')
-rw-r--r--vm/vm_pageout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vm/vm_pageout.c b/vm/vm_pageout.c
index c36e2b3..1a986b4 100644
--- a/vm/vm_pageout.c
+++ b/vm/vm_pageout.c
@@ -164,7 +164,7 @@ extern void vm_pageout_scan_continue();
unsigned int vm_pageout_reserved_internal = 0;
unsigned int vm_pageout_reserved_really = 0;
-unsigned int vm_pageout_external_target = 0;
+unsigned int vm_page_external_target = 0;
unsigned int vm_pageout_burst_max = 0;
unsigned int vm_pageout_burst_min = 0;
@@ -703,7 +703,7 @@ void vm_pageout_scan()
vm_pageout_inactive++;
for (m = (vm_page_t) queue_first(&vm_page_queue_inactive);
want_pages || m->external;
- m = m->queue_next(m))
+ m = queue_next(m))
assert(!m->active && m->inactive);
object = m->object;
@@ -792,7 +792,7 @@ void vm_pageout_scan()
if (m->dirty && !m->extcounted) {
m->extcounted = TRUE;
vm_page_external_count++;
- else if (!m->dirty && m->extcounted) {
+ } else if (!m->dirty && m->extcounted) {
m->extcounted = FALSE;
vm_page_external_count--;
}