> -----Original Message----- > From: kbuild test robot [mailto:fengguang.wu@xxxxxxxxx] > Sent: Tuesday, June 24, 2014 1:24 PM > To: Joonsoo Kim > Cc: Linux Memory Management List; Andrew Morton; kbuild-all@xxxxxx > Subject: [next:master 103/212] make[2]: *** No rule to make target > `arch/powerpc/kvm/book3s_hv_cma.o', needed by `arch/powerpc/kvm/built- > in.o'. > > tree: git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git > master > head: 58ae500a03a6bf68eee323c342431bfdd3f460b6 > commit: e58e263e5254df63f3997192322220748e4f6223 [103/212] PPC, KVM, CMA: > use general CMA reserved area management framework > config: make ARCH=powerpc ppc64_defconfig > > All error/warnings: > > >> make[2]: *** No rule to make target `arch/powerpc/kvm/book3s_hv_cma.o', > needed by `arch/powerpc/kvm/built-in.o'. > make[2]: Target `__build' not remade because of errors. Thanks for reporting. Here goes trivial fix! -------------->8---------------------- >From 8546ca27b3bc0f01c45af4a35a58a9fc355e3a08 Mon Sep 17 00:00:00 2001 From: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> Date: Tue, 24 Jun 2014 15:22:16 +0900 Subject: [PATCH] PPC, KVM: fix build failure due to removed file Commit ('PPC, KVM, CMA: use general CMA reserved area management framework') removes book3s_hv_cma.c, but, missed to remove entry in Makefile. Fix it. Reported-by: kbuild test robot <fengguang.wu@xxxxxxxxx> Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> diff --git a/arch/powerpc/kvm/Makefile b/arch/powerpc/kvm/Makefile index ce569b6..72905c3 100644 --- a/arch/powerpc/kvm/Makefile +++ b/arch/powerpc/kvm/Makefile @@ -90,7 +90,6 @@ kvm-book3s_64-builtin-objs- $(CONFIG_KVM_BOOK3S_64_HANDLER) += \ book3s_hv_rm_mmu.o \ book3s_hv_ras.o \ book3s_hv_builtin.o \ - book3s_hv_cma.o \ $(kvm-book3s_64-builtin-xics-objs-y) endif -- 1.7.9.5 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>