doc: release-notes/3.7: on demand paging

Adds some bits on demand paging and eviction algorithm as
the logic of NRU has changed, and LRU introduced.

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
Daniel Leung 2024-07-16 10:07:38 -07:00 committed by Alberto Escolar
commit e547d356b0

View file

@ -1313,6 +1313,14 @@ Libraries / Subsystems
* By enabling :kconfig:option:`CONFIG_SYMTAB`, the symbol table will be
generated with Zephyr link stage executable on supported architectures.
* Demand Paging
* NRU (Not Recently Used) eviction algorithm has updated its selection logic to avoid
picking the same page to evict constantly. The updated login now searches for a new
candidate linearly after the last evicted page.
* Added LRU (Least Recently Used) eviction algorithm.
* Management
* hawkBit