Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-9]: src/sys/arch/hp300/hp300 Pull up following revision(s) (reque...



details:   https://anonhg.NetBSD.org/src/rev/be890614f2fd
branches:  netbsd-9
changeset: 931250:be890614f2fd
user:      martin <martin%NetBSD.org@localhost>
date:      Fri Apr 24 17:25:10 2020 +0000

description:
Pull up following revision(s) (requested by tsutsui in ticket #847):

        sys/arch/hp300/hp300/machdep.c: revision 1.233

Fix garbages in dmesg caused by uninitialized variables slipped in r1.228.

Noticed in HP9000/362 dmesg:
 https://dmesgd.nycbug.org/index.cgi?do=view&id=5459

Should be pulled up to netbsd-8 and netbsd-9.

diffstat:

 sys/arch/hp300/hp300/machdep.c |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (34 lines):

diff -r b52ade0cd0b7 -r be890614f2fd sys/arch/hp300/hp300/machdep.c
--- a/sys/arch/hp300/hp300/machdep.c    Fri Apr 24 17:19:49 2020 +0000
+++ b/sys/arch/hp300/hp300/machdep.c    Fri Apr 24 17:25:10 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.230 2019/03/14 16:59:09 thorpej Exp $    */
+/*     $NetBSD: machdep.c,v 1.230.4.1 2020/04/24 17:25:10 martin Exp $ */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.230 2019/03/14 16:59:09 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.230.4.1 2020/04/24 17:25:10 martin Exp $");
 
 #include "opt_ddb.h"
 #include "opt_compat_netbsd.h"
@@ -433,6 +433,7 @@
        /*
         * ...and the FPU type.
         */
+       fpu[0] = '\0';
        switch (fputype) {
        case FPU_68040:
                strlcpy(fpu, "+FPU", sizeof(fpu));
@@ -458,6 +459,7 @@
        /*
         * ...and finally, the cache type.
         */
+       cache[0] = '\0';
        if (cputype == CPU_68040)
                snprintf(cache, sizeof(cache),
                    ", 4k on-chip physical I/D caches");



Home | Main Index | Thread Index | Old Index