* [patch -mm4] sched: only print migration_cost once
@ 2006-02-03 7:09 Chuck Ebbert
2006-02-03 12:05 ` Ingo Molnar
0 siblings, 1 reply; 2+ messages in thread
From: Chuck Ebbert @ 2006-02-03 7:09 UTC (permalink / raw)
To: Ingo Molnar; +Cc: Andrew Morton, linux-kernel
migration_cost prints after every CPU hotplug event. Make it
print only once at boot.
Signed-off-by: Chuck Ebbert <76306.1226@compuserve.com>
--- 2.6.16-rc1-mm4-386.orig/kernel/sched.c
+++ 2.6.16-rc1-mm4-386/kernel/sched.c
@@ -5656,6 +5656,7 @@ static void calibrate_migration_costs(co
int cpu1 = -1, cpu2 = -1, cpu, orig_cpu = raw_smp_processor_id();
unsigned long j0, j1, distance, max_distance = 0;
struct sched_domain *sd;
+ static int printed_cost = 0; /* has cost already been printed? */
j0 = jiffies;
@@ -5699,13 +5700,16 @@ static void calibrate_migration_costs(co
-1
#endif
);
- printk("migration_cost=");
- for (distance = 0; distance <= max_distance; distance++) {
- if (distance)
- printk(",");
- printk("%ld", (long)migration_cost[distance] / 1000);
+ if (!printed_cost) {
+ printed_cost++;
+ printk("migration_cost=");
+ for (distance = 0; distance <= max_distance; distance++) {
+ if (distance)
+ printk(",");
+ printk("%ld", (long)migration_cost[distance] / 1000);
+ }
+ printk("\n");
}
- printk("\n");
j1 = jiffies;
if (migration_debug)
printk("migration: %ld seconds\n", (j1-j0)/HZ);
--
Chuck
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch -mm4] sched: only print migration_cost once
2006-02-03 7:09 [patch -mm4] sched: only print migration_cost once Chuck Ebbert
@ 2006-02-03 12:05 ` Ingo Molnar
0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2006-02-03 12:05 UTC (permalink / raw)
To: Chuck Ebbert; +Cc: Ingo Molnar, Andrew Morton, linux-kernel
hm, why not use system_state for this?
Ingo
* Chuck Ebbert <76306.1226@compuserve.com> wrote:
> migration_cost prints after every CPU hotplug event. Make it
> print only once at boot.
>
> Signed-off-by: Chuck Ebbert <76306.1226@compuserve.com>
>
> --- 2.6.16-rc1-mm4-386.orig/kernel/sched.c
> +++ 2.6.16-rc1-mm4-386/kernel/sched.c
> @@ -5656,6 +5656,7 @@ static void calibrate_migration_costs(co
> int cpu1 = -1, cpu2 = -1, cpu, orig_cpu = raw_smp_processor_id();
> unsigned long j0, j1, distance, max_distance = 0;
> struct sched_domain *sd;
> + static int printed_cost = 0; /* has cost already been printed? */
>
> j0 = jiffies;
>
> @@ -5699,13 +5700,16 @@ static void calibrate_migration_costs(co
> -1
> #endif
> );
> - printk("migration_cost=");
> - for (distance = 0; distance <= max_distance; distance++) {
> - if (distance)
> - printk(",");
> - printk("%ld", (long)migration_cost[distance] / 1000);
> + if (!printed_cost) {
> + printed_cost++;
> + printk("migration_cost=");
> + for (distance = 0; distance <= max_distance; distance++) {
> + if (distance)
> + printk(",");
> + printk("%ld", (long)migration_cost[distance] / 1000);
> + }
> + printk("\n");
> }
> - printk("\n");
> j1 = jiffies;
> if (migration_debug)
> printk("migration: %ld seconds\n", (j1-j0)/HZ);
> --
> Chuck
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-02-03 12:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-02-03 7:09 [patch -mm4] sched: only print migration_cost once Chuck Ebbert
2006-02-03 12:05 ` Ingo Molnar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome