Makefile 5.64 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
2
# Makefile for mm selftests
3

4
LOCAL_HDRS += $(selfdir)/mm/local_config.h $(top_srcdir)/mm/gup_test.h
5 6

include local_config.mk
7

8 9
ifeq ($(ARCH),)

10
ifeq ($(CROSS_COMPILE),)
11
uname_M := $(shell uname -m 2>/dev/null || echo not)
12 13 14
else
uname_M := $(shell echo $(CROSS_COMPILE) | grep -o '^[a-z0-9]\+')
endif
15 16
ARCH ?= $(shell echo $(uname_M) | sed -e 's/aarch64.*/arm64/' -e 's/ppc64.*/ppc64/')
endif
17

18 19 20 21 22
# Without this, failed build products remain, with up-to-date timestamps,
# thus tricking Make (and you!) into believing that All Is Well, in subsequent
# make invocations:
.DELETE_ON_ERROR:

23 24 25
# Avoid accidental wrong builds, due to built-in rules working just a little
# bit too well--but not quite as well as required for our situation here.
#
26
# In other words, "make $SOME_TEST" is supposed to fail to build at all,
27 28 29 30 31 32 33 34
# because this Makefile only supports either "make" (all), or "make /full/path".
# However,  the built-in rules, if not suppressed, will pick up CFLAGS and the
# initial LDLIBS (but not the target-specific LDLIBS, because those are only
# set for the full path target!). This causes it to get pretty far into building
# things despite using incorrect values such as an *occasionally* incomplete
# LDLIBS.
MAKEFLAGS += --no-builtin-rules

35
CFLAGS = -Wall -I $(top_srcdir) $(EXTRA_CFLAGS) $(KHDR_INCLUDES)
36
LDLIBS = -lrt -lpthread
37 38 39

TEST_GEN_PROGS = cow
TEST_GEN_PROGS += compaction_test
40
TEST_GEN_PROGS += gup_longterm
41 42 43
TEST_GEN_PROGS += gup_test
TEST_GEN_PROGS += hmm-tests
TEST_GEN_PROGS += hugetlb-madvise
44
TEST_GEN_PROGS += hugetlb-read-hwpoison
45 46 47 48 49 50 51 52 53 54 55
TEST_GEN_PROGS += hugepage-mmap
TEST_GEN_PROGS += hugepage-mremap
TEST_GEN_PROGS += hugepage-shm
TEST_GEN_PROGS += hugepage-vmemmap
TEST_GEN_PROGS += khugepaged
TEST_GEN_PROGS += madv_populate
TEST_GEN_PROGS += map_fixed_noreplace
TEST_GEN_PROGS += map_hugetlb
TEST_GEN_PROGS += map_populate
TEST_GEN_PROGS += memfd_secret
TEST_GEN_PROGS += migration
56
TEST_GEN_PROGS += mkdirty
57 58 59 60 61 62 63 64
TEST_GEN_PROGS += mlock-random-test
TEST_GEN_PROGS += mlock2-tests
TEST_GEN_PROGS += mrelease_test
TEST_GEN_PROGS += mremap_dontunmap
TEST_GEN_PROGS += mremap_test
TEST_GEN_PROGS += on-fault-limit
TEST_GEN_PROGS += thuge-gen
TEST_GEN_PROGS += transhuge-stress
65 66
TEST_GEN_PROGS += uffd-stress
TEST_GEN_PROGS += uffd-unit-tests
67
TEST_GEN_PROGS += split_huge_page_test
68
TEST_GEN_PROGS += ksm_tests
69
TEST_GEN_PROGS += ksm_functional_tests
70
TEST_GEN_PROGS += mdwe_test
71

72 73 74 75
ifneq ($(ARCH),arm64)
TEST_GEN_PROGS += soft-dirty
endif

76
ifeq ($(ARCH),x86_64)
77 78 79
CAN_BUILD_I386 := $(shell ./../x86/check_cc.sh "$(CC)" ../x86/trivial_32bit_program.c -m32)
CAN_BUILD_X86_64 := $(shell ./../x86/check_cc.sh "$(CC)" ../x86/trivial_64bit_program.c)
CAN_BUILD_WITH_NOPIE := $(shell ./../x86/check_cc.sh "$(CC)" ../x86/trivial_program.c -no-pie)
80

81 82 83
VMTARGETS := protection_keys
BINARIES_32 := $(VMTARGETS:%=%_32)
BINARIES_64 := $(VMTARGETS:%=%_64)
84 85 86 87 88 89

ifeq ($(CAN_BUILD_WITH_NOPIE),1)
CFLAGS += -no-pie
endif

