* [PATCH] livepatch: change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING
@ 2015-01-20 11:49 Miroslav Benes
2015-01-20 12:49 ` Josh Poimboeuf
0 siblings, 1 reply; 3+ messages in thread
From: Miroslav Benes @ 2015-01-20 11:49 UTC (permalink / raw)
To: jpoimboe, sjenning, jkosina, vojtech
Cc: live-patching, linux-kernel, pmladek, akpm, Miroslav Benes
Change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING in Kconfigs. HAVE_
bools are prevalent there and we should go with the flow.
Suggested-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Miroslav Benes <mbenes@suse.cz>
---
arch/x86/Kconfig | 2 +-
kernel/livepatch/Kconfig | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 460b31b..29b0952 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -17,7 +17,7 @@ config X86_64
depends on 64BIT
select X86_DEV_DMA_OPS
select ARCH_USE_CMPXCHG_LOCKREF
- select ARCH_HAVE_LIVE_PATCHING
+ select HAVE_LIVE_PATCHING
### Arch settings
config X86
diff --git a/kernel/livepatch/Kconfig b/kernel/livepatch/Kconfig
index 66797aa..347ee22 100644
--- a/kernel/livepatch/Kconfig
+++ b/kernel/livepatch/Kconfig
@@ -1,4 +1,4 @@
-config ARCH_HAVE_LIVE_PATCHING
+config HAVE_LIVE_PATCHING
bool
help
Arch supports kernel live patching
@@ -9,7 +9,7 @@ config LIVE_PATCHING
depends on MODULES
depends on SYSFS
depends on KALLSYMS_ALL
- depends on ARCH_HAVE_LIVE_PATCHING
+ depends on HAVE_LIVE_PATCHING
help
Say Y here if you want to support kernel live patching.
This option has no runtime impact until a kernel "patch"
--
2.1.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] livepatch: change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING
2015-01-20 11:49 [PATCH] livepatch: change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING Miroslav Benes
@ 2015-01-20 12:49 ` Josh Poimboeuf
2015-01-20 16:09 ` Jiri Kosina
0 siblings, 1 reply; 3+ messages in thread
From: Josh Poimboeuf @ 2015-01-20 12:49 UTC (permalink / raw)
To: Miroslav Benes
Cc: sjenning, jkosina, vojtech, live-patching, linux-kernel, pmladek, akpm
On Tue, Jan 20, 2015 at 12:49:35PM +0100, Miroslav Benes wrote:
> Change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING in Kconfigs. HAVE_
> bools are prevalent there and we should go with the flow.
>
> Suggested-by: Andrew Morton <akpm@linux-foundation.org>
> Signed-off-by: Miroslav Benes <mbenes@suse.cz>
Acked-by: Josh Poimboeuf <jpoimboe@redhat.com>
> ---
> arch/x86/Kconfig | 2 +-
> kernel/livepatch/Kconfig | 4 ++--
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
> index 460b31b..29b0952 100644
> --- a/arch/x86/Kconfig
> +++ b/arch/x86/Kconfig
> @@ -17,7 +17,7 @@ config X86_64
> depends on 64BIT
> select X86_DEV_DMA_OPS
> select ARCH_USE_CMPXCHG_LOCKREF
> - select ARCH_HAVE_LIVE_PATCHING
> + select HAVE_LIVE_PATCHING
>
> ### Arch settings
> config X86
> diff --git a/kernel/livepatch/Kconfig b/kernel/livepatch/Kconfig
> index 66797aa..347ee22 100644
> --- a/kernel/livepatch/Kconfig
> +++ b/kernel/livepatch/Kconfig
> @@ -1,4 +1,4 @@
> -config ARCH_HAVE_LIVE_PATCHING
> +config HAVE_LIVE_PATCHING
> bool
> help
> Arch supports kernel live patching
> @@ -9,7 +9,7 @@ config LIVE_PATCHING
> depends on MODULES
> depends on SYSFS
> depends on KALLSYMS_ALL
> - depends on ARCH_HAVE_LIVE_PATCHING
> + depends on HAVE_LIVE_PATCHING
> help
> Say Y here if you want to support kernel live patching.
> This option has no runtime impact until a kernel "patch"
> --
> 2.1.2
>
--
Josh
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] livepatch: change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING
2015-01-20 12:49 ` Josh Poimboeuf
@ 2015-01-20 16:09 ` Jiri Kosina
0 siblings, 0 replies; 3+ messages in thread
From: Jiri Kosina @ 2015-01-20 16:09 UTC (permalink / raw)
To: Josh Poimboeuf
Cc: Miroslav Benes, sjenning, vojtech, live-patching, linux-kernel,
pmladek, akpm
On Tue, 20 Jan 2015, Josh Poimboeuf wrote:
> On Tue, Jan 20, 2015 at 12:49:35PM +0100, Miroslav Benes wrote:
> > Change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING in Kconfigs. HAVE_
> > bools are prevalent there and we should go with the flow.
> >
> > Suggested-by: Andrew Morton <akpm@linux-foundation.org>
> > Signed-off-by: Miroslav Benes <mbenes@suse.cz>
>
> Acked-by: Josh Poimboeuf <jpoimboe@redhat.com>
Applied and pushed out.
--
Jiri Kosina
SUSE Labs
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-01-20 16:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-20 11:49 [PATCH] livepatch: change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING Miroslav Benes
2015-01-20 12:49 ` Josh Poimboeuf
2015-01-20 16:09 ` Jiri Kosina
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®