From: Kenn H. <ke...@us...> - 2001-01-29 01:00:58
|
Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/mm In directory usw-pr-cvs1:/tmp/cvs-serv28257 Modified Files: fault.c Log Message: Longer stack dumps Index: fault.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/mm/fault.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- fault.c 2001/01/17 16:13:57 1.1 +++ fault.c 2001/01/29 01:00:48 1.2 @@ -127,7 +127,7 @@ "PC %08x, PSL %08x\n", address, reason, info->pc, info->psl); printk("\nStack dump\n"); - hex_dump((void *)(regs->sp), 32); + hex_dump((void *)(regs->sp), 256); show_regs(regs); show_cpu_regs(); @@ -190,7 +190,7 @@ info->reason, info->addr, info->pc, info->psl); printk("\nStack dump\n"); - hex_dump((void *)(regs->sp), 32); + hex_dump((void *)(regs->sp), 256); show_regs(regs); show_cpu_regs(); @@ -220,7 +220,7 @@ info->reason, info->addr, info->pc, info->psl); printk("\nStack dump\n"); - hex_dump((void *)(regs->sp), 32); + hex_dump((void *)(regs->sp), 256); show_regs(regs); show_cpu_regs(); |