From owner-svn-src-all@freebsd.org Wed Dec 23 17:43:56 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79A76A50472; Wed, 23 Dec 2015 17:43:56 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47F2619E8; Wed, 23 Dec 2015 17:43:56 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBNHht4W015489; Wed, 23 Dec 2015 17:43:55 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBNHhtYn015487; Wed, 23 Dec 2015 17:43:55 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201512231743.tBNHhtYn015487@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Wed, 23 Dec 2015 17:43:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r292662 - head/sys/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-all@freebsd.org X-Mailman-Version: 2.1.20 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, 23 Dec 2015 17:43:56 -0000 Author: ngie Date: Wed Dec 23 17:43:55 2015 New Revision: 292662 URL: https://svnweb.freebsd.org/changeset/base/292662 Log: Remove redundant declarations in sys/x86/xen which are now handled in other sys/x86 headers Differential Revision: https://reviews.freebsd.org/D4685 X-MFC with: r291949 Sponsored by: EMC / Isilon Storage Division Modified: head/sys/x86/xen/pv.c head/sys/x86/xen/xen_apic.c Modified: head/sys/x86/xen/pv.c ============================================================================== --- head/sys/x86/xen/pv.c Wed Dec 23 17:37:30 2015 (r292661) +++ head/sys/x86/xen/pv.c Wed Dec 23 17:43:55 2015 (r292662) @@ -96,13 +96,8 @@ static int xen_pv_start_all_aps(void); /*---------------------------- Extern Declarations ---------------------------*/ #ifdef SMP /* Variables used by amd64 mp_machdep to start APs */ -extern struct mtx ap_boot_mtx; -extern void *bootstacks[]; extern char *doublefault_stack; extern char *nmi_stack; -extern void *dpcpu; -extern int bootAP; -extern char *bootSTK; #endif /* Modified: head/sys/x86/xen/xen_apic.c ============================================================================== --- head/sys/x86/xen/xen_apic.c Wed Dec 23 17:37:30 2015 (r292661) +++ head/sys/x86/xen/xen_apic.c Wed Dec 23 17:43:55 2015 (r292662) @@ -74,12 +74,6 @@ static driver_filter_t xen_cpususpend_ha static driver_filter_t xen_cpustophard_handler; #endif -/*---------------------------- Extern Declarations ---------------------------*/ -/* Variables used by mp_machdep to perform the MMU related IPIs */ -#ifdef __amd64__ -extern int pmap_pcid_enabled; -#endif - /*---------------------------------- Macros ----------------------------------*/ #define IPI_TO_IDX(ipi) ((ipi) - APIC_IPI_INTS)