提交 a5ae2330 编写于 作者: A Alexander van Heukelum 提交者: Ingo Molnar

traps: x86_64: use task_pid_nr(tsk) instead of tsk->pid in do_general_protection

Use task_pid_nr(tsk) instead of tsk->pid in do_general_protection.
Signed-off-by: NAlexander van Heukelum <heukelum@fastmail.fm>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 7970479c
...@@ -204,7 +204,7 @@ do_general_protection(struct pt_regs *regs, long error_code) ...@@ -204,7 +204,7 @@ do_general_protection(struct pt_regs *regs, long error_code)
printk_ratelimit()) { printk_ratelimit()) {
printk(KERN_INFO printk(KERN_INFO
"%s[%d] general protection ip:%lx sp:%lx error:%lx", "%s[%d] general protection ip:%lx sp:%lx error:%lx",
tsk->comm, tsk->pid, tsk->comm, task_pid_nr(tsk),
regs->ip, regs->sp, error_code); regs->ip, regs->sp, error_code);
print_vma_addr(" in ", regs->ip); print_vma_addr(" in ", regs->ip);
printk("\n"); printk("\n");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册