Commit 3743d33e authored by Linus Torvalds's avatar Linus Torvalds

Tiny clean-up of OPROFILE/KPROBES configuration

Make the Kconfig.instrumentation file a bit easier on the eyes, and use
the new ARCH_SUPPORTS_OPROFILE for x86[-64].
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 00a58253
...@@ -112,8 +112,9 @@ config GENERIC_TIME_VSYSCALL ...@@ -112,8 +112,9 @@ config GENERIC_TIME_VSYSCALL
bool bool
default X86_64 default X86_64
config ARCH_SUPPORTS_OPROFILE
bool
default y
config ZONE_DMA32 config ZONE_DMA32
......
...@@ -20,8 +20,8 @@ config PROFILING ...@@ -20,8 +20,8 @@ config PROFILING
config OPROFILE config OPROFILE
tristate "OProfile system profiling (EXPERIMENTAL)" tristate "OProfile system profiling (EXPERIMENTAL)"
depends on PROFILING depends on PROFILING && !UML
depends on (ARCH_SUPPORTS_OPROFILE || ALPHA || ARM || BLACKFIN || X86_32 || IA64 || M32R || PARISC || PPC || S390 || SUPERH || SPARC || X86_64) && !UML depends on ARCH_SUPPORTS_OPROFILE || ALPHA || ARM || BLACKFIN || IA64 || M32R || PARISC || PPC || S390 || SUPERH || SPARC
help help
OProfile is a profiling system capable of profiling the OProfile is a profiling system capable of profiling the
whole system, include the kernel, kernel modules, libraries, whole system, include the kernel, kernel modules, libraries,
...@@ -31,8 +31,8 @@ config OPROFILE ...@@ -31,8 +31,8 @@ config OPROFILE
config KPROBES config KPROBES
bool "Kprobes" bool "Kprobes"
depends on KALLSYMS && MODULES depends on KALLSYMS && MODULES && !UML
depends on (X86_32 || IA64 || PPC || S390 || SPARC64 || X86_64 || AVR32) && !UML depends on X86_32 || IA64 || PPC || S390 || SPARC64 || X86_64 || AVR32
help help
Kprobes allows you to trap at almost any kernel address and Kprobes allows you to trap at almost any kernel address and
execute a callback function. register_kprobe() establishes execute a callback function. register_kprobe() establishes
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment