Module Name:    src
Committed By:   skrll
Date:           Wed Jul 27 09:57:26 UTC 2016

Modified Files:
        src/sys/kern: subr_prf.c

Log Message:
Bump size of scratchstr - some KASSERTMGS exceed 256 characters


To generate a diff of this commit:
cvs rdiff -u -r1.159 -r1.160 src/sys/kern/subr_prf.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_prf.c
diff -u src/sys/kern/subr_prf.c:1.159 src/sys/kern/subr_prf.c:1.160
--- src/sys/kern/subr_prf.c:1.159	Mon Aug 24 22:50:32 2015
+++ src/sys/kern/subr_prf.c	Wed Jul 27 09:57:26 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr_prf.c,v 1.159 2015/08/24 22:50:32 pooka Exp $	*/
+/*	$NetBSD: subr_prf.c,v 1.160 2016/07/27 09:57:26 skrll Exp $	*/
 
 /*-
  * Copyright (c) 1986, 1988, 1991, 1993
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_prf.c,v 1.159 2015/08/24 22:50:32 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_prf.c,v 1.160 2016/07/27 09:57:26 skrll Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddb.h"
@@ -265,7 +265,7 @@ vpanic(const char *fmt, va_list ap)
 	CPU_INFO_ITERATOR cii;
 	struct cpu_info *ci, *oci;
 	int bootopt;
-	static char scratchstr[256]; /* stores panic message */
+	static char scratchstr[384]; /* stores panic message */
 
 	spldebug_stop();
 

Reply via email to