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).
This commit is contained in:
thorpej 2020-04-26 16:16:13 +00:00
parent d9c13f8324
commit 11d794387e
1 changed files with 4 additions and 3 deletions

View File

@ -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(struct uvm_object *, struct uio *, vsiz
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
/*