From owner-svn-src-all@FreeBSD.ORG Wed Jun 24 19:16:48 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0AC3106564A; Wed, 24 Jun 2009 19:16:48 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CEBAB8FC12; Wed, 24 Jun 2009 19:16:48 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n5OJGmOX025802; Wed, 24 Jun 2009 19:16:48 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n5OJGmjn025799; Wed, 24 Jun 2009 19:16:48 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200906241916.n5OJGmjn025799@svn.freebsd.org> From: John Baldwin Date: Wed, 24 Jun 2009 19:16:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r194889 - in head/sys: amd64/amd64 i386/i386 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2009 19:16:49 -0000 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));