Date: Fri, 22 Feb 2008 05:15:15 GMT From: Warner Losh <imp@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 135939 for review Message-ID: <200802220515.m1M5FFAZ048269@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=135939 Change 135939 by imp@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; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200802220515.m1M5FFAZ048269>