diff options
author | jkim <jkim@FreeBSD.org> | 2009-04-01 16:24:24 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2009-04-01 16:24:24 +0000 |
commit | ce3adf17d25ae823e1c74998576355f7da16fe40 (patch) | |
tree | 76ece8d16f4f0081a4a0137c6a0f4f3ddd0ceaa9 /sys | |
parent | 2b9fbfce360862ff65c64e555c8822cb4380214f (diff) | |
download | FreeBSD-src-ce3adf17d25ae823e1c74998576355f7da16fe40.zip FreeBSD-src-ce3adf17d25ae823e1c74998576355f7da16fe40.tar.gz |
Garbage collect unused stack segment since r190620.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/amd64/amd64/genassym.c | 1 | ||||
-rw-r--r-- | sys/amd64/include/pcb.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/sys/amd64/amd64/genassym.c b/sys/amd64/amd64/genassym.c index ea3d834..96bf8a3 100644 --- a/sys/amd64/amd64/genassym.c +++ b/sys/amd64/amd64/genassym.c @@ -161,7 +161,6 @@ ASSYM(XPCB_CR0, offsetof(struct xpcb, xpcb_cr0)); ASSYM(XPCB_CR2, offsetof(struct xpcb, xpcb_cr2)); ASSYM(XPCB_CR4, offsetof(struct xpcb, xpcb_cr4)); ASSYM(XPCB_KGSBASE, offsetof(struct xpcb, xpcb_kgsbase)); -ASSYM(XPCB_SS, offsetof(struct xpcb, xpcb_ss)); ASSYM(XPCB_GDT, offsetof(struct xpcb, xpcb_gdt)); ASSYM(XPCB_IDT, offsetof(struct xpcb, xpcb_idt)); ASSYM(XPCB_LDT, offsetof(struct xpcb, xpcb_ldt)); diff --git a/sys/amd64/include/pcb.h b/sys/amd64/include/pcb.h index 39ca832..7361049 100644 --- a/sys/amd64/include/pcb.h +++ b/sys/amd64/include/pcb.h @@ -86,7 +86,6 @@ struct xpcb { register_t xpcb_cr2; register_t xpcb_cr4; register_t xpcb_kgsbase; - uint32_t xpcb_ss; struct region_descriptor xpcb_gdt; struct region_descriptor xpcb_idt; struct region_descriptor xpcb_ldt; |