-
Notifications
You must be signed in to change notification settings - Fork 716
[Backport v3.7.99-ncs1-branch] synchronize ZMS with upstream version #2180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rlubos
merged 11 commits into
v3.7.99-ncs1-branch
from
backport-2165-to-v3.7.99-ncs1-branch
Oct 29, 2024
Merged
[Backport v3.7.99-ncs1-branch] synchronize ZMS with upstream version #2180
rlubos
merged 11 commits into
v3.7.99-ncs1-branch
from
backport-2165-to-v3.7.99-ncs1-branch
Oct 29, 2024
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ction" This reverts commit 50c2373. Signed-off-by: Riadh Ghaddab <[email protected]> (cherry picked from commit 0f863b6)
This reverts commit fabe33f. Signed-off-by: Riadh Ghaddab <[email protected]> (cherry picked from commit 41c32a8)
This reverts commit 03ff227. Signed-off-by: Riadh Ghaddab <[email protected]> (cherry picked from commit 9d02e17)
…rage system" This reverts commit 1d98542. Signed-off-by: Riadh Ghaddab <[email protected]> (cherry picked from commit 2fc6a1e)
This reverts commit 2a1ae9f. Signed-off-by: Riadh Ghaddab <[email protected]> (cherry picked from commit c779bfd)
ZMS is the abreviation of Zephyr Memory Storage. It is a storage developed to target especially the non erasable devices. The new memory storage system inherit from the NVS storage multiple features and introduce new ones : * Inherited features : - light key-value based storage - cache for entries - Wear Leveling of flash memory - Resilience to power failures * New features : - cycle counter for non erasable devices (instead of erase emulation) - Keys up to 32-bit - Built-in support of CRC32 for data - Small size data (<= 8 bytes) integrated within entries Signed-off-by: Riadh Ghaddab <[email protected]> (cherry picked from commit d4e246d) (cherry picked from commit d027f10)
List of added tests : - zms.test_delete - zms.test_zms_cache_collission - zms.test_zms_cache_gc - zms.test_zms_cache_hash_quality - zms.test_zms_cache_init - zms.test_zms_corrupted_sector_close_operation - zms.test_zms_corrupted_write - zms.test_zms_full_sector - zms.test_zms_gc - zms.test_zms_gc_3sectors - zms.test_zms_gc_corrupt_ate - zms.test_zms_gc_corrupt_close_ate - zms.test_zms_mount - zms.test_zms_write Signed-off-by: Riadh Ghaddab <[email protected]> (cherry picked from commit 004d6d6) (cherry picked from commit fac1b34)
This adds a user application that shows the usage of ZMS The sample app shows three main functions of ZMS: - read/write/delete key/value pairs - fill all storage and delete it - calculate free remaining space Signed-off-by: Riadh Ghaddab <[email protected]> (cherry picked from commit fb7dae7) (cherry picked from commit 7584f50)
This adds the documentation for the Zephyr Memory Storage system. Signed-off-by: Riadh Ghaddab <[email protected]> (cherry picked from commit 3c4fcaa) (cherry picked from commit 77095d5)
Introduce ZMS_LOOKUP_CACHE_FOR_SETTINGS Kconfig option that enables a dedicated hash function for the ZMS lookup cache that takes advantage of the ZMS ID allocation scheme used by the ZMS settings backend. As such, this option should only be used if an application uses ZMS via the settings layer. Signed-off-by: Riadh Ghaddab <[email protected]> (cherry picked from commit 6ccfcdc) (cherry picked from commit 810873e)
This resolves some addressed comments in this PR zephyrproject-rtos/zephyr#77930 It adds as well a section in the documentation about some recommendations to increase ZMS performance. Upstream PR #: 80407 Signed-off-by: Riadh Ghaddab <[email protected]> (cherry picked from commit a40ba482bd65ba75540454468cbce4cfcbcc4bf2) (cherry picked from commit 53f2704)
miha-nordic
approved these changes
Oct 29, 2024
safe to merge without rerun |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Backport 53f2704~11..53f2704 from #2165.