Thu Apr 23 21:53:01 2020 UTC ()
Enable ubc_direct by default, but only on systems with no more than 2 CPUs
for now.


(ad)
diff -r1.110 -r1.111 src/sys/uvm/uvm_bio.c
diff -r1.177 -r1.178 src/sys/uvm/uvm_glue.c

cvs diff -r1.110 -r1.111 src/sys/uvm/uvm_bio.c (expand / switch to context diff)
--- src/sys/uvm/uvm_bio.c 2020/04/23 21:47:09 1.110
+++ src/sys/uvm/uvm_bio.c 2020/04/23 21:53:01 1.111
@@ -1,4 +1,4 @@
-/*	$NetBSD: uvm_bio.c,v 1.110 2020/04/23 21:47:09 ad Exp $	*/
+/*	$NetBSD: uvm_bio.c,v 1.111 2020/04/23 21:53:01 ad Exp $	*/
 
 /*
  * Copyright (c) 1998 Chuck Silvers.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_bio.c,v 1.110 2020/04/23 21:47:09 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_bio.c,v 1.111 2020/04/23 21:53:01 ad Exp $");
 
 #include "opt_uvmhist.h"
 #include "opt_ubc.h"
@@ -64,7 +64,7 @@
 			  int, int);
 static void __noinline ubc_zerorange_direct(struct uvm_object *, off_t, size_t, int);
 
-bool ubc_direct = false; /* XXX */
+bool ubc_direct = true;
 #endif
 
 /*

cvs diff -r1.177 -r1.178 src/sys/uvm/uvm_glue.c (expand / switch to context diff)
--- src/sys/uvm/uvm_glue.c 2020/03/05 12:21:00 1.177
+++ src/sys/uvm/uvm_glue.c 2020/04/23 21:53:01 1.178
@@ -1,4 +1,4 @@
-/*	$NetBSD: uvm_glue.c,v 1.177 2020/03/05 12:21:00 rin Exp $	*/
+/*	$NetBSD: uvm_glue.c,v 1.178 2020/04/23 21:53:01 ad Exp $	*/
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_glue.c,v 1.177 2020/03/05 12:21:00 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_glue.c,v 1.178 2020/04/23 21:53:01 ad Exp $");
 
 #include "opt_kgdb.h"
 #include "opt_kstack.h"
@@ -503,6 +503,18 @@
 
 	/* Start the freelist cache. */
 	uvm_pgflcache_start();
+
+#ifdef PMAP_DIRECT
+	/*
+	 * XXX Temporary ugly hack.  Just before boot, disable ubc_direct if
+	 * there's more than a couple of CPUs, since it has concurrency
+	 * problems.
+	 */
+	if (ncpu > 2) {
+		extern bool ubc_direct;
+		ubc_direct = false;
+	}
+#endif
 
 	for (;;) {
 		/* Update legacy stats for post-mortem debugging. */