Module Name: src
Committed By: maxv
Date: Sat Aug 25 05:56:25 UTC 2018
Modified Files:
src/sys/kern: subr_pool.c
Log Message:
Disable POOL_REDZONE until we figure out what's wrong. There must be a dumb
problem, that is not triggerable on amd64.
To generate a diff of this commit:
cvs rdiff -u -r1.225 -r1.226 src/sys/kern/subr_pool.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/kern/subr_pool.c
diff -u src/sys/kern/subr_pool.c:1.225 src/sys/kern/subr_pool.c:1.226
--- src/sys/kern/subr_pool.c:1.225 Fri Aug 24 14:04:27 2018
+++ src/sys/kern/subr_pool.c Sat Aug 25 05:56:24 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_pool.c,v 1.225 2018/08/24 14:04:27 maxv Exp $ */
+/* $NetBSD: subr_pool.c,v 1.226 2018/08/25 05:56:24 maxv Exp $ */
/*-
* Copyright (c) 1997, 1999, 2000, 2002, 2007, 2008, 2010, 2014, 2015
@@ -33,7 +33,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_pool.c,v 1.225 2018/08/24 14:04:27 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_pool.c,v 1.226 2018/08/25 05:56:24 maxv Exp $");
#ifdef _KERNEL_OPT
#include "opt_ddb.h"
@@ -86,7 +86,7 @@ static struct pool phpool[PHPOOL_MAX];
static struct pool psppool;
#endif
-#if defined(DIAGNOSTIC) || defined(KASAN)
+#if defined(KASAN)
#define POOL_REDZONE
#endif