]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
kdb: bl: don't use tab character in output
authorRandy Dunlap <rdunlap@infradead.org>
Fri, 8 Dec 2017 18:19:28 +0000 (10:19 -0800)
committerJason Wessel <jason.wessel@windriver.com>
Thu, 25 Jan 2018 14:41:22 +0000 (08:41 -0600)
The "bl" (list breakpoints) command prints a '\t' (tab) character
in its output, but on a console (video device), that just prints
some odd graphics character. Instead of printing a tab character,
just align the output with spaces.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Daniel Thompson <daniel.thompson@linaro.org>
Cc: Jason Wessel <jason.wessel@windriver.com>
Cc: kgdb-bugreport@lists.sourceforge.net
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
kernel/debug/kdb/kdb_bp.c

index 90ff129c88a27c50e33be234be695650e7210494..62c301ad07735c8b5713aebe8980f8c61d44a83b 100644 (file)
@@ -242,11 +242,11 @@ static void kdb_printbp(kdb_bp_t *bp, int i)
        kdb_symbol_print(bp->bp_addr, NULL, KDB_SP_DEFAULT);
 
        if (bp->bp_enabled)
-               kdb_printf("\n    is enabled");
+               kdb_printf("\n    is enabled ");
        else
                kdb_printf("\n    is disabled");
 
-       kdb_printf("\taddr at %016lx, hardtype=%d installed=%d\n",
+       kdb_printf("  addr at %016lx, hardtype=%d installed=%d\n",
                   bp->bp_addr, bp->bp_type, bp->bp_installed);
 
        kdb_printf("\n");