svn commit: r325388 - in head/sys: amd64/amd64 i386/i386

Konstantin Belousov kib at FreeBSD.org
Sat Nov 4 10:51:53 UTC 2017


Author: kib
Date: Sat Nov  4 10:51:52 2017
New Revision: 325388
URL: https://svnweb.freebsd.org/changeset/base/325388

Log:
  x86: Do not emit unused TD_TID symbols.
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

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

Modified: head/sys/amd64/amd64/genassym.c
==============================================================================
--- head/sys/amd64/amd64/genassym.c	Sat Nov  4 10:50:47 2017	(r325387)
+++ head/sys/amd64/amd64/genassym.c	Sat Nov  4 10:51:52 2017	(r325388)
@@ -81,7 +81,6 @@ ASSYM(TD_FLAGS, offsetof(struct thread, td_flags));
 ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
 ASSYM(TD_PFLAGS, offsetof(struct thread, td_pflags));
 ASSYM(TD_PROC, offsetof(struct thread, td_proc));
-ASSYM(TD_TID, offsetof(struct thread, td_tid));
 ASSYM(TD_FRAME, offsetof(struct thread, td_frame));
 
 ASSYM(TDF_ASTPENDING, TDF_ASTPENDING);

Modified: head/sys/i386/i386/genassym.c
==============================================================================
--- head/sys/i386/i386/genassym.c	Sat Nov  4 10:50:47 2017	(r325387)
+++ head/sys/i386/i386/genassym.c	Sat Nov  4 10:51:52 2017	(r325388)
@@ -88,7 +88,6 @@ ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
 ASSYM(TD_PFLAGS, offsetof(struct thread, td_pflags));
 ASSYM(TD_PROC, offsetof(struct thread, td_proc));
 ASSYM(TD_MD, offsetof(struct thread, td_md));
-ASSYM(TD_TID, offsetof(struct thread, td_tid));
 
 ASSYM(TDP_CALLCHAIN, TDP_CALLCHAIN);
 


More information about the svn-src-head mailing list