summaryrefslogtreecommitdiffstats
path: root/arch/arm/include
diff options
context:
space:
mode:
authorRussell King2019-01-29 16:44:38 +0100
committerRussell King2019-06-20 23:29:23 +0200
commit49b38c345baa1bfdb79ff7f546755c29ea59e028 (patch)
treeb3b966c69f1d5a8cc9e26b5b880cf9c103f2e73c /arch/arm/include
parentARM: add "8<--- cut here ---" to kernel dumps (diff)
downloadkernel-qcow2-linux-49b38c345baa1bfdb79ff7f546755c29ea59e028.tar.gz
kernel-qcow2-linux-49b38c345baa1bfdb79ff7f546755c29ea59e028.tar.xz
kernel-qcow2-linux-49b38c345baa1bfdb79ff7f546755c29ea59e028.zip
ARM: arrange show_pte() to issue severity-based messages
show_pte() is used to print information after various other kernel messages, which themselves are printed at different severities. Include the severity in the show_pte() information so that associated messages are printed with the same severity. Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'arch/arm/include')
-rw-r--r--arch/arm/include/asm/bug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/bug.h b/arch/arm/include/asm/bug.h
index 36c951dd23b8..deef4d0cb3b5 100644
--- a/arch/arm/include/asm/bug.h
+++ b/arch/arm/include/asm/bug.h
@@ -85,7 +85,7 @@ void hook_ifault_code(int nr, int (*fn)(unsigned long, unsigned int,
extern asmlinkage void c_backtrace(unsigned long fp, int pmode);
struct mm_struct;
-extern void show_pte(struct mm_struct *mm, unsigned long addr);
+void show_pte(const char *lvl, struct mm_struct *mm, unsigned long addr);
extern void __show_regs(struct pt_regs *);
#endif