svn commit: r327960 - stable/11/sys/amd64/amd64

Konstantin Belousov kib at FreeBSD.org
Sun Jan 14 09:33:45 UTC 2018


Author: kib
Date: Sun Jan 14 09:33:44 2018
New Revision: 327960
URL: https://svnweb.freebsd.org/changeset/base/327960

Log:
  MFC r327817:
  Rename COMMON_TSS_RSP0 to TSS_RSP0.

Modified:
  stable/11/sys/amd64/amd64/cpu_switch.S
  stable/11/sys/amd64/amd64/genassym.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/amd64/amd64/cpu_switch.S
==============================================================================
--- stable/11/sys/amd64/amd64/cpu_switch.S	Sun Jan 14 09:29:06 2018	(r327959)
+++ stable/11/sys/amd64/amd64/cpu_switch.S	Sun Jan 14 09:33:44 2018	(r327960)
@@ -215,7 +215,7 @@ done_tss:
 	movq	%r8,PCPU(RSP0)
 	movq	%r8,PCPU(CURPCB)
 	/* Update the TSS_RSP0 pointer for the next interrupt */
-	movq	%r8,COMMON_TSS_RSP0(%rdx)
+	movq	%r8,TSS_RSP0(%rdx)
 	movq	%r12,PCPU(CURTHREAD)		/* into next thread */
 
 	/* Test if debug registers should be restored. */

Modified: stable/11/sys/amd64/amd64/genassym.c
==============================================================================
--- stable/11/sys/amd64/amd64/genassym.c	Sun Jan 14 09:29:06 2018	(r327959)
+++ stable/11/sys/amd64/amd64/genassym.c	Sun Jan 14 09:33:44 2018	(r327960)
@@ -154,7 +154,7 @@ ASSYM(PCB_FULL_IRET, PCB_FULL_IRET);
 ASSYM(PCB_DBREGS, PCB_DBREGS);
 ASSYM(PCB_32BIT, PCB_32BIT);
 
-ASSYM(COMMON_TSS_RSP0, offsetof(struct amd64tss, tss_rsp0));
+ASSYM(TSS_RSP0, offsetof(struct amd64tss, tss_rsp0));
 
 ASSYM(TF_R15, offsetof(struct trapframe, tf_r15));
 ASSYM(TF_R14, offsetof(struct trapframe, tf_r14));


More information about the svn-src-stable-11 mailing list