From: Jeremy Kerr Date: Fri, 29 Jun 2007 00:57:54 +0000 (+1000) Subject: [POWERPC] spusched: Print out scheduling tunables with DEBUG X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=f3f59bec0c7ad083e9c95a550bcb1e9ca27e25f4;p=deliverable%2Flinux.git [POWERPC] spusched: Print out scheduling tunables with DEBUG Print out a few scheduler tuning parameters when we've compiled with DEBUG defined. Signed-off-by: Jeremy Kerr Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/platforms/cell/spufs/sched.c b/arch/powerpc/platforms/cell/spufs/sched.c index 6843a01b1a25..002b40af4a77 100644 --- a/arch/powerpc/platforms/cell/spufs/sched.c +++ b/arch/powerpc/platforms/cell/spufs/sched.c @@ -546,6 +546,9 @@ int __init spu_sched_init(void) kfree(spu_prio); return PTR_ERR(spusched_task); } + + pr_debug("spusched: tick: %d, min ticks: %d, default ticks: %d\n", + SPUSCHED_TICK, MIN_SPU_TIMESLICE, DEF_SPU_TIMESLICE); return 0; }