从oops中查找错误代码行.docVIP

  1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  4. 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  5. 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  6. 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  7. 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
从oops中查找错误代码行

从oops信息查找出错代码行 分类: Linux Releated 2011-04-18 16:15 725人阅读 评论(0) 收藏 举报 ? ? (1)从oops crash的地方开始查起,首先找到指针访问错误的代码行 a)重新编译内核时,选上kernel hackingcompile the kernel with debug info ???????? ??????????????????????????????????????????????????????? ?? ?kernel debugging 使得内核包含调试信息, b)然后从Oops信息中找到“PC is at free_block+0x8c/0x168” ########################################################## Unable to handle kernel paging request at virtual address 000c0604 //非法指针地址 pgd =[000c0604] *pgdInternal error: Oops: 817 [#1] Modules linked in: CPU: 0??? Not tainted? (8 #221) PC is at free_block+0x78/0x168?????????????????????????????????? //当前指令地址 LR is at release_console_sem+0x19c/0x1b8?????????? //函数返回地址 ########################################################## 从system_map中查到free_block地址0x40097ac0,+0x78得到0x40097B38 c)在内核根目录运行arm-wrs-linux-gnueabi-armv6jel_vfp-uclibc_small-gdb vmlinux 就可以得到出错行 ? ? [root@kqyang-hikvision linux-2.6.27_svn_quyong]# arm-wrs-linux-gnueabi-armv6jel_vfp-uclibc_small-gdb vmlinux GNU gdb (Wind River Linux Sourcery G++ 4.3-85) 0080821-cvs Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later /licenses/gpl.html This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.? Type show copying and show warranty for details. This GDB was configured as --host=i686-pc-linux-gnu --target=arm-wrs-linux-gnueabi. For bug reporting instructions, please see: support@... (gdb) l *0x40097B38 0x40097b38 is in free_block (include/linux/list.h:93). 88?????? * the prev/next entries already! 89?????? */ 90?????? #include linux/kernel.h 91????? static inline void __list_del(struct list_head * prev, struct list_head * next) 92????? { 93????????????? next-prev = prev; 94????????????? prev-next = next; 95????? } 96 97????? /** (gdb) 原文地址:linux内核的oops信息作者:XINU ?? ?Oops可看成是内核级(特权级)的Segmentation Fault。一般应用程序(用户级)如进行了内存的非法访问(地址不合法、无权限访问、……)或执行了非法指令,则会得到Segfault信号,一般对应的行为是co

文档评论(0)

3033tm + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档