* [PATCH] kvm: external module: test for EXT_CONFIG_KVM_TRACE instead of CONFIG_KVM_TRACE
@ 2008-10-24 17:28 Eduardo Habkost
2008-10-26 15:41 ` Avi Kivity
0 siblings, 1 reply; 2+ messages in thread
From: Eduardo Habkost @ 2008-10-24 17:28 UTC (permalink / raw)
To: Avi Kivity; +Cc: kvm, Eduardo Habkost
This patch complements 800e7a37ca9ace991a6a36a0046551ec30ec3b9c
(kvm: external module: adjust KVM_TRACE support to account for host kernel).
The config variable defined on config.kbuild was renamed to
EXT_CONFIG_KVM_TRACE, but the check for the configure setting on
kernel/Makefile was not changed to the new name, making the build system
try to compile kvm_trace.c without -DEXT_CONFIG_KVM_TRACE=y, if
building using --with-kvm-trace.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
kernel/Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/kernel/Makefile b/kernel/Makefile
index ef18fa6..66d0677 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -34,7 +34,7 @@ hack-files-ia64 = kvm_main.c kvm_fw.c
hack-files = $(hack-files-$(ARCH_DIR))
-ifeq ($(CONFIG_KVM_TRACE),y)
+ifeq ($(EXT_CONFIG_KVM_TRACE),y)
module_defines += -DEXT_CONFIG_KVM_TRACE=y
endif
--
1.5.6.rc3.11.g5f54d
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] kvm: external module: test for EXT_CONFIG_KVM_TRACE instead of CONFIG_KVM_TRACE
2008-10-24 17:28 [PATCH] kvm: external module: test for EXT_CONFIG_KVM_TRACE instead of CONFIG_KVM_TRACE Eduardo Habkost
@ 2008-10-26 15:41 ` Avi Kivity
0 siblings, 0 replies; 2+ messages in thread
From: Avi Kivity @ 2008-10-26 15:41 UTC (permalink / raw)
To: Eduardo Habkost; +Cc: kvm
Eduardo Habkost wrote:
> This patch complements 800e7a37ca9ace991a6a36a0046551ec30ec3b9c
> (kvm: external module: adjust KVM_TRACE support to account for host kernel).
>
> The config variable defined on config.kbuild was renamed to
> EXT_CONFIG_KVM_TRACE, but the check for the configure setting on
> kernel/Makefile was not changed to the new name, making the build system
> try to compile kvm_trace.c without -DEXT_CONFIG_KVM_TRACE=y, if
> building using --with-kvm-trace.
>
>
Applied, thanks.
--
error compiling committee.c: too many arguments to function
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-10-26 15:41 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-24 17:28 [PATCH] kvm: external module: test for EXT_CONFIG_KVM_TRACE instead of CONFIG_KVM_TRACE Eduardo Habkost
2008-10-26 15:41 ` Avi Kivity
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).