Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #
  2. # General architecture dependent options
  3. #
  4. config OPROFILE
  5. tristate "OProfile system profiling (EXPERIMENTAL)"
  6. depends on PROFILING
  7. depends on HAVE_OPROFILE
  8. depends on TRACING_SUPPORT
  9. select TRACING
  10. select RING_BUFFER
  11. help
  12. OProfile is a profiling system capable of profiling the
  13. whole system, include the kernel, kernel modules, libraries,
  14. and applications.
  15. If unsure, say N.
  16. config OPROFILE_IBS
  17. bool "OProfile AMD IBS support (EXPERIMENTAL)"
  18. default n
  19. depends on OPROFILE && SMP && X86
  20. help
  21. Instruction-Based Sampling (IBS) is a new profiling
  22. technique that provides rich, precise program performance
  23. information. IBS is introduced by AMD Family10h processors
  24. (AMD Opteron Quad-Core processor "Barcelona") to overcome
  25. the limitations of conventional performance counter
  26. sampling.
  27. If unsure, say N.
  28. config HAVE_OPROFILE
  29. bool
  30. config KPROBES
  31. bool "Kprobes"
  32. depends on KALLSYMS && MODULES
  33. depends on HAVE_KPROBES
  34. help
  35. Kprobes allows you to trap at almost any kernel address and
  36. execute a callback function. register_kprobe() establishes
  37. a probepoint and specifies the callback. Kprobes is useful
  38. for kernel debugging, non-intrusive instrumentation and testing.
  39. If in doubt, say "N".
  40. config HAVE_EFFICIENT_UNALIGNED_ACCESS
  41. bool
  42. help
  43. Some architectures are unable to perform unaligned accesses
  44. without the use of get_unaligned/put_unaligned. Others are
  45. unable to perform such accesses efficiently (e.g. trap on
  46. unaligned access and require fixing it up in the exception
  47. handler.)
  48. This symbol should be selected by an architecture if it can
  49. perform unaligned accesses efficiently to allow different
  50. code paths to be selected for these cases. Some network
  51. drivers, for example, could opt to not fix up alignment
  52. problems with received packets if doing so would not help
  53. much.
  54. See Documentation/unaligned-memory-access.txt for more
  55. information on the topic of unaligned memory accesses.
  56. config HAVE_SYSCALL_WRAPPERS
  57. bool
  58. config KRETPROBES
  59. def_bool y
  60. depends on KPROBES && HAVE_KRETPROBES
  61. config HAVE_IOREMAP_PROT
  62. bool
  63. config HAVE_KPROBES
  64. bool
  65. config HAVE_KRETPROBES
  66. bool
  67. #
  68. # An arch should select this if it provides all these things:
  69. #
  70. # task_pt_regs() in asm/processor.h or asm/ptrace.h
  71. # arch_has_single_step() if there is hardware single-step support
  72. # arch_has_block_step() if there is hardware block-step support
  73. # asm/syscall.h supplying asm-generic/syscall.h interface
  74. # linux/regset.h user_regset interfaces
  75. # CORE_DUMP_USE_REGSET #define'd in linux/elf.h
  76. # TIF_SYSCALL_TRACE calls tracehook_report_syscall_{entry,exit}
  77. # TIF_NOTIFY_RESUME calls tracehook_notify_resume()
  78. # signal delivery calls tracehook_signal_handler()
  79. #
  80. config HAVE_ARCH_TRACEHOOK
  81. bool
  82. config HAVE_DMA_ATTRS
  83. bool
  84. config USE_GENERIC_SMP_HELPERS
  85. bool
  86. config HAVE_CLK
  87. bool
  88. help
  89. The <linux/clk.h> calls support software clock gating and
  90. thus are a key power management tool on many systems.
  91. config HAVE_DMA_API_DEBUG
  92. bool
  93. config HAVE_DEFAULT_NO_SPIN_MUTEXES
  94. bool
  95. source "kernel/gcov/Kconfig"