--- kernel/sched_bfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: linux-3.1-ck2/kernel/sched_bfs.c =================================================================== --- linux-3.1-ck2.orig/kernel/sched_bfs.c 2011-11-11 13:28:24.367507467 +1100 +++ linux-3.1-ck2/kernel/sched_bfs.c 2011-11-11 13:28:24.543507454 +1100 @@ -1076,7 +1076,7 @@ swap_sticky(struct rq *rq, int cpu, stru { if (rq->sticky_task) { if (rq->sticky_task == p) { - p->sticky = 1; + p->sticky = true; return; } if (task_sticky(rq->sticky_task)) { @@ -1085,7 +1085,7 @@ swap_sticky(struct rq *rq, int cpu, stru } } if (!rt_task(p)) { - p->sticky = 1; + p->sticky = true; rq->sticky_task = p; } else { resched_closest_idle(rq, cpu, p);