From 0bc3a911278a62abbbe3a214d5ae44bd781e54a9 Mon Sep 17 00:00:00 2001 From: John Dyson Date: Mon, 16 Oct 1995 05:45:49 +0000 Subject: [PATCH] Remove an unnecessary tsleep in the swapin code. This tsleep can defer swapping in processes and is just not the right thing to do. --- sys/vm/vm_glue.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c index 30b5bd84828..8471fd94e48 100644 --- a/sys/vm/vm_glue.c +++ b/sys/vm/vm_glue.c @@ -59,7 +59,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_glue.c,v 1.26 1995/09/17 01:46:03 davidg Exp $ + * $Id: vm_glue.c,v 1.27 1995/09/24 19:51:50 dyson Exp $ */ #include @@ -387,7 +387,6 @@ scheduler(udata) loop: while ((cnt.v_free_count + cnt.v_cache_count) < (cnt.v_free_reserved + UPAGES + 2)) { VM_WAIT; - tsleep(&proc0, PVM, "schedm", 0); } pp = NULL;