Skip to content

Commit

Permalink
x86: Merge show_regs()
Browse files Browse the repository at this point in the history
Using kernel_stack_pointer() allows 32-bit and 64-bit versions to
be merged.  This is more correct for 64-bit, since the old %rsp is
always saved on the stack.

Signed-off-by: Brian Gerst <brgerst@gmail.com>
LKML-Reference: <1263397555-27695-1-git-send-email-brgerst@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
  • Loading branch information
Brian Gerst authored and H. Peter Anvin committed Jan 13, 2010
1 parent 2ca49b2 commit 3bef444
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
7 changes: 7 additions & 0 deletions arch/x86/kernel/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,13 @@ void exit_thread(void)
}
}

void show_regs(struct pt_regs *regs)
{
show_registers(regs);
show_trace(NULL, regs, (unsigned long *)kernel_stack_pointer(regs),
regs->bp);
}

void show_regs_common(void)
{
const char *board, *product;
Expand Down
6 changes: 0 additions & 6 deletions arch/x86/kernel/process_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,6 @@ void __show_regs(struct pt_regs *regs, int all)
d6, d7);
}

void show_regs(struct pt_regs *regs)
{
show_registers(regs);
show_trace(NULL, regs, &regs->sp, regs->bp);
}

void release_thread(struct task_struct *dead_task)
{
BUG_ON(dead_task->mm);
Expand Down
6 changes: 0 additions & 6 deletions arch/x86/kernel/process_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -211,12 +211,6 @@ void __show_regs(struct pt_regs *regs, int all)
printk(KERN_INFO "DR3: %016lx DR6: %016lx DR7: %016lx\n", d3, d6, d7);
}

void show_regs(struct pt_regs *regs)
{
show_registers(regs);
show_trace(NULL, regs, (void *)(regs + 1), regs->bp);
}

void release_thread(struct task_struct *dead_task)
{
if (dead_task->mm) {
Expand Down

0 comments on commit 3bef444

Please sign in to comment.