diff options
author | jeff <jeff@FreeBSD.org> | 2009-04-29 06:54:40 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2009-04-29 06:54:40 +0000 |
commit | 9339d50dc35bdb129d86128c4da58bb4b58959fb (patch) | |
tree | f7e33f7dc0c826db0e48cbe026fe789a938ff2b6 /sys/i386/include/smp.h | |
parent | fe5d856f4750bf04beeac55f39f9edf161dba53f (diff) | |
download | FreeBSD-src-9339d50dc35bdb129d86128c4da58bb4b58959fb.zip FreeBSD-src-9339d50dc35bdb129d86128c4da58bb4b58959fb.tar.gz |
- Add support for cpuid leaf 0xb. This allows us to determine the
topology of nehalem/corei7 based systems.
- Remove the cpu_cores/cpu_logical detection from identcpu.
- Describe the layout of the system in cpu_mp_announce().
Sponsored by: Nokia
Diffstat (limited to 'sys/i386/include/smp.h')
-rw-r--r-- | sys/i386/include/smp.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/i386/include/smp.h b/sys/i386/include/smp.h index ef3cbbb..33739cc 100644 --- a/sys/i386/include/smp.h +++ b/sys/i386/include/smp.h @@ -45,10 +45,6 @@ extern u_long *ipi_rendezvous_counts[MAXCPU]; extern u_long *ipi_lazypmap_counts[MAXCPU]; #endif -/* global data in identcpu.c */ -extern int cpu_cores; -extern int cpu_logical; - /* IPI handlers */ inthand_t IDTVEC(invltlb), /* TLB shootdowns - global */ |