diff options
author | kmacy <kmacy@FreeBSD.org> | 2008-10-19 01:23:30 +0000 |
---|---|---|
committer | kmacy <kmacy@FreeBSD.org> | 2008-10-19 01:23:30 +0000 |
commit | c272550e836db5b7cd2282c4e7ef0e2d6d2b8107 (patch) | |
tree | 4762799b8c07bf1f9a6f39cb44524705fc0d5f11 | |
parent | 88da8906fe1d81159b24322da0012460a2cf7c7e (diff) | |
download | FreeBSD-src-c272550e836db5b7cd2282c4e7ef0e2d6d2b8107.zip FreeBSD-src-c272550e836db5b7cd2282c4e7ef0e2d6d2b8107.tar.gz |
GC unused values
-rw-r--r-- | sys/i386/include/trap.h | 3 | ||||
-rw-r--r-- | sys/i386/xen/locore.s | 10 |
2 files changed, 0 insertions, 13 deletions
diff --git a/sys/i386/include/trap.h b/sys/i386/include/trap.h index 82208d2..f0176b2 100644 --- a/sys/i386/include/trap.h +++ b/sys/i386/include/trap.h @@ -49,9 +49,6 @@ #define T_PAGEFLT 12 /* page fault */ #define T_ALIGNFLT 14 /* alignment fault */ -#ifdef XEN -#define T_HYPCALLBACK 17 /* hypervisor upcall */ -#endif #define T_DIVIDE 18 /* integer divide fault */ #define T_NMI 19 /* non-maskable trap */ #define T_OFLOW 20 /* overflow trap */ diff --git a/sys/i386/xen/locore.s b/sys/i386/xen/locore.s index 0bc9245..a2c4a8d 100644 --- a/sys/i386/xen/locore.s +++ b/sys/i386/xen/locore.s @@ -136,16 +136,6 @@ KERNend: .long 0 /* phys addr end of kernel (just after bss) */ .globl physfree physfree: .long 0 /* phys addr of next free page */ -#ifdef SMP - .globl cpu0prvpage -cpu0pp: .long 0 /* phys addr cpu0 private pg */ -cpu0prvpage: .long 0 /* relocated version */ - - .globl SMPpt -SMPptpa: .long 0 /* phys addr SMP page table */ -SMPpt: .long 0 /* relocated version */ -#endif /* SMP */ - .globl IdlePTD IdlePTD: .long 0 /* phys addr of kernel PTD */ |