Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/x86/x86 avoid misalignment in 32 bit kernels and "m...



details:   https://anonhg.NetBSD.org/src/rev/a0b9d16b1f52
branches:  trunk
changeset: 459190:a0b9d16b1f52
user:      mrg <mrg%NetBSD.org@localhost>
date:      Fri Aug 30 07:53:47 2019 +0000

description:
avoid misalignment in 32 bit kernels and "mach cpu".

diffstat:

 sys/arch/x86/x86/cpu.c |  12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diffs (34 lines):

diff -r 29bbdd66a43a -r a0b9d16b1f52 sys/arch/x86/x86/cpu.c
--- a/sys/arch/x86/x86/cpu.c    Fri Aug 30 05:59:17 2019 +0000
+++ b/sys/arch/x86/x86/cpu.c    Fri Aug 30 07:53:47 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cpu.c,v 1.171 2019/05/29 16:54:41 maxv Exp $   */
+/*     $NetBSD: cpu.c,v 1.172 2019/08/30 07:53:47 mrg Exp $    */
 
 /*
  * Copyright (c) 2000-2012 NetBSD Foundation, Inc.
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.171 2019/05/29 16:54:41 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.172 2019/08/30 07:53:47 mrg Exp $");
 
 #include "opt_ddb.h"
 #include "opt_mpbios.h"                /* for MPDEBUG */
@@ -979,8 +979,14 @@
 {
        struct cpu_info *ci;
        CPU_INFO_ITERATOR cii;
+       const char sixtyfour64space[] = 
+#ifdef _LP64
+                          "        "
+#endif
+                          "";
 
-       db_printf("addr         dev     id      flags   ipis    curlwp          fpcurlwp\n");
+       db_printf("addr         %sdev   id      flags   ipis    curlwp          "
+                 "fpcurlwp\n", sixtyfour64space);
        for (CPU_INFO_FOREACH(cii, ci)) {
                db_printf("%p   %s      %ld     %x      %x      %10p    %10p\n",
                    ci,



Home | Main Index | Thread Index | Old Index