Fix a typo in the marker for the find_victim function, which prevented it from being traced. It previously read find_vitim. Signed-off-by: Julio M. Merino Vidal Index: linux-2.6.25.y/arch/powerpc/platforms/cell/spufs/sched.c =================================================================== --- linux-2.6.25.y.orig/arch/powerpc/platforms/cell/spufs/sched.c +++ linux-2.6.25.y/arch/powerpc/platforms/cell/spufs/sched.c @@ -591,7 +591,7 @@ static struct spu *find_victim(struct sp struct spu *spu; int node, n; - spu_context_nospu_trace(spu_find_vitim__enter, ctx); + spu_context_nospu_trace(spu_find_victim__enter, ctx); /* * Look for a possible preemption candidate on the local node first. -- Julio M. Merino Vidal