DragonFly BSD
 

Message4305

Author nthery
Recipients mneumann
Date 2008-02-13.23:10:02
Content
The exception occurs in TAILQ_INSERT_HEAD(&taskq->tasks, task, next),
more precisely, looking at the macro expansion, in
*(&taskq->tasks)->tqh_last = task.

So it looks like tqh_last is a NULL ptr which presumably means that
the list head has not been initialized yet.

Maybe usb_add_task() is called before usb_create_event_thread() (which
initializes usb_taskq[]).
History
Date User Action Args
2008-02-13 23:10:09ntherysetrecipients: + mneumann
2008-02-13 23:10:09ntherylinkissue947 messages
2008-02-13 23:10:02ntherycreate