Advertisement
simhavcs

backtrace_drm_dbgsym

Jan 13th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. root@linaro-alip:~# ps -elf | grep xorg
  2. 4 S root 2249 2178 1 80 0 - 70372 SyS_ep 05:33 tty7 00:00:01 /usr/lib/xorg/Xorg -noli7
  3. 0 S root 2569 2273 0 80 0 - 1487 pipe_w 05:36 ttyMSM0 00:00:00 grep xorg
  4. root@linaro-alip:~# gdb /usr/lib/xorg/Xorg 2249
  5. GNU gdb (Debian 8.2.1-2+b3) 8.2.1
  6. Copyright (C) 2018 Free Software Foundation, Inc.
  7. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  8. This is free software: you are free to change and redistribute it.
  9. There is NO WARRANTY, to the extent permitted by law.
  10. Type "show copying" and "show warranty" for details.
  11. This GDB was configured as "aarch64-linux-gnu".
  12. Type "show configuration" for configuration details.
  13. For bug reporting instructions, please see:
  14. <http://www.gnu.org/software/gdb/bugs/>.
  15. Find the GDB manual and other documentation resources online at:
  16. <http://www.gnu.org/software/gdb/documentation/>.
  17.  
  18. For help, type "help".
  19. Type "apropos word" to search for commands related to "word"...
  20. Reading symbols from /usr/lib/xorg/Xorg...(no debugging symbols found)...done.
  21. Attaching to program: /usr/lib/xorg/Xorg, process 2249
  22. [New LWP 2276]
  23. [New LWP 2281]
  24. [Thread debugging using libthread_db enabled]
  25. Using host libthread_db library "/lib/aarch64-linux-gnu/libthread_db.so.1".
  26.  
  27. 0x0000ffffa1c77c00 in epoll_pwait () from /lib/aarch64-linux-gnu/libc.so.6
  28. (gdb)
  29. (gdb) continue
  30. Continuing.
  31.  
  32. Thread 1 "Xorg" received signal SIGSEGV, Segmentation fault.
  33. fd_batch_flush (batch=0x0, sync=true, force=false)
  34. at ../src/gallium/drivers/freedreno/freedreno_batch.c:370
  35. 370 ../src/gallium/drivers/freedreno/freedreno_batch.c: No such file or directory.
  36. (gdb) backtrace full
  37. #0 fd_batch_flush (batch=0x0, sync=true, force=false)
  38. at ../src/gallium/drivers/freedreno/freedreno_batch.c:370
  39. tmp = 0x0
  40. newbatch = false
  41. #1 0x0000ffffa0578d80 in fd_bc_alloc_batch (cache=cache@entry=0xaaaadd0b6500,
  42. ctx=ctx@entry=0xaaaadd1ed0a0, nondraw=nondraw@entry=false)
  43. at ../src/gallium/drivers/freedreno/freedreno_batch_cache.c:310
  44. flush_batch = 0x0
  45. batch = <optimized out>
  46. idx = <optimized out>
  47. #2 0x0000ffffa05790d0 in batch_from_key (ctx=0xaaaadd1ed0a0,
  48. key=0xaaaaddde0040, cache=0xaaaadd0b6500)
  49. at ../src/gallium/drivers/freedreno/freedreno_batch_cache.c:368
  50. batch = 0x0
  51. hash = 441022521
  52. entry = 0x0
  53. batch = <optimized out>
  54. hash = <optimized out>
  55. entry = <optimized out>
  56. idx = <optimized out>
  57. rsc = <optimized out>
  58. #3 fd_batch_from_fb (cache=0xaaaadd0b6500, ctx=ctx@entry=0xaaaadd1ed0a0,
  59. pfb=pfb@entry=0xaaaadd1efd80)
  60. --Type <RET> for more, q to quit, c to continue without paging--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement