Module Name: src
Committed By: matt
Date: Mon Feb 27 15:57:21 UTC 2012
Modified Files:
src/sys/arch/mips/mips: mips_fpu.c
Log Message:
Remove an incorrect KASSERT
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/mips/mips/mips_fpu.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/mips_fpu.c
diff -u src/sys/arch/mips/mips/mips_fpu.c:1.7 src/sys/arch/mips/mips/mips_fpu.c:1.8
--- src/sys/arch/mips/mips/mips_fpu.c:1.7 Sat Oct 29 20:55:36 2011
+++ src/sys/arch/mips/mips/mips_fpu.c Mon Feb 27 15:57:21 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: mips_fpu.c,v 1.7 2011/10/29 20:55:36 christos Exp $ */
+/* $NetBSD: mips_fpu.c,v 1.8 2012/02/27 15:57:21 matt Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mips_fpu.c,v 1.7 2011/10/29 20:55:36 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mips_fpu.c,v 1.8 2012/02/27 15:57:21 matt Exp $");
#include "opt_multiprocessor.h"
@@ -346,6 +346,5 @@ void
mips_fpu_state_release(lwp_t *l)
{
- KASSERT(l == curlwp);
l->l_md.md_utf->tf_regs[_R_SR] &= ~MIPS_SR_COP_1_BIT;
}