Module Name: src
Committed By: thorpej
Date: Sun Apr 26 16:16:13 UTC 2020
Modified Files:
src/sys/uvm: uvm_bio.c
Log Message:
Disable ubc_direct by default again. There are still stability issues
(e.g. panic during 2020.04.25.00.07.27 amd64 releng test run).
To generate a diff of this commit:
cvs rdiff -u -r1.112 -r1.113 src/sys/uvm/uvm_bio.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_bio.c
diff -u src/sys/uvm/uvm_bio.c:1.112 src/sys/uvm/uvm_bio.c:1.113
--- src/sys/uvm/uvm_bio.c:1.112 Fri Apr 24 19:47:03 2020
+++ src/sys/uvm/uvm_bio.c Sun Apr 26 16:16:13 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_bio.c,v 1.112 2020/04/24 19:47:03 ad Exp $ */
+/* $NetBSD: uvm_bio.c,v 1.113 2020/04/26 16:16:13 thorpej Exp $ */
/*
* Copyright (c) 1998 Chuck Silvers.
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_bio.c,v 1.112 2020/04/24 19:47:03 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_bio.c,v 1.113 2020/04/26 16:16:13 thorpej Exp $");
#include "opt_uvmhist.h"
#include "opt_ubc.h"
@@ -64,7 +64,8 @@ static int __noinline ubc_uiomove_direct
int, int);
static void __noinline ubc_zerorange_direct(struct uvm_object *, off_t, size_t, int);
-bool ubc_direct = true;
+/* XXX disabled by default until the kinks are worked out. */
+bool ubc_direct = false;
#endif
/*