aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r--arch/x86/kernel/vsyscall_64.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/kernel/vsyscall_64.c b/arch/x86/kernel/vsyscall_64.c
index ea5b5709aa76..e1e1e80fc6a6 100644
--- a/arch/x86/kernel/vsyscall_64.c
+++ b/arch/x86/kernel/vsyscall_64.c
@@ -81,10 +81,10 @@ static void warn_bad_vsyscall(const char *level, struct pt_regs *regs,
81 if (!show_unhandled_signals) 81 if (!show_unhandled_signals)
82 return; 82 return;
83 83
84 pr_notice_ratelimited("%s%s[%d] %s ip:%lx cs:%lx sp:%lx ax:%lx si:%lx di:%lx\n", 84 printk_ratelimited("%s%s[%d] %s ip:%lx cs:%lx sp:%lx ax:%lx si:%lx di:%lx\n",
85 level, current->comm, task_pid_nr(current), 85 level, current->comm, task_pid_nr(current),
86 message, regs->ip, regs->cs, 86 message, regs->ip, regs->cs,
87 regs->sp, regs->ax, regs->si, regs->di); 87 regs->sp, regs->ax, regs->si, regs->di);
88} 88}
89 89
90static int addr_to_vsyscall_nr(unsigned long addr) 90static int addr_to_vsyscall_nr(unsigned long addr)