svn commit: r184036 - projects/release_6_3_xen/sys/i386/xen

Kip Macy kmacy at FreeBSD.org
Sat Oct 18 22:59:40 UTC 2008


Author: kmacy
Date: Sat Oct 18 22:59:39 2008
New Revision: 184036
URL: http://svn.freebsd.org/changeset/base/184036

Log:
  remove unused SMP declarations

Modified:
  projects/release_6_3_xen/sys/i386/xen/locore.s

Modified: projects/release_6_3_xen/sys/i386/xen/locore.s
==============================================================================
--- projects/release_6_3_xen/sys/i386/xen/locore.s	Sat Oct 18 22:47:44 2008	(r184035)
+++ projects/release_6_3_xen/sys/i386/xen/locore.s	Sat Oct 18 22:59:39 2008	(r184036)
@@ -110,16 +110,6 @@
 	.set	PTmap,(PTDPTDI << PDRSHIFT)
 	.set	PTD,PTmap + (PTDPTDI * PAGE_SIZE)
 	.set	PTDpde,PTD + (PTDPTDI * PDESIZE)
-#ifdef SMP
-/*
- * Define layout of per-cpu address space.
- * This is "constructed" in locore.s on the BSP and in mp_machdep.c
- * for each AP.  DO NOT REORDER THESE WITHOUT UPDATING THE REST!
- */
-	.globl	SMP_prvspace
-	.set	SMP_prvspace,(MPPTDI << PDRSHIFT)
-#endif /* SMP */
-	
 /*
  * Compiled KERNBASE location and the kernel load address
  */
@@ -145,16 +135,6 @@ KERNend:	.long	0		/* phys addr end of ke
 		.globl physfree
 physfree:	.long	0		/* phys addr of next free page */
 
-#ifdef SMP
-		.globl	cpu0prvpage
-cpu0pp:		.long	0		/* phys addr cpu0 private pg */
-cpu0prvpage:	.long	0		/* relocated version */
-
-		.globl	SMPpt
-SMPptpa:	.long	0		/* phys addr SMP page table */
-SMPpt:		.long	0		/* relocated version */
-#endif /* SMP */
-
 	.globl	IdlePTD
 IdlePTD:	.long	0		/* phys addr of kernel PTD */
 


More information about the svn-src-projects mailing list