Re: 2.6.28-mmotm1230 - BUG during 'shutdown -h'

From: Rusty Russell
Date: Sat Jan 03 2009 - 02:14:00 EST


On Friday 02 January 2009 23:22:18 Valdis.Kletnieks@xxxxxx wrote:
> 100% repeatable. I haven't had a chance to bisect and track this down yet,
> though most of the obvious suspects are in either origin.patch or linux-next.patch
> so a bisect of -mmotm probably won't tell us much.

kernel/workqueue.c: In function âwq_cpu_mapâ:
kernel/workqueue.c:94: warning: pointer type mismatch in conditional expression

That's a problem for a start. Looks like a merge bug. Does removing the &
from in front of cpu_populated_map help?

static const struct cpumask *wq_cpu_map(struct workqueue_struct *wq)
{
return is_wq_single_threaded(wq)
? get_cpu_mask(singlethread_cpu) : &cpu_populated_map;
}

Cheers,
Rusty.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/