diff options
author | peter <peter@FreeBSD.org> | 2000-12-04 21:15:14 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-12-04 21:15:14 +0000 |
commit | 8bd975051ebdbe73def349683309a3e8817a810c (patch) | |
tree | 12b90cf52960947e5198729ffa8939a5bed00779 /sys/kern/subr_smp.c | |
parent | f2e5184027227edebf7519183f99bc3f8b96dc64 (diff) | |
download | FreeBSD-src-8bd975051ebdbe73def349683309a3e8817a810c.zip FreeBSD-src-8bd975051ebdbe73def349683309a3e8817a810c.tar.gz |
Cleanup some leftover lint from the old interrupt system.
Also, while here, run up to 32 interrupt sources on APIC systems.
Normalize INTREN/INTRDIS so they are the same on both UP and SMP systems
rather than sometimes a macro, and sometimes a function.
Reviewed by: jhb, jakeb
Diffstat (limited to 'sys/kern/subr_smp.c')
-rw-r--r-- | sys/kern/subr_smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index 0c1fc03..d37b6d6 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -1262,7 +1262,7 @@ setup_apic_irq_mapping(void) } } - /* Assign interrupts on first 24 intpins on IOAPIC #0 */ + /* Assign first set of interrupts to intpins on IOAPIC #0 */ for (x = 0; x < nintrs; x++) { int_vector = io_apic_ints[x].dst_apic_int; if (int_vector < APIC_INTMAPSIZE && |