kernel/sched.c: In function `can_migrate_task': kernel/sched.c:1666: warning: value computed is not used (How well tested was this then?) Signed-off-by: Andrew Morton --- 25-akpm/kernel/sched.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/sched.c~sched-improve-pinned-task-handling-fix kernel/sched.c --- 25/kernel/sched.c~sched-improve-pinned-task-handling-fix 2005-03-10 19:09:33.000000000 -0800 +++ 25-akpm/kernel/sched.c 2005-03-10 19:09:33.000000000 -0800 @@ -1644,7 +1644,7 @@ int can_migrate_task(task_t *p, runqueue if (task_running(rq, p)) return 0; if (!cpu_isset(this_cpu, p->cpus_allowed)) { - *pinned++; + (*pinned)++; return 0; } _