If I modify the following line in include/asm-i386/processor.h
#define free_task_struct(p) free_pages((unsigned long) (p), 1) to
#define free_task_struct(p) memset((void*) (p), 0xf, PAGE_SIZE*2);
free_pages((unsigned long) (p), 1)
then kernel will boot to init and lockup on when first task terminates.
Has anyone looked into or aware of this issue?
-
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/