[PATCH 6/9] traps: x86_64: use task_pid_nr(tsk) instead of tsk->pid in do_general_protection
- From: Alexander van Heukelum <heukelum@xxxxxxxxxxx>
- Date: Fri, 3 Oct 2008 22:00:37 +0200
Use task_pid_nr(tsk) instead of tsk->pid in do_general_protection.
Signed-off-by: Alexander van Heukelum <heukelum@xxxxxxxxxxx>
---
arch/x86/kernel/traps_64.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86/kernel/traps_64.c b/arch/x86/kernel/traps_64.c
index 6bce291..59dcee1 100644
--- a/arch/x86/kernel/traps_64.c
+++ b/arch/x86/kernel/traps_64.c
@@ -205,7 +205,7 @@ do_general_protection(struct pt_regs *regs, long error_code)
printk_ratelimit()) {
printk(KERN_INFO
"%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);
print_vma_addr(" in ", regs->ip);
printk("\n");
--
1.5.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Follow-Ups:
- [PATCH 7/9] traps: x86: various noop-changes preparing for unification of traps_xx.c
- From: Alexander van Heukelum
- [PATCH 7/9] traps: x86: various noop-changes preparing for unification of traps_xx.c
- References:
- [PATCH 0/9] traps: x86: finalize unification of traps.c
- From: Alexander van Heukelum
- [PATCH 1/9] traps: x86: converge trap_init functions
- From: Alexander van Heukelum
- [PATCH 2/9] traps: x86_64: make math_state_restore more like i386
- From: Alexander van Heukelum
- [PATCH 3/9] traps: i386: use preempt_conditional_sti/cli in do_int3
- From: Alexander van Heukelum
- [PATCH 4/9] traps: x86_64: make io_check_error equal to the one on i386
- From: Alexander van Heukelum
- [PATCH 5/9] traps: i386: expand clear_mem_error and remove from mach_traps.h
- From: Alexander van Heukelum
- [PATCH 0/9] traps: x86: finalize unification of traps.c
- Prev by Date: [GIT PULL] last minute s390 fixes for 2.6.27
- Next by Date: [PATCH 8/9] traps: x86: make traps_32.c and traps_64.c equal
- Previous by thread: [PATCH 5/9] traps: i386: expand clear_mem_error and remove from mach_traps.h
- Next by thread: [PATCH 7/9] traps: x86: various noop-changes preparing for unification of traps_xx.c
- Index(es):