Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Jan 2018 09:33:44 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r327960 - stable/11/sys/amd64/amd64
Message-ID:  <201801140933.w0E9Xi0N060432@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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));



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801140933.w0E9Xi0N060432>