diff options
author | Linus Torvalds <torvalds@evo.osdl.org> | 2006-02-26 20:24:40 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@evo.osdl.org> | 2006-02-26 20:24:40 -0800 |
commit | add2b6fdae9d7fc251c229e76252f731917094c4 (patch) | |
tree | b800f38c2b8e7e498b85bfa8a8ecba2aaf906b77 /arch/x86_64/Kconfig | |
parent | e18f9b4be430189d79a01a75734bf7cfdc22cc3f (diff) | |
download | linux-3.10-add2b6fdae9d7fc251c229e76252f731917094c4.tar.gz linux-3.10-add2b6fdae9d7fc251c229e76252f731917094c4.tar.bz2 linux-3.10-add2b6fdae9d7fc251c229e76252f731917094c4.zip |
Make Kprobes depend on modules
Commit 9ec4b1f356b3bad928ae8e2aa9caebfa737d52df made kprobes not compile
without module support, so just make that clear in the Kconfig file.
Also, since it's marked EXPERIMENTAL, make that dependency explicit too.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64/Kconfig')
-rw-r--r-- | arch/x86_64/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86_64/Kconfig b/arch/x86_64/Kconfig index babc31b3ef1..e18eb79bf85 100644 --- a/arch/x86_64/Kconfig +++ b/arch/x86_64/Kconfig @@ -577,6 +577,7 @@ source "arch/x86_64/oprofile/Kconfig" config KPROBES bool "Kprobes (EXPERIMENTAL)" + depends on EXPERIMENTAL && MODULES help Kprobes allows you to trap at almost any kernel address and execute a callback function. register_kprobe() establishes |