From 59cec5300f4d8fe7498bf85ab53211b8bedf9b2c Mon Sep 17 00:00:00 2001 From: Xu Yu Date: Fri, 20 Nov 2020 14:24:46 +0800 Subject: [PATCH 2359/2944] alinux: mm: bring back unevictable.o in obj-y fix #27508674 The commit 79e7c57a183 ("alinux: mm: fix undefined reference to mlock_fixup") intends to fix undefined reference to mlock_fixup when compiling unevictable.o with CONFIG_MMU disabled. However, it accidentally does not include unevictable.o in the target obj-y. This brings unevictable.o back. Fixes: 79e7c57a183 ("alinux: mm: fix undefined reference to mlock_fixup") Signed-off-by: Xu Yu Reviewed-by: Xunlei Pang --- mm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/Makefile b/mm/Makefile index 8fc4b4e..16746e4 100644 --- a/mm/Makefile +++ b/mm/Makefile @@ -107,4 +107,4 @@ obj-$(CONFIG_HMM) += hmm.o obj-$(CONFIG_MEMFD_CREATE) += memfd.o obj-$(CONFIG_KIDLED) += kidled.o obj-$(CONFIG_PAGE_REPORTING) += page_reporting.o -mmu-$(CONFIG_MMU) += unevictable.o +obj-$(CONFIG_MMU) += unevictable.o -- 1.8.3.1