Enable HTT CPUs by default instead of halting them by default. Users

should now only have HTT CPUs if they have explicitly asked for them
either by enabling HyperThreading in the BIOS or by using the
MPTABLE_FORCE_HTT kernel option.
This commit is contained in:
John Baldwin 2003-11-11 17:16:15 +00:00
parent f9dbba5c4e
commit da17811e64
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=122491
2 changed files with 2 additions and 2 deletions

View File

@ -215,7 +215,7 @@ static int start_ap(int apic_id);
static void release_aps(void *dummy); static void release_aps(void *dummy);
static int hlt_cpus_mask; static int hlt_cpus_mask;
static int hlt_logical_cpus = 1; static int hlt_logical_cpus;
static struct sysctl_ctx_list logical_cpu_clist; static struct sysctl_ctx_list logical_cpu_clist;
/* /*

View File

@ -215,7 +215,7 @@ static int start_ap(int apic_id);
static void release_aps(void *dummy); static void release_aps(void *dummy);
static int hlt_cpus_mask; static int hlt_cpus_mask;
static int hlt_logical_cpus = 1; static int hlt_logical_cpus;
static struct sysctl_ctx_list logical_cpu_clist; static struct sysctl_ctx_list logical_cpu_clist;
/* /*