~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/memblock/README

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/testing/memblock/README (Architecture mips) and /tools/testing/memblock/README (Architecture sparc64)


  1 ==================                                  1 ==================
  2 Memblock simulator                                  2 Memblock simulator
  3 ==================                                  3 ==================
  4                                                     4 
  5 Introduction                                        5 Introduction
  6 ============                                        6 ============
  7                                                     7 
  8 Memblock is a boot time memory allocator[1] th      8 Memblock is a boot time memory allocator[1] that manages memory regions before
  9 the actual memory management is initialized. I      9 the actual memory management is initialized. Its APIs allow to register physical
 10 memory regions, mark them as available or rese     10 memory regions, mark them as available or reserved, allocate a block of memory
 11 within the requested range and/or in specific      11 within the requested range and/or in specific NUMA node, and many more.
 12                                                    12 
 13 Because it is used so early in the booting pro     13 Because it is used so early in the booting process, testing and debugging it is
 14 difficult. This test suite, usually referred a     14 difficult. This test suite, usually referred as memblock simulator, is
 15 an attempt at testing the memblock mechanism.      15 an attempt at testing the memblock mechanism. It runs one monolithic test that
 16 consist of a series of checks that exercise bo     16 consist of a series of checks that exercise both the basic operations and
 17 allocation functionalities of memblock. The ma     17 allocation functionalities of memblock. The main data structure of the boot time
 18 memory allocator is initialized at the build t     18 memory allocator is initialized at the build time, so the checks here reuse its
 19 instance throughout the duration of the test.      19 instance throughout the duration of the test. To ensure that tests don't affect
 20 each other, region arrays are reset in between     20 each other, region arrays are reset in between.
 21                                                    21 
 22 As this project uses the actual memblock code      22 As this project uses the actual memblock code and has to run in user space,
 23 some of the kernel definitions were stubbed by     23 some of the kernel definitions were stubbed by the initial commit that
 24 introduced memblock simulator (commit 16802e55     24 introduced memblock simulator (commit 16802e55dea9 ("memblock tests: Add
 25 skeleton of the memblock simulator")) and a fe     25 skeleton of the memblock simulator")) and a few preparation commits just
 26 before it. Most of them don't match the kernel     26 before it. Most of them don't match the kernel implementation, so one should
 27 consult them first before making any significa     27 consult them first before making any significant changes to the project.
 28                                                    28 
 29 Usage                                              29 Usage
 30 =====                                              30 =====
 31                                                    31 
 32 To run the tests, build the main target and ru     32 To run the tests, build the main target and run it:
 33                                                    33 
 34 $ make && ./main                                   34 $ make && ./main
 35                                                    35 
 36 A successful run produces no output. It is pos     36 A successful run produces no output. It is possible to control the behavior
 37 by passing options from command line. For exam     37 by passing options from command line. For example, to include verbose output,
 38 append the `-v` options when you run the tests     38 append the `-v` options when you run the tests:
 39                                                    39 
 40 $ ./main -v                                        40 $ ./main -v
 41                                                    41 
 42 This will print information about which functi     42 This will print information about which functions are being tested and the
 43 number of test cases that passed.                  43 number of test cases that passed.
 44                                                    44 
 45 For the full list of options from command line     45 For the full list of options from command line, see `./main --help`.
 46                                                    46 
 47 It is also possible to override different conf     47 It is also possible to override different configuration parameters to change
 48 the test functions. For example, to simulate e     48 the test functions. For example, to simulate enabled NUMA, use:
 49                                                    49 
 50 $ make NUMA=1                                      50 $ make NUMA=1
 51                                                    51 
 52 For the full list of build options, see `make      52 For the full list of build options, see `make help`.
 53                                                    53 
 54 Project structure                                  54 Project structure
 55 =================                                  55 =================
 56                                                    56 
 57 The project has one target, main, which calls      57 The project has one target, main, which calls a group of checks for basic and
 58 allocation functions. Tests for each group are     58 allocation functions. Tests for each group are defined in dedicated files, as it
 59 can be seen here:                                  59 can be seen here:
 60                                                    60 
 61 memblock                                           61 memblock
 62 |-- asm       ------------------,                  62 |-- asm       ------------------,
 63 |-- lib                         |-- implement      63 |-- lib                         |-- implement function and struct stubs
 64 |-- linux     ------------------'                  64 |-- linux     ------------------'
 65 |-- scripts                                        65 |-- scripts
 66 |    |-- Makefile.include        -- handles `m     66 |    |-- Makefile.include        -- handles `make` parameters
 67 |-- tests                                          67 |-- tests
 68 |    |-- alloc_api.(c|h)         -- memblock_a     68 |    |-- alloc_api.(c|h)         -- memblock_alloc tests
 69 |    |-- alloc_helpers_api.(c|h) -- memblock_a     69 |    |-- alloc_helpers_api.(c|h) -- memblock_alloc_from tests
 70 |    |-- alloc_nid_api.(c|h)     -- memblock_a     70 |    |-- alloc_nid_api.(c|h)     -- memblock_alloc_try_nid tests
 71 |    |-- basic_api.(c|h)         -- memblock_a     71 |    |-- basic_api.(c|h)         -- memblock_add/memblock_reserve/... tests
 72 |    |-- common.(c|h)            -- helper fun     72 |    |-- common.(c|h)            -- helper functions for resetting memblock;
 73 |-- main.c        --------------.   dummy phys     73 |-- main.c        --------------.   dummy physical memory definition
 74 |-- Makefile                     `- test runne     74 |-- Makefile                     `- test runner
 75 |-- README                                         75 |-- README
 76 |-- TODO                                           76 |-- TODO
 77 |-- .gitignore                                     77 |-- .gitignore
 78                                                    78 
 79 Simulating physical memory                         79 Simulating physical memory
 80 ==========================                         80 ==========================
 81                                                    81 
 82 Some allocation functions clear the memory in      82 Some allocation functions clear the memory in the process, so it is required for
 83 memblock to track valid memory ranges. To achi     83 memblock to track valid memory ranges. To achieve this, the test suite registers
 84 with memblock memory stored by test_memory str     84 with memblock memory stored by test_memory struct. It is a small wrapper that
 85 points to a block of memory allocated via mall     85 points to a block of memory allocated via malloc. For each group of allocation
 86 tests, dummy physical memory is allocated, add     86 tests, dummy physical memory is allocated, added to memblock, and then released
 87 at the end of the test run. The structure of a     87 at the end of the test run. The structure of a test runner checking allocation
 88 functions is as follows:                           88 functions is as follows:
 89                                                    89 
 90 int memblock_alloc_foo_checks(void)                90 int memblock_alloc_foo_checks(void)
 91 {                                                  91 {
 92         reset_memblock_attributes();     /* da     92         reset_memblock_attributes();     /* data structure reset */
 93         dummy_physical_memory_init();    /* al     93         dummy_physical_memory_init();    /* allocate and register memory */
 94                                                    94 
 95         (...allocation checks...)                  95         (...allocation checks...)
 96                                                    96 
 97         dummy_physical_memory_cleanup(); /* fr     97         dummy_physical_memory_cleanup(); /* free the memory */
 98 }                                                  98 }
 99                                                    99 
100 There's no need to explicitly free the dummy m    100 There's no need to explicitly free the dummy memory from memblock via
101 memblock_free() call. The entry will be erased    101 memblock_free() call. The entry will be erased by reset_memblock_regions(),
102 called at the beginning of each test.             102 called at the beginning of each test.
103                                                   103 
104 Known issues                                      104 Known issues
105 ============                                      105 ============
106                                                   106 
107 1. Requesting a specific NUMA node via membloc    107 1. Requesting a specific NUMA node via memblock_alloc_node() does not work as
108    intended. Once the fix is in place, tests f    108    intended. Once the fix is in place, tests for this function can be added.
109                                                   109 
110 2. Tests for memblock_alloc_low() can't be eas    110 2. Tests for memblock_alloc_low() can't be easily implemented. The function uses
111    ARCH_LOW_ADDRESS_LIMIT marco, which can't b    111    ARCH_LOW_ADDRESS_LIMIT marco, which can't be changed to point at the low
112    memory of the memory_block.                    112    memory of the memory_block.
113                                                   113 
114 References                                        114 References
115 ==========                                        115 ==========
116                                                   116 
117 1. Boot time memory management documentation p    117 1. Boot time memory management documentation page:
118    https://www.kernel.org/doc/html/latest/core    118    https://www.kernel.org/doc/html/latest/core-api/boot-time-mm.html
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php