Module Name: src
Committed By: matt
Date: Sun Aug 23 03:25:10 UTC 2009
Modified Files:
src/sys/arch/mips/mips [matt-nb5-mips64]: db_interface.c
Log Message:
taken curlwp == NULL check.
To generate a diff of this commit:
cvs rdiff -u -r1.64.16.1 -r1.64.16.2 src/sys/arch/mips/mips/db_interface.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/mips/mips/db_interface.c
diff -u src/sys/arch/mips/mips/db_interface.c:1.64.16.1 src/sys/arch/mips/mips/db_interface.c:1.64.16.2
--- src/sys/arch/mips/mips/db_interface.c:1.64.16.1 Thu Aug 20 21:49:24 2009
+++ src/sys/arch/mips/mips/db_interface.c Sun Aug 23 03:25:09 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: db_interface.c,v 1.64.16.1 2009/08/20 21:49:24 matt Exp $ */
+/* $NetBSD: db_interface.c,v 1.64.16.2 2009/08/23 03:25:09 matt Exp $ */
/*
* Mach Operating System
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.64.16.1 2009/08/20 21:49:24 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.64.16.2 2009/08/23 03:25:09 matt Exp $");
#include "opt_cputype.h" /* which mips CPUs do we support? */
#include "opt_ddb.h"
@@ -715,7 +715,7 @@
vaddr_t ra;
unsigned fpucsr;
- fpucsr = curlwp ? PCB_FSR(&curlwp->l_addr->u_pcb) : 0;
+ fpucsr = PCB_FSR(&curlwp->l_addr->u_pcb);
ra = MachEmulateBranch((struct frame *)regs, pc, fpucsr, 0);
return ra;
}