diff options
author | Petr Štetiar <ynezz@true.cz> | 2019-04-10 17:07:34 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2019-05-05 14:41:49 +0200 |
commit | 97d3f800a85ef341787eb1dcff41d0ad3fd7b7d0 (patch) | |
tree | 6bf6ce86e309c7af6946320ae1e0bd5d25184e09 | |
parent | 1325e74e0c2f9ebdafe05b1492cec77a60059920 (diff) | |
download | upstream-97d3f800a85ef341787eb1dcff41d0ad3fd7b7d0.tar.gz upstream-97d3f800a85ef341787eb1dcff41d0ad3fd7b7d0.tar.bz2 upstream-97d3f800a85ef341787eb1dcff41d0ad3fd7b7d0.zip |
config: kernel: Add KPROBE_EVENTS config option
Upstream has renamed KPROBE_EVENT to KPROBE_EVENTS in the following
commit:
commit 6b0b7551428e4caae1e2c023a529465a9a9ae2d4
Author: Anton Blanchard <anton@samba.org>
Date: Thu Feb 16 17:00:50 2017 +1100
perf/core: Rename CONFIG_[UK]PROBE_EVENT to CONFIG_[UK]PROBE_EVENTS
We have uses of CONFIG_UPROBE_EVENT and CONFIG_KPROBE_EVENT as
well as CONFIG_UPROBE_EVENTS and CONFIG_KPROBE_EVENTS.
Consistently use the plurals.
So I'm adding this plural option in order to make kconfig happy and stop
asking about it if kernel is compiled with verbose logging:
Enable kprobes-based dynamic events (KPROBE_EVENTS) [Y/n/?] (NEW)
Signed-off-by: Petr Štetiar <ynezz@true.cz>
-rw-r--r-- | config/Config-kernel.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/Config-kernel.in b/config/Config-kernel.in index 874b153b45..1df430d531 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -192,6 +192,10 @@ config KERNEL_KPROBE_EVENT bool default y if KERNEL_KPROBES +config KERNEL_KPROBE_EVENTS + bool + default y if KERNEL_KPROBES + config KERNEL_AIO bool "Compile the kernel with asynchronous IO support" default n |