PERFORCE change 135939 for review

Warner Losh imp at FreeBSD.org
Fri Feb 22 05:15:16 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=135939

Change 135939 by imp at imp_lighthouse on 2008/02/22 05:14:54

	Reconnect clock interrupt.  Maybe this isn't quite right, but
	we need to fix the root cause...

Affected files ...

.. //depot/projects/mips2-jnpr/src/sys/mips/mips/intr_machdep.c#5 edit

Differences ...

==== //depot/projects/mips2-jnpr/src/sys/mips/mips/intr_machdep.c#5 (text+ko) ====

@@ -154,8 +154,11 @@
 
 		if (!event || TAILQ_EMPTY(&event->ie_handlers))
 		{
-		        printf("stray %s interrupt %d\n",
-			 hard ? "hard" : "soft", i);
+			if (i == 5)
+				clockintr(intr, tf);
+			else
+				printf("stray %s interrupt %d\n",
+				    hard ? "hard" : "soft", i);
 			continue;
 		}
 


More information about the p4-projects mailing list