aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Passe <fsmp@FreeBSD.org>1997-09-06 04:11:53 +0000
committerSteve Passe <fsmp@FreeBSD.org>1997-09-06 04:11:53 +0000
commitfb42160f6f675e38e495b0a84d4feda756e78a53 (patch)
treed848264b6e61659c8511ae1589abc1e07d239bc0
parent478da40f6cf16e38dfe8bc0018c198c4f298fdd5 (diff)
downloadsrc-fb42160f6f675e38e495b0a84d4feda756e78a53.tar.gz
src-fb42160f6f675e38e495b0a84d4feda756e78a53.zip
Changed the Ints labels for the IO APIC from "INT#" to "PIN#" to better
reflect its logical usage. Ie., there is NOT a 1-to-1 correspondence between IRQ numbers and APIC pin numbers as there is with the 8259 ICU.
Notes
Notes: svn path=/head/; revision=29161
-rw-r--r--usr.sbin/mptable/mptable.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/mptable/mptable.c b/usr.sbin/mptable/mptable.c
index 82df3c416125..459b1abeb24d 100644
--- a/usr.sbin/mptable/mptable.c
+++ b/usr.sbin/mptable/mptable.c
@@ -22,7 +22,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: mptable.c,v 1.6 1997/07/22 18:52:20 fsmp Exp $
+ * $Id: mptable.c,v 1.7 1997/08/26 05:12:45 fsmp Exp $
*/
/*
@@ -31,7 +31,7 @@
#define VMAJOR 2
#define VMINOR 0
-#define VDELTA 14
+#define VDELTA 15
/*
* this will cause the raw mp table to be dumped to /tmp/mpdump
@@ -769,7 +769,7 @@ MPConfigTableHeader( void* pap )
}
/* process all the I/O Ints */
- printf( "--\nI/O Ints:\tType\tPolarity Trigger\tBus ID\t IRQ\tAPIC ID\tINT#\n" );
+ printf( "--\nI/O Ints:\tType\tPolarity Trigger\tBus ID\t IRQ\tAPIC ID\tPIN#\n" );
for ( t = totalSize, c = count; c; c-- ) {
if ( readType() == 3 )
intEntry();
@@ -777,7 +777,7 @@ MPConfigTableHeader( void* pap )
}
/* process all the Local Ints */
- printf( "--\nLocal Ints:\tType\tPolarity Trigger\tBus ID\t IRQ\tAPIC ID\tINT#\n" );
+ printf( "--\nLocal Ints:\tType\tPolarity Trigger\tBus ID\t IRQ\tAPIC ID\tPIN#\n" );
for ( t = totalSize, c = count; c; c-- ) {
if ( readType() == 4 )
intEntry();