Re: [PATCH] BUG(): sched.c: Line 944

Ingo Molnar (mingo@elte.hu)
Tue, 17 Sep 2002 17:54:53 +0200 (CEST)


ie. for the time being, something like:

--- linux/kernel/sched.c.orig Tue Sep 17 17:53:31 2002
+++ linux/kernel/sched.c Tue Sep 17 17:54:10 2002
@@ -940,8 +940,9 @@
struct list_head *queue;
int idx;

- if (unlikely(in_atomic()))
- BUG();
+ if (likely(current->state != TASK_ZOMBIE))
+ if (unlikely(in_atomic()))
+ BUG();

#if CONFIG_DEBUG_HIGHMEM
check_highmem_ptes();

-
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/