PROBLEM: [2.4.18-3] kernel BUG at softirq.c:194!

Clive Nicolson (clive@baby.bedroom.gen.nz)
Wed, 26 Feb 2003 23:00:18 +1300 (NZDT)


I'm (really I'm just the reporter) seeing the above kernel BUG, the code
is thus (in tasklet_action):

while (list) {
struct tasklet_struct *t = list;

list = list->next;

if (tasklet_trylock(t)) {
if (!atomic_read(&t->count)) {
if (!test_and_clear_bit(TASKLET_STATE_SCHED, &t->state))
BUG();
t->func(t->data);
tasklet_unlock(t);
continue;
}
}

I dont see the problem on my slow PC's but it is seen at 900 Mhz!

Can someone give me a clue as to how a device driver may be inducing this!

Thanks
Clive

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