免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3038 | 回复: 2
打印 上一主题 下一主题

帮忙解释一下dump_stack()打印出来的内核信息,谢谢! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-07-29 11:28 |只看该作者 |倒序浏览
听人说dump_stack()在调试中很有用,比printk好用,所以试了一下,但是不知道dump_stack()打出来的是什么

望高手指点一下啊,谢谢!

这个是我的模块源码
new_module.c
  1. #include<linux/init.h>
  2. #include<linux/module.h>
  3. MODULE_LICENSE("Dual BSD/GPL");
  4. static int g_hello_init()
  5. {
  6.         printk(KERN_DEBUG "This is  new module_init!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
  7.         dump_stack();
  8.         return 0;
  9. }

  10. static void g_hello_exit()
  11. {
  12.         printk(KERN_DEBUG "This is new module_exit~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n");
  13. }
  14. module_init(g_hello_init);
  15. module_exit(g_hello_exit);
复制代码
这个是内核打出来的对应信息
  1. <7>This is new module_init!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  2. <4>[<c005b3bc>] (dump_stack+0x0/0x14) from [<bf014034>] (g_hello_init+0x18/0x24 [new_module])
  3. <4>[<bf01401c>] (g_hello_init+0x0/0x24 [new_module]) from [<c0056304>] (do_one_initcall+0x34/0x188)
  4. <4>[<c00562d0>] (do_one_initcall+0x0/0x188) from [<c00ac10c>] (sys_init_module+0x90/0x1a0)
  5. <4>[<c00ac07c>] (sys_init_module+0x0/0x1a0) from [<c0056f20>] (ret_fast_syscall+0x0/0x2c)
  6. <4> r7:00000080 r6:00000000 r5:beb5dd24 r4:00000254
  7. <4>1312.966 - <6>init: event { 'add', '/module/new_module', 'module', '', -1, -1 }
复制代码

论坛徽章:
0
2 [报告]
发表于 2010-07-29 12:02 |只看该作者
嘿嘿,自己结了算了,问到了一个牛人

打印内核调用栈,但是不能替代printk,因为只能打印内核调用栈
可以看出
insmod 模块 之后,sys_init_module -->do_one_initcall ->g_hello_init->dump_stack
其中g_hello_init 就是你写的模块初始化函数

一般用在内核panic时定位发生错误的函

论坛徽章:
1
天蝎座
日期:2013-10-23 21:11:03
3 [报告]
发表于 2010-07-29 13:28 |只看该作者
LZ可以看一下dump_stack的源代码
其主要部分就是读取内核态栈
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP