2 Sep 2010 09:46
crash does not get proper backtrace?
<hutao <at> cn.fujitsu.com>
2010-09-02 07:46:00 GMT
2010-09-02 07:46:00 GMT
Hi,
I got a problem where it seemed crash got a bad backtrace.
The problem occurred under the following conditions:
On a qemu guest system loading a module that stuck at
the init function(say, call a function that did deadlooping),
then dumped the guest by `virsh dump vm dumpfile', and run
crash on the dumpfile.
The module is:
---
#include <linux/module.h>
int endless_loop(void)
{
printk("endless loop\n");
while (1);
return 0;
}
int __init endless_init(void)
{
endless_loop();
return 0;
}
module_init(endless_init);
(Continue reading)
RSS Feed