mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 02:05:54 +00:00
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
TODO
|
|
=====
|
|
|
|
1. Add verbose output (e.g., what is being tested and how many tests cases are
|
|
passing)
|
|
|
|
2. Add flags to Makefile:
|
|
+ verbosity level
|
|
+ enable memblock_dbg() messages (i.e. pass "-D CONFIG_DEBUG_MEMORY_INIT"
|
|
flag)
|
|
|
|
3. Add tests trying to memblock_add() or memblock_reserve() 129th region.
|
|
This will trigger memblock_double_array(), make sure it succeeds.
|
|
*Important:* These tests require valid memory ranges, use dummy physical
|
|
memory block from common.c to implement them. It is also very
|
|
likely that the current MEM_SIZE won't be enough for these
|
|
test cases. Use realloc to adjust the size accordingly.
|
|
|
|
4. Add test cases using this functions (implement them for both directions):
|
|
+ memblock_alloc_raw()
|
|
+ memblock_alloc_exact_nid_raw()
|
|
+ memblock_alloc_try_nid_raw()
|
|
|
|
5. Add tests for memblock_alloc_node() to check if the correct NUMA node is set
|
|
for the new region
|
|
|
|
6. Update comments in tests/basic_api.c to match the style used in
|
|
tests/alloc_*.c
|