Kconfig.debug 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. choice
  4. prompt "Physical memory granularity"
  5. default IA64_GRANULE_64MB
  6. config IA64_GRANULE_16MB
  7. bool "16MB"
  8. help
  9. IA-64 identity-mapped regions use a large page size called "granules".
  10. Select "16MB" for a small granule size.
  11. Select "64MB" for a large granule size. This is the current default.
  12. config IA64_GRANULE_64MB
  13. bool "64MB"
  14. depends on !(IA64_GENERIC || IA64_HP_ZX1 || IA64_HP_ZX1_SWIOTLB || IA64_SGI_SN2)
  15. endchoice
  16. config IA64_PRINT_HAZARDS
  17. bool "Print possible IA-64 dependency violations to console"
  18. depends on DEBUG_KERNEL
  19. help
  20. Selecting this option prints more information for Illegal Dependency
  21. Faults, that is, for Read-after-Write (RAW), Write-after-Write (WAW),
  22. or Write-after-Read (WAR) violations. This option is ignored if you
  23. are compiling for an Itanium A step processor
  24. (CONFIG_ITANIUM_ASTEP_SPECIFIC). If you're unsure, select Y.
  25. config DISABLE_VHPT
  26. bool "Disable VHPT"
  27. depends on DEBUG_KERNEL
  28. help
  29. The Virtual Hash Page Table (VHPT) enhances virtual address
  30. translation performance. Normally you want the VHPT active but you
  31. can select this option to disable the VHPT for debugging. If you're
  32. unsure, answer N.
  33. config IA64_DEBUG_CMPXCHG
  34. bool "Turn on compare-and-exchange bug checking (slow!)"
  35. depends on DEBUG_KERNEL
  36. help
  37. Selecting this option turns on bug checking for the IA-64
  38. compare-and-exchange instructions. This is slow! Itaniums
  39. from step B3 or later don't have this problem. If you're unsure,
  40. select N.
  41. config IA64_DEBUG_IRQ
  42. bool "Turn on irq debug checks (slow!)"
  43. depends on DEBUG_KERNEL
  44. help
  45. Selecting this option turns on bug checking for the IA-64 irq_save
  46. and restore instructions. It's useful for tracking down spinlock
  47. problems, but slow! If you're unsure, select N.
  48. config SYSVIPC_COMPAT
  49. bool
  50. depends on COMPAT && SYSVIPC
  51. default y
  52. endmenu