diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2015-01-27 02:15:31 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2015-01-27 02:15:31 +0000 |
commit | c2499bdb5b4f1bd235843fb845b156cfeae25b83 (patch) | |
tree | a7a859361485c8787369f4106b12e7fd6307773e /sys/arch | |
parent | 6538077b9eeec9171239932ee8b7a8d09f6799ef (diff) |
Remove an unused and confusing assignment that had been commented out for
years. No functional change.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/i386/cpu.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/cpu.c b/sys/arch/i386/i386/cpu.c index 3c613ca6cb7..ce8f183aea4 100644 --- a/sys/arch/i386/i386/cpu.c +++ b/sys/arch/i386/i386/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.59 2014/12/18 16:23:25 deraadt Exp $ */ +/* $OpenBSD: cpu.c,v 1.60 2015/01/27 02:15:30 mlarkin Exp $ */ /* $NetBSD: cpu.c,v 1.1.2.7 2000/06/26 02:04:05 sommerfeld Exp $ */ /*- @@ -315,7 +315,6 @@ cpu_attach(struct device *parent, struct device *self, void *aux) sizeof (struct trapframe); pcb->pcb_pmap = pmap_kernel(); pcb->pcb_cr3 = pcb->pcb_pmap->pm_pdirpa; - /* pcb->pcb_cr3 = pcb->pcb_pmap->pm_pdir - KERNBASE; XXX ??? */ cpu_default_ldt(ci); /* Use the `global' ldt until one alloc'd */ #endif |