Kconfig.debug 1014 B

1234567891011121314151617181920212223242526272829
  1. choice
  2. prompt "Choose kernel unwinder"
  3. default UNWINDER_PROLOGUE if KALLSYMS
  4. help
  5. This determines which method will be used for unwinding kernel stack
  6. traces for panics, oopses, bugs, warnings, perf, /proc/<pid>/stack,
  7. lockdep, and more.
  8. config UNWINDER_GUESS
  9. bool "Guess unwinder"
  10. help
  11. This option enables the "guess" unwinder for unwinding kernel stack
  12. traces. It scans the stack and reports every kernel text address it
  13. finds. Some of the addresses it reports may be incorrect.
  14. While this option often produces false positives, it can still be
  15. useful in many cases.
  16. config UNWINDER_PROLOGUE
  17. bool "Prologue unwinder"
  18. depends on KALLSYMS
  19. help
  20. This option enables the "prologue" unwinder for unwinding kernel stack
  21. traces. It unwind the stack frame based on prologue code analyze. Symbol
  22. information is needed, at least the address and length of each function.
  23. Some of the addresses it reports may be incorrect (but better than the
  24. Guess unwinder).
  25. endchoice