Advertisement
RobertBerger

crash-7.0.9

Jan 30th, 2015
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.39 KB | None | 0 0
  1. ----
  2. root@beagle-bone-black-ml:/home/student/elin-2.0/yocto-beagle-bone-black/elin_for_trainer/sandbox_work/65_crash-working# crash-7.0.8/crash vmlinux
  3.  
  4. crash 7.0.8
  5. Copyright (C) 2002-2014 Red Hat, Inc.
  6. Copyright (C) 2004, 2005, 2006, 2010 IBM Corporation
  7. Copyright (C) 1999-2006 Hewlett-Packard Co
  8. Copyright (C) 2005, 2006, 2011, 2012 Fujitsu Limited
  9. Copyright (C) 2006, 2007 VA Linux Systems Japan K.K.
  10. Copyright (C) 2005, 2011 NEC Corporation
  11. Copyright (C) 1999, 2002, 2007 Silicon Graphics, Inc.
  12. Copyright (C) 1999, 2000, 2001, 2002 Mission Critical Linux, Inc.
  13. This program is free software, covered by the GNU General Public License,
  14. and you are welcome to change it and/or distribute copies of it under
  15. certain conditions. Enter "help copying" to see the conditions.
  16. This program has absolutely no warranty. Enter "help warranty" for details.
  17.  
  18. GNU gdb (GDB) 7.6
  19. Copyright (C) 2013 Free Software Foundation, Inc.
  20. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  21. This is free software: you are free to change and redistribute it.
  22. There is NO WARRANTY, to the extent permitted by law. Type "show copying"
  23. and "show warranty" for details.
  24. This GDB was configured as "armv7l-unknown-linux-gnueabi"...
  25.  
  26. KERNEL: vmlinux
  27. DUMPFILE: /dev/mem
  28. CPUS: 1
  29. DATE: Thu Jan 1 00:00:00 1970
  30. UPTIME: 12:40:40
  31. LOAD AVERAGE: 0.72, 0.23, 0.12
  32. TASKS: 63
  33. NODENAME: beagle-bone-black-ml
  34. RELEASE: 3.19.0-custom-student
  35. VERSION: #1 Thu Jan 29 22:03:41 EET 2015
  36. MACHINE: armv7l (unknown Mhz)
  37. MEMORY: 511 MB
  38. PID: 6795
  39. COMMAND: "crash"
  40. TASK: da2ea640 [THREAD_INFO: d65b0000]
  41. CPU: 0
  42. STATE: TASK_RUNNING (ACTIVE)
  43.  
  44. crash>
  45. ----
  46. root@beagle-bone-black-ml:/home/student/elin-2.0/yocto-beagle-bone-black/elin_for_trainer/sandbox_work/65_crash# crash-7.0.9/crash vmlinux [68/9138]
  47.  
  48. crash 7.0.9
  49. Copyright (C) 2002-2014 Red Hat, Inc.
  50. Copyright (C) 2004, 2005, 2006, 2010 IBM Corporation
  51. Copyright (C) 1999-2006 Hewlett-Packard Co
  52. Copyright (C) 2005, 2006, 2011, 2012 Fujitsu Limited
  53. Copyright (C) 2006, 2007 VA Linux Systems Japan K.K.
  54. Copyright (C) 2005, 2011 NEC Corporation
  55. Copyright (C) 1999, 2002, 2007 Silicon Graphics, Inc.
  56. Copyright (C) 1999, 2000, 2001, 2002 Mission Critical Linux, Inc.
  57. This program is free software, covered by the GNU General Public License,
  58. and you are welcome to change it and/or distribute copies of it under
  59. certain conditions. Enter "help copying" to see the conditions.
  60. This program has absolutely no warranty. Enter "help warranty" for details.
  61.  
  62. Segmentation fault (core dumped)
  63.  
  64. ----
  65.  
  66. root@beagle-bone-black-ml:/home/student/elin-2.0/yocto-beagle-bone-black/elin_for_trainer/sandbox_work/65_crash# gdb crash-7.0.9/crash core
  67. GNU gdb (GDB) 7.7.1
  68. Copyright (C) 2014 Free Software Foundation, Inc.
  69. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  70. This is free software: you are free to change and redistribute it.
  71. There is NO WARRANTY, to the extent permitted by law. Type "show copying"
  72. and "show warranty" for details.
  73. This GDB was configured as "arm-poky-linux-gnueabi".
  74. Type "show configuration" for configuration details.
  75. For bug reporting instructions, please see:
  76. <http://www.gnu.org/software/gdb/bugs/>.
  77. Find the GDB manual and other documentation resources online at:
  78. <http://www.gnu.org/software/gdb/documentation/>.
  79. For help, type "help".
  80. Type "apropos word" to search for commands related to "word"...
  81. Reading symbols from crash-7.0.9/crash...done.
  82. [New LWP 6784]
  83. [Thread debugging using libthread_db enabled]
  84. Using host libthread_db library "/lib/libthread_db.so.1".
  85. Core was generated by `crash-7.0.9/crash vmlinux'.
  86. Program terminated with signal SIGSEGV, Segmentation fault.
  87. #0 0x00000000 in ?? ()
  88. (gdb) bt
  89. #0 0x00000000 in ?? ()
  90. #1 0x000ebc40 in arm_init (when=when@entry=2) at arm.c:234
  91. #2 0x00058a64 in main (argc=1223736800, argv=0xbe8a1b50) at main.c:669
  92. (gdb) up
  93. #1 0x000ebc40 in arm_init (when=when@entry=2) at arm.c:234
  94. 234 if ((string = pc->read_vmcoreinfo("CONFIG_ARM_LPAE"))) {
  95. (gdb) bt
  96. #0 0x00000000 in ?? ()
  97. #1 0x000ebc40 in arm_init (when=when@entry=2) at arm.c:234
  98. #2 0x00058a64 in main (argc=1223736800, argv=0xbe8a1b50) at main.c:669
  99. (gdb) l
  100. 229
  101. 230 /*
  102. 231 * LPAE requires an additional page for the PGD,
  103. 232 * so PG_DIR_SIZE = 0x5000 for LPAE
  104. 233 */
  105. 234 if ((string = pc->read_vmcoreinfo("CONFIG_ARM_LPAE"))) {
  106. 235 machdep->flags |= PAE;
  107. 236 free(string);
  108. 237 } else if ((sp = next_symbol("swapper_pg_dir", NULL)) &&
  109. 238 (sp->value - symbol_value("swapper_pg_dir")) == 0x5000)
  110. (gdb) up
  111. #2 0x00058a64 in main (argc=1223736800, argv=0xbe8a1b50) at main.c:669
  112. 669 machdep_init(PRE_GDB);
  113. (gdb) l
  114. 664 mem_init();
  115. 665 hq_init();
  116. 666 machdep_init(PRE_SYMTAB);
  117. 667 symtab_init();
  118. 668 paravirt_init();
  119. 669 machdep_init(PRE_GDB);
  120. 670 datatype_init();
  121. 671
  122. 672 /*
  123. 673 * gdb_main_loop() modifies "command_loop_hook" to point to the
  124. (gdb)
  125.  
  126. ---
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement