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 Consistently use db_printf() instead of p...



details:   https://anonhg.NetBSD.org/src/rev/090969721698
branches:  trunk
changeset: 455510:090969721698
user:      simonb <simonb%NetBSD.org@localhost>
date:      Thu Apr 04 22:49:46 2019 +0000

description:
Consistently use db_printf() instead of printf() for machine specific
commands.

diffstat:

 sys/arch/mips/mips/db_interface.c |  26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diffs (97 lines):

diff -r b1ade7483746 -r 090969721698 sys/arch/mips/mips/db_interface.c
--- a/sys/arch/mips/mips/db_interface.c Thu Apr 04 22:03:23 2019 +0000
+++ b/sys/arch/mips/mips/db_interface.c Thu Apr 04 22:49:46 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: db_interface.c,v 1.80 2018/02/08 19:16:24 bouyer Exp $ */
+/*     $NetBSD: db_interface.c,v 1.81 2019/04/04 22:49:46 simonb Exp $ */
 
 /*
  * Mach Operating System
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.80 2018/02/08 19:16:24 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.81 2019/04/04 22:49:46 simonb Exp $");
 
 #include "opt_multiprocessor.h"
 #include "opt_cputype.h"       /* which mips CPUs do we support? */
@@ -296,7 +296,7 @@
                db_printf("0x%" DDB_EXPR_FMT "x -> 0x%" PRIx64 "\n", addr,
                    (uint64_t) kvtophys(addr));
        } else
-               printf("not a kernel virtual address\n");
+               db_printf("not a kernel virtual address\n");
 }
 
 #define        FLDWIDTH        10
@@ -314,8 +314,8 @@
                "mfc0 %0,$%1,%2                 \n\t"                   \
                ".set pop                       \n\t"                   \
            : "=r"(__val) : "n"(num), "n"(sel));                        \
-       printf("  %s:%*s %#x\n", name, FLDWIDTH - (int) strlen(name),   \
-           "", __val);                                                 \
+       db_printf("  %s:%*s %#x\n", name,                               \
+           FLDWIDTH - (int) strlen(name), "", __val);                  \
 } while (0)
 
 /* XXX not 64-bit ABI safe! */
@@ -331,8 +331,8 @@
                "dmfc0 %0,$%1,%2                \n\t"                   \
                ".set pop"                                              \
            : "=r"(__val) : "n"(num), "n"(sel));                        \
-       printf("  %s:%*s %#"PRIx64"\n", name, FLDWIDTH - (int) strlen(name), \
-           "", __val);                                                 \
+       db_printf("  %s:%*s %#"PRIx64"\n", name,                        \
+           FLDWIDTH - (int) strlen(name), "", __val);                  \
 } while (0)
 
 #define        SET32(reg, name, val)                                           \
@@ -340,7 +340,7 @@
                                                                        \
        __asm volatile("mtc0 %0,$" ___STRING(reg) :: "r"(val));         \
        if (name != NULL)                                               \
-               printf("  %s =%*s %#x\n", name,                         \
+               db_printf("  %s =%*s %#x\n", name,                      \
                    FLDWIDTH - (int) strlen(name), "", val);            \
 } while (0)
 
@@ -356,7 +356,7 @@
                ".set pop                       \n\t"                   \
            :: "r"(val), "n"(num), "n"(sel));                           \
        if (name != NULL)                                               \
-               printf("  %s =%*s %#x\n", name,                         \
+               db_printf("  %s =%*s %#x\n", name,                      \
                    FLDWIDTH - (int) strlen(name), "", val);            \
 } while (0)
 
@@ -373,7 +373,7 @@
                ".set pop"                                              \
            :: "r"(val), "n"(num), "n"(sel));                           \
        if (name != NULL)                                               \
-               printf("  %s =%*s %#"PRIx64"\n", name,                  \
+               db_printf("  %s =%*s %#"PRIx64"\n", name,               \
                    FLDWIDTH - (int) strlen(name), "", (uint64_t)val);  \
 } while (0)
 
@@ -477,7 +477,7 @@
                        uint32_t val;
 
                        val = mipsNN_cp0_config1_read();
-                       printf("  config1:    %#x\n", val);
+                       db_printf("  config1:    %#x\n", val);
                }
 #endif
        }
@@ -495,9 +495,9 @@
        for (int i=0; i < curcpu()->ci_cpuwatch_count; i++) {
                const intptr_t lo = mipsNN_cp0_watchlo_read(i);
                const uint32_t hi = mipsNN_cp0_watchhi_read(i);
-               printf("  %s%d:%*s %#" PRIxPTR "\t",
+               db_printf("  %s%d:%*s %#" PRIxPTR "\t",
                    "watchlo", i, FLDWIDTH - 8, "", lo);
-               printf("  %s%d:%*s %#" PRIx32 "\n",
+               db_printf("  %s%d:%*s %#" PRIx32 "\n",
                    "watchhi", i, FLDWIDTH - 8, "", hi);
        }
 #endif



Home | Main Index | Thread Index | Old Index