Module Name:    src
Committed By:   tsutsui
Date:           Thu Mar 10 17:30:12 UTC 2011

Modified Files:
        src/sys/arch/mipsco/mipsco: mips_3x30.c

Log Message:
Set correct struct clockframe .intr value for hardclock(9).


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/mipsco/mipsco/mips_3x30.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/mipsco/mipsco/mips_3x30.c
diff -u src/sys/arch/mipsco/mipsco/mips_3x30.c:1.13 src/sys/arch/mipsco/mipsco/mips_3x30.c:1.14
--- src/sys/arch/mipsco/mipsco/mips_3x30.c:1.13	Sun Feb 20 07:56:16 2011
+++ src/sys/arch/mipsco/mipsco/mips_3x30.c	Thu Mar 10 17:30:12 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: mips_3x30.c,v 1.13 2011/02/20 07:56:16 matt Exp $	*/
+/*	$NetBSD: mips_3x30.c,v 1.14 2011/03/10 17:30:12 tsutsui Exp $	*/
 
 /*
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 #define	__INTR_PRIVATE
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mips_3x30.c,v 1.13 2011/02/20 07:56:16 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mips_3x30.c,v 1.14 2011/03/10 17:30:12 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -89,7 +89,7 @@
 		
 		cf.pc = pc;
 		cf.sr = status;
-		cf.intr = (curcpu()->ci_idepth > 0);
+		cf.intr = (curcpu()->ci_idepth > 1);
 
 		rambo_clkintr(&cf);
 	}

Reply via email to