ifeq ($(CAN_BUILD_I386),1)
90
TEST_GEN_PROGS += $(BINARIES_32)
91 92 93
endif

ifeq ($(CAN_BUILD_X86_64),1)
94
TEST_GEN_PROGS += $(BINARIES_64)
95 96
endif
else
97

98
ifneq (,$(findstring $(ARCH),ppc64))
99
TEST_GEN_PROGS += protection_keys
100 101
endif

102 103
endif

104
ifneq (,$(filter $(ARCH),arm64 ia64 mips64 parisc64 ppc64 riscv64 s390x sparc64 x86_64))
105
TEST_GEN_PROGS += va_high_addr_switch
106 107
TEST_GEN_PROGS += virtual_address_range
TEST_GEN_PROGS += write_to_hugetlbfs
108
endif
109

110
TEST_PROGS := run_vmtests.sh
111

112
TEST_FILES := test_vmalloc.sh
113
TEST_FILES += test_hmm.sh
114
TEST_FILES += va_high_addr_switch.sh
115

116
include ../lib.mk
117

118
$(TEST_GEN_PROGS): vm_util.c
119

120 121
$(OUTPUT)/uffd-stress: uffd-common.c
$(OUTPUT)/uffd-unit-tests: uffd-common.c
122

123
ifeq ($(ARCH),x86_64)
124 125 126 127 128 129 130 131 132 133 134 135 136 137
BINARIES_32 := $(patsubst %,$(OUTPUT)/%,$(BINARIES_32))
BINARIES_64 := $(patsubst %,$(OUTPUT)/%,$(BINARIES_64))

define gen-target-rule-32
$(1) $(1)_32: $(OUTPUT)/$(1)_32
.PHONY: $(1) $(1)_32
endef

define gen-target-rule-64
$(1) $(1)_64: $(OUTPUT)/$(1)_64
.PHONY: $(1) $(1)_64
endef

ifeq ($(CAN_BUILD_I386),1)
138
$(BINARIES_32): CFLAGS += -m32 -mxsave
139
$(BINARIES_32): LDLIBS += -lrt -ldl -lm
140
$(BINARIES_32): $(OUTPUT)/%_32: %.c
141
	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(notdir $^) $(LDLIBS) -o $@
142
$(foreach t,$(VMTARGETS),$(eval $(call gen-target-rule-32,$(t))))
143 144 145
endif

ifeq ($(CAN_BUILD_X86_64),1)
146
$(BINARIES_64): CFLAGS += -m64 -mxsave
147
$(BINARIES_64): LDLIBS += -lrt -ldl
148
$(BINARIES_64): $(OUTPUT)/%_64: %.c
149
	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(notdir $^) $(LDLIBS) -o $@
150
$(foreach t,$(VMTARGETS),$(eval $(call gen-target-rule-64,$(t))))
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
endif

# x86_64 users should be encouraged to install 32-bit libraries
ifeq ($(CAN_BUILD_I386)$(CAN_BUILD_X86_64),01)
all: warn_32bit_failure

warn_32bit_failure:
	@echo "Warning: you seem to have a broken 32-bit build" 2>&1;		\
	echo  "environment. This will reduce test coverage of 64-bit" 2>&1;	\
	echo  "kernels. If you are using a Debian-like distribution," 2>&1;	\
	echo  "try:"; 2>&1;							\
	echo  "";								\
	echo  "  apt-get install gcc-multilib libc6-i386 libc6-dev-i386";	\
	echo  "";								\
	echo  "If you are using a Fedora-like distribution, try:";		\
	echo  "";								\
	echo  "  yum install glibc-devel.*i686";				\
	exit 0;
endif
endif

172 173
# IOURING_EXTRA_LIBS may get set in local_config.mk, or it may be left empty.
$(OUTPUT)/cow: LDLIBS += $(IOURING_EXTRA_LIBS)
174

175 176
$(OUTPUT)/gup_longterm: LDLIBS += $(IOURING_EXTRA_LIBS)

177
$(OUTPUT)/mlock-random-test $(OUTPUT)/memfd_secret: LDLIBS += -lcap
178

179 180
$(OUTPUT)/ksm_tests: LDLIBS += -lnuma

181
$(OUTPUT)/migration: LDLIBS += -lnuma
182 183 184 185 186 187

local_config.mk local_config.h: check_config.sh
	/bin/sh ./check_config.sh $(CC)

EXTRA_CLEAN += local_config.mk local_config.h

188
ifeq ($(IOURING_EXTRA_LIBS),)
189 190 191 192
all: warn_missing_liburing

warn_missing_liburing:
	@echo ; \
193
	echo "Warning: missing liburing support. Some tests will be skipped." ; \
194 195
	echo
endif