Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Jul 2006 16:42:38 GMT
From:      Paolo Pisati <piso@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 102008 for review
Message-ID:  <200607201642.k6KGgcMs018032@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=102008

Change 102008 by piso@piso_newluxor on 2006/07/20 16:42:09

	Axe INTR_FAST.

Affected files ...

.. //depot/projects/soc2006/intr_filter/pc98/cbus/clock.c#4 edit
.. //depot/projects/soc2006/intr_filter/pc98/cbus/sio.c#5 edit

Differences ...

==== //depot/projects/soc2006/intr_filter/pc98/cbus/clock.c#4 (text+ko) ====

@@ -775,8 +775,8 @@
 	 * timecounter to user a simpler algorithm.
 	 */
 	if (!using_lapic_timer) {
-		intr_add_handler("clk", 0, (driver_filter_t *)clkintr, NULL, NULL,
-		    INTR_TYPE_CLK | INTR_FAST, NULL);
+		intr_add_handler("clk", 0, clkintr, NULL, NULL,
+		    INTR_TYPE_CLK, NULL);
 		i8254_intsrc = intr_lookup_source(0);
 		if (i8254_intsrc != NULL)
 			i8254_pending =

==== //depot/projects/soc2006/intr_filter/pc98/cbus/sio.c#5 (text+ko) ====

@@ -1739,8 +1739,8 @@
 	com->irqres = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_ACTIVE);
 	if (com->irqres) {
 		ret = bus_setup_intr(dev, com->irqres,
-				     INTR_TYPE_TTY | INTR_FAST,
-				     (driver_filter_t *)siointr, NULL, com, 
+				     INTR_TYPE_TTY,
+				     siointr, NULL, com, 
 				     &com->cookie);
 		if (ret) {
 			ret = bus_setup_intr(dev,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200607201642.k6KGgcMs018032>