Module Name: src Committed By: ad Date: Sun Dec 29 15:45:28 UTC 2019
Modified Files: src/sys/uvm: uvm_pgflcache.c Log Message: It looks like the freelist cache can starve the pagedaemon under certain conditions, so temporarily disable it. Will revisit soon. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/uvm/uvm_pgflcache.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/uvm/uvm_pgflcache.c diff -u src/sys/uvm/uvm_pgflcache.c:1.2 src/sys/uvm/uvm_pgflcache.c:1.3 --- src/sys/uvm/uvm_pgflcache.c:1.2 Fri Dec 27 13:24:52 2019 +++ src/sys/uvm/uvm_pgflcache.c Sun Dec 29 15:45:28 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: uvm_pgflcache.c,v 1.2 2019/12/27 13:24:52 ad Exp $ */ +/* $NetBSD: uvm_pgflcache.c,v 1.3 2019/12/29 15:45:28 ad Exp $ */ /*- * Copyright (c) 2019 The NetBSD Foundation, Inc. @@ -43,7 +43,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: uvm_pgflcache.c,v 1.2 2019/12/27 13:24:52 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: uvm_pgflcache.c,v 1.3 2019/12/29 15:45:28 ad Exp $"); #include "opt_uvm.h" #include "opt_multiprocessor.h" @@ -406,7 +406,7 @@ uvm_pgflcache_start(void) } /* Kick it into action. */ - uvm_pgflcache_resume(); + /* uvm_pgflcache_resume(); */ } /*