vmh: add virtual heap stats#10333
Merged
kv2019i merged 1 commit intothesofproject:mainfrom Dec 2, 2025
Merged
Conversation
Collaborator
|
Can one of the admins verify this patch?
|
79fcab5 to
a0d4fd3
Compare
37a3940 to
a8c18b0
Compare
Member
|
test this please |
lgirdwood
approved these changes
Oct 30, 2025
tmleman
reviewed
Oct 31, 2025
Contributor
tmleman
left a comment
There was a problem hiding this comment.
Looks good, just please resolve the issue reported by checkpatch.
softwarecki
approved these changes
Nov 1, 2025
Collaborator
softwarecki
left a comment
There was a problem hiding this comment.
It will be ready to merge after fixing a checkpatch error.
a8c18b0 to
927997a
Compare
tmleman
approved these changes
Nov 3, 2025
lgirdwood
approved these changes
Nov 3, 2025
Collaborator
|
@wjablon1 Please check testbench and cmocka failures. |
Member
|
rerun CI, it was stuck. |
Member
|
SOFCI TEST |
927997a to
d8c19b3
Compare
Member
|
SOFCI TEST |
Option that allows collecting statistics on individual allocator of a virtual memory heap. By defaults the following stats are output per allocator: 1. Maximal number of blocks allocated at any given moment during the heap lifespan 2. How many times the allocator was full, and an allocation had to be redirected to another allocator (with greater/less optimal block size) By default, stats are outputted only on allocation error This feature depends on SYS_MEM_BLOCKS_RUNTIME_STATS Zephyr option and hence is controlled by the same config option Signed-off-by: Wojciech Jablonski <wojciech.jablonski@intel.com>
d8c19b3 to
3498472
Compare
Collaborator
|
SOFCI TEST |
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
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.
Option that allows collecting statistics on individual regions of a virtual
memory heap. By defaults the following states are output per region:
lifespan
to another region (with greater/less optimal block size)
By default, stats are outputted only on allocation error
This feature depends on SYS_MEM_BLOCKS_RUNTIME_STATS Zephyr option and
hence is controlled by the same config option