svn commit: r190629 - head/sys/amd64/amd64

Jung-uk Kim jkim at FreeBSD.org
Wed Apr 1 11:36:35 PDT 2009


Author: jkim
Date: Wed Apr  1 18:36:34 2009
New Revision: 190629
URL: http://svn.freebsd.org/changeset/base/190629

Log:
  Garbage collect unused MSR_GSBASE since r190620.
  
  The only consumer was exception.S and specialreg.h is directly included now.
  Note no md5 changes were observed for all assym.s consumers with this.

Modified:
  head/sys/amd64/amd64/genassym.c

Modified: head/sys/amd64/amd64/genassym.c
==============================================================================
--- head/sys/amd64/amd64/genassym.c	Wed Apr  1 17:11:50 2009	(r190628)
+++ head/sys/amd64/amd64/genassym.c	Wed Apr  1 18:36:34 2009	(r190629)
@@ -72,7 +72,6 @@ __FBSDID("$FreeBSD$");
 #include <machine/pcb.h>
 #include <machine/sigframe.h>
 #include <machine/proc.h>
-#include <machine/specialreg.h>
 #include <machine/segments.h>
 
 ASSYM(P_VMSPACE, offsetof(struct proc, p_vmspace));
@@ -246,8 +245,6 @@ ASSYM(TSSSEL, GSEL(GPROC0_SEL, SEL_KPL))
 ASSYM(LDTSEL, GSEL(GUSERLDT_SEL, SEL_KPL));
 ASSYM(SEL_RPL_MASK, SEL_RPL_MASK);
 
-ASSYM(MSR_GSBASE, MSR_GSBASE);
-
 #ifdef	HWPMC_HOOKS
 ASSYM(PMC_FN_USER_CALLCHAIN, PMC_FN_USER_CALLCHAIN);
 #endif


More information about the svn-src-all mailing list