From owner-svn-src-head@FreeBSD.ORG Thu Jan 23 20:10:28 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 391D1123; Thu, 23 Jan 2014 20:10:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 086F5156E; Thu, 23 Jan 2014 20:10:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NKARDo005573; Thu, 23 Jan 2014 20:10:27 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NKAMEe005534; Thu, 23 Jan 2014 20:10:22 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201401232010.s0NKAMEe005534@svn.freebsd.org> From: John Baldwin Date: Thu, 23 Jan 2014 20:10:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r261087 - in head/sys: amd64/amd64 amd64/include amd64/vmm dev/hwpmc i386/i386 i386/include i386/xen pc98/include pc98/pc98 x86/acpica x86/include x86/x86 x86/xen X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jan 2014 20:10:28 -0000 Author: jhb Date: Thu Jan 23 20:10:22 2014 New Revision: 261087 URL: http://svnweb.freebsd.org/changeset/base/261087 Log: Move to . Added: head/sys/x86/include/apicvar.h - copied, changed from r260983, head/sys/i386/include/apicvar.h Deleted: head/sys/amd64/include/apicvar.h head/sys/i386/include/apicvar.h head/sys/pc98/include/apicvar.h Modified: head/sys/amd64/amd64/machdep.c head/sys/amd64/amd64/mp_watchdog.c head/sys/amd64/amd64/pmap.c head/sys/amd64/include/smp.h head/sys/amd64/vmm/vmm_ipi.c head/sys/dev/hwpmc/hwpmc_core.c head/sys/dev/hwpmc/hwpmc_piv.c head/sys/dev/hwpmc/hwpmc_ppro.c head/sys/dev/hwpmc/hwpmc_uncore.c head/sys/dev/hwpmc/hwpmc_x86.c head/sys/i386/i386/machdep.c head/sys/i386/i386/mp_watchdog.c head/sys/i386/i386/pmap.c head/sys/i386/include/smp.h head/sys/i386/xen/mptable.c head/sys/pc98/pc98/machdep.c head/sys/x86/acpica/madt.c head/sys/x86/acpica/srat.c head/sys/x86/x86/io_apic.c head/sys/x86/x86/local_apic.c head/sys/x86/x86/mca.c head/sys/x86/x86/mptable.c head/sys/x86/x86/msi.c head/sys/x86/xen/xen_intr.c Modified: head/sys/amd64/amd64/machdep.c ============================================================================== --- head/sys/amd64/amd64/machdep.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/amd64/amd64/machdep.c Thu Jan 23 20:10:22 2014 (r261087) @@ -140,7 +140,7 @@ __FBSDID("$FreeBSD$"); #ifdef DEV_ATPIC #include #else -#include +#include #endif #include Modified: head/sys/amd64/amd64/mp_watchdog.c ============================================================================== --- head/sys/amd64/amd64/mp_watchdog.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/amd64/amd64/mp_watchdog.c Thu Jan 23 20:10:22 2014 (r261087) @@ -45,7 +45,7 @@ #include #include -#include +#include #include /* Modified: head/sys/amd64/amd64/pmap.c ============================================================================== --- head/sys/amd64/amd64/pmap.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/amd64/amd64/pmap.c Thu Jan 23 20:10:22 2014 (r261087) @@ -135,7 +135,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: head/sys/amd64/include/smp.h ============================================================================== --- head/sys/amd64/include/smp.h Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/amd64/include/smp.h Thu Jan 23 20:10:22 2014 (r261087) @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include /* global symbols in mpboot.S */ Modified: head/sys/amd64/vmm/vmm_ipi.c ============================================================================== --- head/sys/amd64/vmm/vmm_ipi.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/amd64/vmm/vmm_ipi.c Thu Jan 23 20:10:22 2014 (r261087) @@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include Modified: head/sys/dev/hwpmc/hwpmc_core.c ============================================================================== --- head/sys/dev/hwpmc/hwpmc_core.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/dev/hwpmc/hwpmc_core.c Thu Jan 23 20:10:22 2014 (r261087) @@ -38,7 +38,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: head/sys/dev/hwpmc/hwpmc_piv.c ============================================================================== --- head/sys/dev/hwpmc/hwpmc_piv.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/dev/hwpmc/hwpmc_piv.c Thu Jan 23 20:10:22 2014 (r261087) @@ -41,7 +41,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: head/sys/dev/hwpmc/hwpmc_ppro.c ============================================================================== --- head/sys/dev/hwpmc/hwpmc_ppro.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/dev/hwpmc/hwpmc_ppro.c Thu Jan 23 20:10:22 2014 (r261087) @@ -41,7 +41,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: head/sys/dev/hwpmc/hwpmc_uncore.c ============================================================================== --- head/sys/dev/hwpmc/hwpmc_uncore.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/dev/hwpmc/hwpmc_uncore.c Thu Jan 23 20:10:22 2014 (r261087) @@ -38,7 +38,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: head/sys/dev/hwpmc/hwpmc_x86.c ============================================================================== --- head/sys/dev/hwpmc/hwpmc_x86.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/dev/hwpmc/hwpmc_x86.c Thu Jan 23 20:10:22 2014 (r261087) @@ -40,7 +40,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include Modified: head/sys/i386/i386/machdep.c ============================================================================== --- head/sys/i386/i386/machdep.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/i386/i386/machdep.c Thu Jan 23 20:10:22 2014 (r261087) @@ -143,7 +143,7 @@ __FBSDID("$FreeBSD$"); #endif #ifdef DEV_APIC -#include +#include #endif #ifdef DEV_ISA Modified: head/sys/i386/i386/mp_watchdog.c ============================================================================== --- head/sys/i386/i386/mp_watchdog.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/i386/i386/mp_watchdog.c Thu Jan 23 20:10:22 2014 (r261087) @@ -45,7 +45,7 @@ #include #include -#include +#include #include /* Modified: head/sys/i386/i386/pmap.c ============================================================================== --- head/sys/i386/i386/pmap.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/i386/i386/pmap.c Thu Jan 23 20:10:22 2014 (r261087) @@ -140,7 +140,7 @@ __FBSDID("$FreeBSD$"); #ifdef DEV_APIC #include #include -#include +#include #endif #include #include Modified: head/sys/i386/include/smp.h ============================================================================== --- head/sys/i386/include/smp.h Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/i386/include/smp.h Thu Jan 23 20:10:22 2014 (r261087) @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include /* global data in mpboot.s */ Modified: head/sys/i386/xen/mptable.c ============================================================================== --- head/sys/i386/xen/mptable.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/i386/xen/mptable.c Thu Jan 23 20:10:22 2014 (r261087) @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include Modified: head/sys/pc98/pc98/machdep.c ============================================================================== --- head/sys/pc98/pc98/machdep.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/pc98/pc98/machdep.c Thu Jan 23 20:10:22 2014 (r261087) @@ -137,7 +137,7 @@ __FBSDID("$FreeBSD$"); #endif #ifdef DEV_APIC -#include +#include #endif #ifdef DEV_ISA Modified: head/sys/x86/acpica/madt.c ============================================================================== --- head/sys/x86/acpica/madt.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/x86/acpica/madt.c Thu Jan 23 20:10:22 2014 (r261087) @@ -41,7 +41,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include Modified: head/sys/x86/acpica/srat.c ============================================================================== --- head/sys/x86/acpica/srat.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/x86/acpica/srat.c Thu Jan 23 20:10:22 2014 (r261087) @@ -45,7 +45,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include Copied and modified: head/sys/x86/include/apicvar.h (from r260983, head/sys/i386/include/apicvar.h) ============================================================================== --- head/sys/i386/include/apicvar.h Tue Jan 21 13:23:18 2014 (r260983, copy source) +++ head/sys/x86/include/apicvar.h Thu Jan 23 20:10:22 2014 (r261087) @@ -29,8 +29,8 @@ * $FreeBSD$ */ -#ifndef _MACHINE_APICVAR_H_ -#define _MACHINE_APICVAR_H_ +#ifndef _X86_APICVAR_H_ +#define _X86_APICVAR_H_ /* * Local && I/O APIC variable definitions. @@ -114,14 +114,16 @@ #define IPI_INVLPG (APIC_IPI_INTS + 2) #define IPI_INVLRNG (APIC_IPI_INTS + 3) #define IPI_INVLCACHE (APIC_IPI_INTS + 4) +#ifdef __i386__ #define IPI_LAZYPMAP (APIC_IPI_INTS + 5) /* Lazy pmap release. */ +#endif /* Vector to handle bitmap based IPIs */ #define IPI_BITMAP_VECTOR (APIC_IPI_INTS + 6) -/* IPIs handled by IPI_BITMAPED_VECTOR (XXX ups is there a better place?) */ +/* IPIs handled by IPI_BITMAP_VECTOR */ #define IPI_AST 0 /* Generate software trap. */ #define IPI_PREEMPT 1 -#define IPI_HARDCLOCK 2 +#define IPI_HARDCLOCK 2 #define IPI_BITMAP_LAST IPI_HARDCLOCK #define IPI_IS_BITMAPED(x) ((x) <= IPI_BITMAP_LAST) @@ -220,4 +222,4 @@ void lapic_setup(int boot); void xen_intr_handle_upcall(struct trapframe *frame); #endif /* !LOCORE */ -#endif /* _MACHINE_APICVAR_H_ */ +#endif /* _X86_APICVAR_H_ */ Modified: head/sys/x86/x86/io_apic.c ============================================================================== --- head/sys/x86/x86/io_apic.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/x86/x86/io_apic.c Thu Jan 23 20:10:22 2014 (r261087) @@ -51,7 +51,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include Modified: head/sys/x86/x86/local_apic.c ============================================================================== --- head/sys/x86/x86/local_apic.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/x86/x86/local_apic.c Thu Jan 23 20:10:22 2014 (r261087) @@ -59,7 +59,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: head/sys/x86/x86/mca.c ============================================================================== --- head/sys/x86/x86/mca.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/x86/x86/mca.c Thu Jan 23 20:10:22 2014 (r261087) @@ -52,7 +52,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: head/sys/x86/x86/mptable.c ============================================================================== --- head/sys/x86/x86/mptable.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/x86/x86/mptable.c Thu Jan 23 20:10:22 2014 (r261087) @@ -50,7 +50,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #ifdef NEW_PCIB #include Modified: head/sys/x86/x86/msi.c ============================================================================== --- head/sys/x86/x86/msi.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/x86/x86/msi.c Thu Jan 23 20:10:22 2014 (r261087) @@ -50,7 +50,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include Modified: head/sys/x86/xen/xen_intr.c ============================================================================== --- head/sys/x86/xen/xen_intr.c Thu Jan 23 19:55:02 2014 (r261086) +++ head/sys/x86/xen/xen_intr.c Thu Jan 23 20:10:22 2014 (r261087) @@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include