* [PATCH] Add virt directory to the top Makefile
@ 2015-09-22 8:47 Feng Wu
2015-09-22 9:20 ` Michal Marek
0 siblings, 1 reply; 3+ messages in thread
From: Feng Wu @ 2015-09-22 8:47 UTC (permalink / raw)
To: pbonzini, alex.williamson, mmarek
Cc: eric.auger, linux-kbuild, linux-kernel, kvm, Feng Wu
We need to build files in virt/lib/, which are now used by
KVM and VFIO, so add virt directory to the top Makefile.
Signed-off-by: Feng Wu <feng.wu@intel.com>
---
Makefile | 8 +++++---
arch/x86/kvm/Makefile | 3 ---
virt/Makefile | 1 +
3 files changed, 6 insertions(+), 6 deletions(-)
create mode 100644 virt/Makefile
diff --git a/Makefile b/Makefile
index 35b4c19..d82fceb 100644
--- a/Makefile
+++ b/Makefile
@@ -550,6 +550,7 @@ drivers-y := drivers/ sound/ firmware/
net-y := net/
libs-y := lib/
core-y := usr/
+virt-y := virt/
endif # KBUILD_EXTMOD
ifeq ($(dot-config),1)
@@ -890,10 +891,10 @@ core-y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/
vmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
$(core-y) $(core-m) $(drivers-y) $(drivers-m) \
- $(net-y) $(net-m) $(libs-y) $(libs-m)))
+ $(net-y) $(net-m) $(libs-y) $(libs-m) $(virt-y)))
vmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \
- $(init-) $(core-) $(drivers-) $(net-) $(libs-))))
+ $(init-) $(core-) $(drivers-) $(net-) $(libs-) $(virt-))))
init-y := $(patsubst %/, %/built-in.o, $(init-y))
core-y := $(patsubst %/, %/built-in.o, $(core-y))
@@ -902,10 +903,11 @@ net-y := $(patsubst %/, %/built-in.o, $(net-y))
libs-y1 := $(patsubst %/, %/lib.a, $(libs-y))
libs-y2 := $(patsubst %/, %/built-in.o, $(libs-y))
libs-y := $(libs-y1) $(libs-y2)
+virt-y := $(patsubst %/, %/built-in.o, $(virt-y))
# Externally visible symbols (used by link-vmlinux.sh)
export KBUILD_VMLINUX_INIT := $(head-y) $(init-y)
-export KBUILD_VMLINUX_MAIN := $(core-y) $(libs-y) $(drivers-y) $(net-y)
+export KBUILD_VMLINUX_MAIN := $(core-y) $(libs-y) $(drivers-y) $(net-y) $(virt-y)
export KBUILD_LDS := arch/$(SRCARCH)/kernel/vmlinux.lds
export LDFLAGS_vmlinux
# used by scripts/pacmage/Makefile
diff --git a/arch/x86/kvm/Makefile b/arch/x86/kvm/Makefile
index 05cc2d7..67d215c 100644
--- a/arch/x86/kvm/Makefile
+++ b/arch/x86/kvm/Makefile
@@ -6,9 +6,6 @@ CFLAGS_svm.o := -I.
CFLAGS_vmx.o := -I.
KVM := ../../../virt/kvm
-LIB := ../../../virt/lib
-
-obj-$(CONFIG_IRQ_BYPASS_MANAGER) += $(LIB)/
kvm-y += $(KVM)/kvm_main.o $(KVM)/coalesced_mmio.o \
$(KVM)/eventfd.o $(KVM)/irqchip.o $(KVM)/vfio.o
diff --git a/virt/Makefile b/virt/Makefile
new file mode 100644
index 0000000..335dc0b
--- /dev/null
+++ b/virt/Makefile
@@ -0,0 +1 @@
+obj-y += ./lib/
--
2.1.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Add virt directory to the top Makefile
2015-09-22 8:47 [PATCH] Add virt directory to the top Makefile Feng Wu
@ 2015-09-22 9:20 ` Michal Marek
2015-09-22 10:14 ` Paolo Bonzini
0 siblings, 1 reply; 3+ messages in thread
From: Michal Marek @ 2015-09-22 9:20 UTC (permalink / raw)
To: Feng Wu, pbonzini, alex.williamson
Cc: eric.auger, linux-kbuild, linux-kernel, kvm
On 2015-09-22 10:47, Feng Wu wrote:
> We need to build files in virt/lib/, which are now used by
> KVM and VFIO, so add virt directory to the top Makefile.
>
> Signed-off-by: Feng Wu <feng.wu@intel.com>
> ---
> Makefile | 8 +++++---
> arch/x86/kvm/Makefile | 3 ---
> virt/Makefile | 1 +
> 3 files changed, 6 insertions(+), 6 deletions(-)
> create mode 100644 virt/Makefile
I assume this will go through the kvm tree, is that correct?
> vmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
> $(core-y) $(core-m) $(drivers-y) $(drivers-m) \
> - $(net-y) $(net-m) $(libs-y) $(libs-m)))
> + $(net-y) $(net-m) $(libs-y) $(libs-m) $(virt-y)))
This allows to drop the explicit 'virt' entry in the KBUILD_ALLDIRS
assignment a few lines below.
> diff --git a/virt/Makefile b/virt/Makefile
> new file mode 100644
> index 0000000..335dc0b
> --- /dev/null
> +++ b/virt/Makefile
> @@ -0,0 +1 @@
> +obj-y += ./lib/
Remove the ./
Michal
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Add virt directory to the top Makefile
2015-09-22 9:20 ` Michal Marek
@ 2015-09-22 10:14 ` Paolo Bonzini
0 siblings, 0 replies; 3+ messages in thread
From: Paolo Bonzini @ 2015-09-22 10:14 UTC (permalink / raw)
To: Michal Marek, Feng Wu, alex.williamson
Cc: eric.auger, linux-kbuild, linux-kernel, kvm
On 22/09/2015 11:20, Michal Marek wrote:
> On 2015-09-22 10:47, Feng Wu wrote:
>> We need to build files in virt/lib/, which are now used by
>> KVM and VFIO, so add virt directory to the top Makefile.
>>
>> Signed-off-by: Feng Wu <feng.wu@intel.com>
>> ---
>> Makefile | 8 +++++---
>> arch/x86/kvm/Makefile | 3 ---
>> virt/Makefile | 1 +
>> 3 files changed, 6 insertions(+), 6 deletions(-)
>> create mode 100644 virt/Makefile
>
> I assume this will go through the kvm tree, is that correct?
Yes. Feng, can you send a v2 of this patch for Michal to ack?
Paolo
>
>
>> vmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
>> $(core-y) $(core-m) $(drivers-y) $(drivers-m) \
>> - $(net-y) $(net-m) $(libs-y) $(libs-m)))
>> + $(net-y) $(net-m) $(libs-y) $(libs-m) $(virt-y)))
>
> This allows to drop the explicit 'virt' entry in the KBUILD_ALLDIRS
> assignment a few lines below.
>
>
>> diff --git a/virt/Makefile b/virt/Makefile
>> new file mode 100644
>> index 0000000..335dc0b
>> --- /dev/null
>> +++ b/virt/Makefile
>> @@ -0,0 +1 @@
>> +obj-y += ./lib/
>
> Remove the ./
>
> Michal
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-09-22 10:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-22 8:47 [PATCH] Add virt directory to the top Makefile Feng Wu
2015-09-22 9:20 ` Michal Marek
2015-09-22 10:14 ` Paolo Bonzini
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).