Since ULE doesn't honor hlt_cpus_mask don't compile code that prevents

timer interrupt servicing for disabled HTT cores in ULE case. Should be
probably fixed in ULE code instead, but we have no real maintainer for
ULE to do it.

PR:		103697
This commit is contained in:
Maxim Sobolev 2006-09-27 18:51:19 +00:00
parent 8be563721a
commit 6e93c19e3d
2 changed files with 2 additions and 2 deletions

View File

@ -613,7 +613,7 @@ lapic_handle_timer(struct trapframe frame)
/* Send EOI first thing. */
lapic_eoi();
#ifdef SMP
#if defined(SMP) && !defined(SCHED_ULE)
/*
* Don't do any accounting for the disabled HTT cores, since it
* will provide misleading numbers for the userland.

View File

@ -615,7 +615,7 @@ lapic_handle_timer(struct trapframe frame)
/* Send EOI first thing. */
lapic_eoi();
#ifdef SMP
#if defined(SMP) && !defined(SCHED_ULE)
/*
* Don't do any accounting for the disabled HTT cores, since it
* will provide misleading numbers for the userland.