summaryrefslogtreecommitdiffstats
path: root/sys/amd64
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1996-06-08 11:03:19 +0000
committerbde <bde@FreeBSD.org>1996-06-08 11:03:19 +0000
commit1a917672fbe4e5fa2aabb88ed66e0d54c9cb4f02 (patch)
treec5c3afe6bdce3dfbb19588158ca8776693313233 /sys/amd64
parentfb2da8f1bf40deec102194a8ad9a8afe01147e37 (diff)
downloadFreeBSD-src-1a917672fbe4e5fa2aabb88ed66e0d54c9cb4f02.zip
FreeBSD-src-1a917672fbe4e5fa2aabb88ed66e0d54c9cb4f02.tar.gz
Stop using the alias `pcb_ptd' for `pcb_tcc.tss_cr3'. Use the (existing)
alias `pcb_cr3' instead. That is still one alias too many, but is convenient for me since I've replaced the tss in the pcb by a few scalar variables in the pcb.
Diffstat (limited to 'sys/amd64')
-rw-r--r--sys/amd64/amd64/machdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c
index a0fcd58..fe858cc 100644
--- a/sys/amd64/amd64/machdep.c
+++ b/sys/amd64/amd64/machdep.c
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
- * $Id: machdep.c,v 1.190 1996/05/10 19:28:44 wollman Exp $
+ * $Id: machdep.c,v 1.191 1996/05/18 03:36:07 dyson Exp $
*/
#include "npx.h"
@@ -937,7 +937,7 @@ boot(howto)
if (howto & RB_DUMP) {
if (!cold) {
savectx(&dumppcb);
- dumppcb.pcb_ptd = rcr3();
+ dumppcb.pcb_cr3 = rcr3();
dumpsys();
}
@@ -1646,7 +1646,7 @@ init386(first)
/* setup proc 0's pcb */
proc0.p_addr->u_pcb.pcb_flags = 0;
- proc0.p_addr->u_pcb.pcb_ptd = IdlePTD;
+ proc0.p_addr->u_pcb.pcb_cr3 = IdlePTD;
}
/*
OpenPOWER on IntegriCloud