Skip to content

Commit

Permalink
CRIS: Always dump registers for segfaulting process.
Browse files Browse the repository at this point in the history
Signed-off-by: Jesper Nilsson <[email protected]>
  • Loading branch information
jniax committed Aug 4, 2010
1 parent b4e8a18 commit 2d495eb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions arch/cris/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

extern int find_fixup_code(struct pt_regs *);
extern void die_if_kernel(const char *, struct pt_regs *, long);
extern void show_registers(struct pt_regs *regs);

/* debug of low-level TLB reload */
#undef DEBUG
Expand Down Expand Up @@ -195,6 +196,11 @@ do_page_fault(unsigned long address, struct pt_regs *regs,
"address %08lx at pc %08lx\n",
tsk->comm, tsk->pid,
address, instruction_pointer(regs));

/* With DPG on, we've already dumped registers above. */
DPG(if (0))
show_registers(regs);

#ifdef CONFIG_NO_SEGFAULT_TERMINATION
DECLARE_WAIT_QUEUE_HEAD(wq);
wait_event_interruptible(wq, 0 == 1);
Expand Down

0 comments on commit 2d495eb

Please sign in to comment.