diff options
author | Josh Poimboeuf <jpoimboe@redhat.com> | 2015-02-03 17:45:18 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2015-02-04 05:25:51 -0500 |
commit | 12cf89b550d13eb7cb86ef182bd6c04345a33a1f (patch) | |
tree | 1836f4d7130559031079b7b611a67127b304dc50 /kernel/livepatch | |
parent | dbed7ddab967550d1181633e8ac7905808f29a94 (diff) |
livepatch: rename config to CONFIG_LIVEPATCH
Rename CONFIG_LIVE_PATCHING to CONFIG_LIVEPATCH to make the naming of
the config and the code more consistent.
Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
Reviewed-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'kernel/livepatch')
-rw-r--r-- | kernel/livepatch/Kconfig | 6 | ||||
-rw-r--r-- | kernel/livepatch/Makefile | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kernel/livepatch/Kconfig b/kernel/livepatch/Kconfig index 347ee2221137..045022557936 100644 --- a/kernel/livepatch/Kconfig +++ b/kernel/livepatch/Kconfig | |||
@@ -1,15 +1,15 @@ | |||
1 | config HAVE_LIVE_PATCHING | 1 | config HAVE_LIVEPATCH |
2 | bool | 2 | bool |
3 | help | 3 | help |
4 | Arch supports kernel live patching | 4 | Arch supports kernel live patching |
5 | 5 | ||
6 | config LIVE_PATCHING | 6 | config LIVEPATCH |
7 | bool "Kernel Live Patching" | 7 | bool "Kernel Live Patching" |
8 | depends on DYNAMIC_FTRACE_WITH_REGS | 8 | depends on DYNAMIC_FTRACE_WITH_REGS |
9 | depends on MODULES | 9 | depends on MODULES |
10 | depends on SYSFS | 10 | depends on SYSFS |
11 | depends on KALLSYMS_ALL | 11 | depends on KALLSYMS_ALL |
12 | depends on HAVE_LIVE_PATCHING | 12 | depends on HAVE_LIVEPATCH |
13 | help | 13 | help |
14 | Say Y here if you want to support kernel live patching. | 14 | Say Y here if you want to support kernel live patching. |
15 | This option has no runtime impact until a kernel "patch" | 15 | This option has no runtime impact until a kernel "patch" |
diff --git a/kernel/livepatch/Makefile b/kernel/livepatch/Makefile index 7c1f00861428..e8780c0901d9 100644 --- a/kernel/livepatch/Makefile +++ b/kernel/livepatch/Makefile | |||
@@ -1,3 +1,3 @@ | |||
1 | obj-$(CONFIG_LIVE_PATCHING) += livepatch.o | 1 | obj-$(CONFIG_LIVEPATCH) += livepatch.o |
2 | 2 | ||
3 | livepatch-objs := core.o | 3 | livepatch-objs := core.o |