* [2.6 patch] cleanup arch/i386/kernel/smpboot.c:smp_tune_scheduling()
@ 2006-11-28 1:28 Adrian Bunk
2006-11-28 7:03 ` Ingo Molnar
0 siblings, 1 reply; 2+ messages in thread
From: Adrian Bunk @ 2006-11-28 1:28 UTC (permalink / raw)
To: linux-kernel; +Cc: Ingo Molnar
This patch contains the following cleanups:
- remove the write-only local variable "bandwidth"
- don't set "max_cache_size" in the (cachesize < 0) case:
that's already handled in kernel/sched.c:measure_migration_cost()
Signed-off-by: Adrian Bunk <bunk@stusta.de>
---
arch/i386/kernel/smpboot.c | 29 +++++------------------------
1 file changed, 5 insertions(+), 24 deletions(-)
--- linux-2.6.19-rc6-mm1/arch/i386/kernel/smpboot.c.old 2006-11-27 23:36:48.000000000 +0100
+++ linux-2.6.19-rc6-mm1/arch/i386/kernel/smpboot.c 2006-11-27 23:48:16.000000000 +0100
@@ -1127,34 +1127,15 @@
}
#endif
-static void smp_tune_scheduling (void)
+static void smp_tune_scheduling(void)
{
unsigned long cachesize; /* kB */
- unsigned long bandwidth = 350; /* MB/s */
- /*
- * Rough estimation for SMP scheduling, this is the number of
- * cycles it takes for a fully memory-limited process to flush
- * the SMP-local cache.
- *
- * (For a P5 this pretty much means we will choose another idle
- * CPU almost always at wakeup time (this is due to the small
- * L1 cache), on PIIs it's around 50-100 usecs, depending on
- * the cache size)
- */
- if (!cpu_khz) {
- /*
- * this basically disables processor-affinity
- * scheduling on SMP without a TSC.
- */
- return;
- } else {
+ if (cpu_khz) {
cachesize = boot_cpu_data.x86_cache_size;
- if (cachesize == -1) {
- cachesize = 16; /* Pentiums, 2x8kB cache */
- bandwidth = 100;
- }
- max_cache_size = cachesize * 1024;
+
+ if (cachesize > 0)
+ max_cache_size = cachesize * 1024;
}
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [2.6 patch] cleanup arch/i386/kernel/smpboot.c:smp_tune_scheduling()
2006-11-28 1:28 [2.6 patch] cleanup arch/i386/kernel/smpboot.c:smp_tune_scheduling() Adrian Bunk
@ 2006-11-28 7:03 ` Ingo Molnar
0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2006-11-28 7:03 UTC (permalink / raw)
To: Adrian Bunk; +Cc: linux-kernel, Andrew Morton
* Adrian Bunk <bunk@stusta.de> wrote:
> This patch contains the following cleanups:
> - remove the write-only local variable "bandwidth"
> - don't set "max_cache_size" in the (cachesize < 0) case:
> that's already handled in kernel/sched.c:measure_migration_cost()
>
> Signed-off-by: Adrian Bunk <bunk@stusta.de>
looks good to me.
Acked-by: Ingo Molnar <mingo@elte.hu>
Ingo
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-11-28 8:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-11-28 1:28 [2.6 patch] cleanup arch/i386/kernel/smpboot.c:smp_tune_scheduling() Adrian Bunk
2006-11-28 7:03 ` Ingo Molnar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®