Author: jhb Date: Wed Jun 24 19:16:48 2009 New Revision: 194889 URL: http://svn.freebsd.org/changeset/base/194889
Log: Whitespace fix. Modified: head/sys/amd64/amd64/local_apic.c head/sys/i386/i386/local_apic.c Modified: head/sys/amd64/amd64/local_apic.c ============================================================================== --- head/sys/amd64/amd64/local_apic.c Wed Jun 24 19:09:36 2009 (r194888) +++ head/sys/amd64/amd64/local_apic.c Wed Jun 24 19:16:48 2009 (r194889) @@ -897,6 +897,7 @@ void apic_free_vector(u_int apic_id, u_int vector, u_int irq) { struct thread *td; + KASSERT(vector >= APIC_IO_INTS && vector != IDT_SYSCALL && vector <= APIC_IO_INTS + APIC_NUM_IOINTS, ("Vector %u does not map to an IRQ line", vector)); Modified: head/sys/i386/i386/local_apic.c ============================================================================== --- head/sys/i386/i386/local_apic.c Wed Jun 24 19:09:36 2009 (r194888) +++ head/sys/i386/i386/local_apic.c Wed Jun 24 19:16:48 2009 (r194889) @@ -901,6 +901,7 @@ void apic_free_vector(u_int apic_id, u_int vector, u_int irq) { struct thread *td; + KASSERT(vector >= APIC_IO_INTS && vector != IDT_SYSCALL && vector <= APIC_IO_INTS + APIC_NUM_IOINTS, ("Vector %u does not map to an IRQ line", vector)); _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"