memblock tests: Add skeleton of the memblock simulator
Add basic project files, together with local stubs of required headers. Update tools/include/slab.h to include definitions used by memblock. Signed-off-by: Karolina Drobnik <karolinadrobnik@gmail.com> Signed-off-by: Mike Rapoport <rppt@kernel.org> Link: https://lore.kernel.org/r/d296fceb023a04b316a31fbff9acf1e76ac684e4.1643796665.git.karolinadrobnik@gmail.com
This commit is contained in:
parent
62183279ad
commit
16802e55de
16 changed files with 279 additions and 0 deletions
17
tools/testing/memblock/scripts/Makefile.include
Normal file
17
tools/testing/memblock/scripts/Makefile.include
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Definitions for user-provided arguments
|
||||
|
||||
# Simulate CONFIG_NUMA=y
|
||||
ifeq ($(NUMA), 1)
|
||||
CFLAGS += -D CONFIG_NUMA
|
||||
endif
|
||||
|
||||
# Simulate movable NUMA memory regions
|
||||
ifeq ($(MOVABLE_NODE), 1)
|
||||
CFLAGS += -D MOVABLE_NODE
|
||||
endif
|
||||
|
||||
# Use 32 bit physical addresses
|
||||
ifeq ($(32BIT_PHYS_ADDR_T), 1)
|
||||
CFLAGS += -U CONFIG_PHYS_ADDR_T_64BIT
|
||||
endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue