Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mips/mips Give a hint to what the IPI numbers are, ...



details:   https://anonhg.NetBSD.org/src/rev/3840756d8b10
branches:  trunk
changeset: 937401:3840756d8b10
user:      skrll <skrll%NetBSD.org@localhost>
date:      Mon Aug 17 15:22:51 2020 +0000

description:
Give a hint to what the IPI numbers are, i.e. "(A/R)" meaning active and
requested respectively

diffstat:

 sys/arch/mips/mips/cpu_subr.c |  7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diffs (28 lines):

diff -r c2311ae028b4 -r 3840756d8b10 sys/arch/mips/mips/cpu_subr.c
--- a/sys/arch/mips/mips/cpu_subr.c     Mon Aug 17 14:17:49 2020 +0000
+++ b/sys/arch/mips/mips/cpu_subr.c     Mon Aug 17 15:22:51 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cpu_subr.c,v 1.57 2020/08/09 06:26:49 skrll Exp $      */
+/*     $NetBSD: cpu_subr.c,v 1.58 2020/08/17 15:22:51 skrll Exp $      */
 
 /*-
  * Copyright (c) 2010, 2019 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu_subr.c,v 1.57 2020/08/09 06:26:49 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu_subr.c,v 1.58 2020/08/17 15:22:51 skrll Exp $");
 
 #include "opt_cputype.h"
 #include "opt_ddb.h"
@@ -852,8 +852,7 @@
        CPU_INFO_ITERATOR cii;
        struct cpu_info *ci;
        char running, hatched, paused, resumed, halted;
-
-       db_printf("CPU CPUID STATE CPUINFO            CPL INT MTX IPIS\n");
+       db_printf("CPU CPUID STATE CPUINFO            CPL INT MTX IPIS(A/R)\n");
        for (CPU_INFO_FOREACH(cii, ci)) {
                hatched = (kcpuset_isset(cpus_hatched, cpu_index(ci)) ? 'H' : '-');
                running = (kcpuset_isset(cpus_running, cpu_index(ci)) ? 'R' : '-');



Home | Main Index | Thread Index | Old Index