mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-07 14:26:11 -04:00
Pull MM updates from Andrew Morton:
- The series "zram: optimal post-processing target selection" from
Sergey Senozhatsky improves zram's post-processing selection
algorithm. This leads to improved memory savings.
- Wei Yang has gone to town on the mapletree code, contributing several
series which clean up the implementation:
- "refine mas_mab_cp()"
- "Reduce the space to be cleared for maple_big_node"
- "maple_tree: simplify mas_push_node()"
- "Following cleanup after introduce mas_wr_store_type()"
- "refine storing null"
- The series "selftests/mm: hugetlb_fault_after_madv improvements" from
David Hildenbrand fixes this selftest for s390.
- The series "introduce pte_offset_map_{ro|rw}_nolock()" from Qi Zheng
implements some rationaizations and cleanups in the page mapping
code.
- The series "mm: optimize shadow entries removal" from Shakeel Butt
optimizes the file truncation code by speeding up the handling of
shadow entries.
- The series "Remove PageKsm()" from Matthew Wilcox completes the
migration of this flag over to being a folio-based flag.
- The series "Unify hugetlb into arch_get_unmapped_area functions" from
Oscar Salvador implements a bunch of consolidations and cleanups in
the hugetlb code.
- The series "Do not shatter hugezeropage on wp-fault" from Dev Jain
takes away the wp-fault time practice of turning a huge zero page
into small pages. Instead we replace the whole thing with a THP. More
consistent cleaner and potentiall saves a large number of pagefaults.
- The series "percpu: Add a test case and fix for clang" from Andy
Shevchenko enhances and fixes the kernel's built in percpu test code.
- The series "mm/mremap: Remove extra vma tree walk" from Liam Howlett
optimizes mremap() by avoiding doing things which we didn't need to
do.
- The series "Improve the tmpfs large folio read performance" from
Baolin Wang teaches tmpfs to copy data into userspace at the folio
size rather than as individual pages. A 20% speedup was observed.
- The series "mm/damon/vaddr: Fix issue in
damon_va_evenly_split_region()" fro Zheng Yejian fixes DAMON
splitting.
- The series "memcg-v1: fully deprecate charge moving" from Shakeel
Butt removes the long-deprecated memcgv2 charge moving feature.
- The series "fix error handling in mmap_region() and refactor" from
Lorenzo Stoakes cleanup up some of the mmap() error handling and
addresses some potential performance issues.
- The series "x86/module: use large ROX pages for text allocations"
from Mike Rapoport teaches x86 to use large pages for
read-only-execute module text.
- The series "page allocation tag compression" from Suren Baghdasaryan
is followon maintenance work for the new page allocation profiling
feature.
- The series "page->index removals in mm" from Matthew Wilcox remove
most references to page->index in mm/. A slow march towards shrinking
struct page.
- The series "damon/{self,kunit}tests: minor fixups for DAMON debugfs
interface tests" from Andrew Paniakin performs maintenance work for
DAMON's self testing code.
- The series "mm: zswap swap-out of large folios" from Kanchana Sridhar
improves zswap's batching of compression and decompression. It is a
step along the way towards using Intel IAA hardware acceleration for
this zswap operation.
- The series "kasan: migrate the last module test to kunit" from
Sabyrzhan Tasbolatov completes the migration of the KASAN built-in
tests over to the KUnit framework.
- The series "implement lightweight guard pages" from Lorenzo Stoakes
permits userapace to place fault-generating guard pages within a
single VMA, rather than requiring that multiple VMAs be created for
this. Improved efficiencies for userspace memory allocators are
expected.
- The series "memcg: tracepoint for flushing stats" from JP Kobryn uses
tracepoints to provide increased visibility into memcg stats flushing
activity.
- The series "zram: IDLE flag handling fixes" from Sergey Senozhatsky
fixes a zram buglet which potentially affected performance.
- The series "mm: add more kernel parameters to control mTHP" from
Maíra Canal enhances our ability to control/configuremultisize THP
from the kernel boot command line.
- The series "kasan: few improvements on kunit tests" from Sabyrzhan
Tasbolatov has a couple of fixups for the KASAN KUnit tests.
- The series "mm/list_lru: Split list_lru lock into per-cgroup scope"
from Kairui Song optimizes list_lru memory utilization when lockdep
is enabled.
* tag 'mm-stable-2024-11-18-19-27' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (215 commits)
cma: enforce non-zero pageblock_order during cma_init_reserved_mem()
mm/kfence: add a new kunit test test_use_after_free_read_nofault()
zram: fix NULL pointer in comp_algorithm_show()
memcg/hugetlb: add hugeTLB counters to memcg
vmstat: call fold_vm_zone_numa_events() before show per zone NUMA event
mm: mmap_lock: check trace_mmap_lock_$type_enabled() instead of regcount
zram: ZRAM_DEF_COMP should depend on ZRAM
MAINTAINERS/MEMORY MANAGEMENT: add document files for mm
Docs/mm/damon: recommend academic papers to read and/or cite
mm: define general function pXd_init()
kmemleak: iommu/iova: fix transient kmemleak false positive
mm/list_lru: simplify the list_lru walk callback function
mm/list_lru: split the lock to per-cgroup scope
mm/list_lru: simplify reparenting and initial allocation
mm/list_lru: code clean up for reparenting
mm/list_lru: don't export list_lru_add
mm/list_lru: don't pass unnecessary key parameters
kasan: add kunit tests for kmalloc_track_caller, kmalloc_node_track_caller
kasan: change kasan_atomics kunit test as KUNIT_CASE_SLOW
kasan: use EXPORT_SYMBOL_IF_KUNIT to export symbols
...
238 lines
7.0 KiB
Makefile
238 lines
7.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for mm selftests
|
|
|
|
LOCAL_HDRS += $(selfdir)/mm/local_config.h $(top_srcdir)/mm/gup_test.h
|
|
LOCAL_HDRS += $(selfdir)/mm/mseal_helpers.h
|
|
|
|
include local_config.mk
|
|
|
|
ifeq ($(ARCH),)
|
|
|
|
ifeq ($(CROSS_COMPILE),)
|
|
uname_M := $(shell uname -m 2>/dev/null || echo not)
|
|
else
|
|
uname_M := $(shell echo $(CROSS_COMPILE) | grep -o '^[a-z0-9]\+')
|
|
endif
|
|
ARCH ?= $(shell echo $(uname_M) | sed -e 's/aarch64.*/arm64/' -e 's/ppc64.*/powerpc/')
|
|
endif
|
|
|
|
# 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:
|
|
|
|
# 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.
|
|
#
|
|
# In other words, "make $SOME_TEST" is supposed to fail to build at all,
|
|
# 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
|
|
|
|
CFLAGS = -Wall -I $(top_srcdir) $(EXTRA_CFLAGS) $(KHDR_INCLUDES) $(TOOLS_INCLUDES)
|
|
LDLIBS = -lrt -lpthread -lm
|
|
|
|
KDIR ?= /lib/modules/$(shell uname -r)/build
|
|
ifneq (,$(wildcard $(KDIR)/Module.symvers))
|
|
ifneq (,$(wildcard $(KDIR)/include/linux/page_frag_cache.h))
|
|
TEST_GEN_MODS_DIR := page_frag
|
|
else
|
|
PAGE_FRAG_WARNING = "missing page_frag_cache.h, please use a newer kernel"
|
|
endif
|
|
else
|
|
PAGE_FRAG_WARNING = "missing Module.symvers, please have the kernel built first"
|
|
endif
|
|
|
|
TEST_GEN_FILES = cow
|
|
TEST_GEN_FILES += compaction_test
|
|
TEST_GEN_FILES += gup_longterm
|
|
TEST_GEN_FILES += gup_test
|
|
TEST_GEN_FILES += hmm-tests
|
|
TEST_GEN_FILES += hugetlb-madvise
|
|
TEST_GEN_FILES += hugetlb-read-hwpoison
|
|
TEST_GEN_FILES += hugetlb-soft-offline
|
|
TEST_GEN_FILES += hugepage-mmap
|
|
TEST_GEN_FILES += hugepage-mremap
|
|
TEST_GEN_FILES += hugepage-shm
|
|
TEST_GEN_FILES += hugepage-vmemmap
|
|
TEST_GEN_FILES += khugepaged
|
|
TEST_GEN_FILES += madv_populate
|
|
TEST_GEN_FILES += map_fixed_noreplace
|
|
TEST_GEN_FILES += map_hugetlb
|
|
TEST_GEN_FILES += map_populate
|
|
ifneq (,$(filter $(ARCH),arm64 riscv riscv64 x86 x86_64))
|
|
TEST_GEN_FILES += memfd_secret
|
|
endif
|
|
TEST_GEN_FILES += migration
|
|
TEST_GEN_FILES += mkdirty
|
|
TEST_GEN_FILES += mlock-random-test
|
|
TEST_GEN_FILES += mlock2-tests
|
|
TEST_GEN_FILES += mrelease_test
|
|
TEST_GEN_FILES += mremap_dontunmap
|
|
TEST_GEN_FILES += mremap_test
|
|
TEST_GEN_FILES += mseal_test
|
|
TEST_GEN_FILES += seal_elf
|
|
TEST_GEN_FILES += on-fault-limit
|
|
TEST_GEN_FILES += pagemap_ioctl
|
|
TEST_GEN_FILES += thuge-gen
|
|
TEST_GEN_FILES += transhuge-stress
|
|
TEST_GEN_FILES += uffd-stress
|
|
TEST_GEN_FILES += uffd-unit-tests
|
|
TEST_GEN_FILES += split_huge_page_test
|
|
TEST_GEN_FILES += ksm_tests
|
|
TEST_GEN_FILES += ksm_functional_tests
|
|
TEST_GEN_FILES += mdwe_test
|
|
TEST_GEN_FILES += hugetlb_fault_after_madv
|
|
TEST_GEN_FILES += hugetlb_madv_vs_map
|
|
TEST_GEN_FILES += hugetlb_dio
|
|
TEST_GEN_FILES += droppable
|
|
TEST_GEN_FILES += guard-pages
|
|
|
|
ifneq ($(ARCH),arm64)
|
|
TEST_GEN_FILES += soft-dirty
|
|
endif
|
|
|
|
ifeq ($(ARCH),x86_64)
|
|
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)
|
|
|
|
VMTARGETS := protection_keys
|
|
VMTARGETS += pkey_sighandler_tests
|
|
BINARIES_32 := $(VMTARGETS:%=%_32)
|
|
BINARIES_64 := $(VMTARGETS:%=%_64)
|
|
|
|
ifeq ($(CAN_BUILD_WITH_NOPIE),1)
|
|
CFLAGS += -no-pie
|
|
endif
|
|
|
|
ifeq ($(CAN_BUILD_I386),1)
|
|
TEST_GEN_FILES += $(BINARIES_32)
|
|
endif
|
|
|
|
ifeq ($(CAN_BUILD_X86_64),1)
|
|
TEST_GEN_FILES += $(BINARIES_64)
|
|
endif
|
|
|
|
else ifeq ($(ARCH),arm64)
|
|
TEST_GEN_FILES += protection_keys
|
|
TEST_GEN_FILES += pkey_sighandler_tests
|
|
else ifeq ($(ARCH),powerpc)
|
|
TEST_GEN_FILES += protection_keys
|
|
endif
|
|
|
|
ifneq (,$(filter $(ARCH),arm64 mips64 parisc64 powerpc riscv64 s390x sparc64 x86_64 s390))
|
|
TEST_GEN_FILES += va_high_addr_switch
|
|
ifneq ($(ARCH),riscv64)
|
|
TEST_GEN_FILES += virtual_address_range
|
|
endif
|
|
TEST_GEN_FILES += write_to_hugetlbfs
|
|
endif
|
|
|
|
TEST_PROGS := run_vmtests.sh
|
|
|
|
TEST_FILES := test_vmalloc.sh
|
|
TEST_FILES += test_hmm.sh
|
|
TEST_FILES += va_high_addr_switch.sh
|
|
TEST_FILES += charge_reserved_hugetlb.sh
|
|
TEST_FILES += hugetlb_reparenting_test.sh
|
|
TEST_FILES += test_page_frag.sh
|
|
|
|
# required by charge_reserved_hugetlb.sh
|
|
TEST_FILES += write_hugetlb_memory.sh
|
|
|
|
include ../lib.mk
|
|
|
|
$(TEST_GEN_PROGS): vm_util.c thp_settings.c
|
|
$(TEST_GEN_FILES): vm_util.c thp_settings.c
|
|
|
|
$(OUTPUT)/uffd-stress: uffd-common.c
|
|
$(OUTPUT)/uffd-unit-tests: uffd-common.c
|
|
|
|
ifeq ($(ARCH),x86_64)
|
|
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)
|
|
$(BINARIES_32): CFLAGS += -m32 -mxsave
|
|
$(BINARIES_32): LDLIBS += -lrt -ldl -lm
|
|
$(BINARIES_32): $(OUTPUT)/%_32: %.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(notdir $^) $(LDLIBS) -o $@
|
|
$(foreach t,$(VMTARGETS),$(eval $(call gen-target-rule-32,$(t))))
|
|
endif
|
|
|
|
ifeq ($(CAN_BUILD_X86_64),1)
|
|
$(BINARIES_64): CFLAGS += -m64 -mxsave
|
|
$(BINARIES_64): LDLIBS += -lrt -ldl
|
|
$(BINARIES_64): $(OUTPUT)/%_64: %.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(notdir $^) $(LDLIBS) -o $@
|
|
$(foreach t,$(VMTARGETS),$(eval $(call gen-target-rule-64,$(t))))
|
|
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
|
|
|
|
# IOURING_EXTRA_LIBS may get set in local_config.mk, or it may be left empty.
|
|
$(OUTPUT)/cow: LDLIBS += $(IOURING_EXTRA_LIBS)
|
|
|
|
$(OUTPUT)/gup_longterm: LDLIBS += $(IOURING_EXTRA_LIBS)
|
|
|
|
$(OUTPUT)/mlock-random-test $(OUTPUT)/memfd_secret: LDLIBS += -lcap
|
|
|
|
$(OUTPUT)/ksm_tests: LDLIBS += -lnuma
|
|
|
|
$(OUTPUT)/migration: LDLIBS += -lnuma
|
|
|
|
local_config.mk local_config.h: check_config.sh
|
|
/bin/sh ./check_config.sh $(CC)
|
|
|
|
EXTRA_CLEAN += local_config.mk local_config.h
|
|
|
|
ifeq ($(IOURING_EXTRA_LIBS),)
|
|
all: warn_missing_liburing
|
|
|
|
warn_missing_liburing:
|
|
@echo ; \
|
|
echo "Warning: missing liburing support. Some tests will be skipped." ; \
|
|
echo
|
|
endif
|
|
|
|
ifneq ($(PAGE_FRAG_WARNING),)
|
|
all: warn_missing_page_frag
|
|
|
|
warn_missing_page_frag:
|
|
@echo ; \
|
|
echo "Warning: $(PAGE_FRAG_WARNING). page_frag test will be skipped." ; \
|
|
echo
|
|
endif
|