vmh: add virtual heap stats - #10333
Merged
Merged
Conversation
Collaborator
|
Can one of the admins verify this patch?
|
wjablon1
marked this pull request as ready for review
October 28, 2025 12:17
wjablon1
requested review from
abonislawski,
dabekjakub,
dbaluta,
iuliana-prodan,
kv2019i and
lyakh
as code owners
October 28, 2025 12:17
wjablon1
force-pushed
the
add_vmh_stats
branch
from
October 28, 2025 12:27
79fcab5 to
a0d4fd3
Compare
wjablon1
force-pushed
the
add_vmh_stats
branch
6 times, most recently
from
October 29, 2025 12:16
37a3940 to
a8c18b0
Compare
Member
|
test this please |
lgirdwood
approved these changes
Oct 30, 2025
tmleman
reviewed
Oct 31, 2025
tmleman
left a comment
Contributor
There was a problem hiding this comment.
Looks good, just please resolve the issue reported by checkpatch.
softwarecki
approved these changes
Nov 1, 2025
softwarecki
left a comment
Collaborator
There was a problem hiding this comment.
It will be ready to merge after fixing a checkpatch error.
wjablon1
force-pushed
the
add_vmh_stats
branch
from
November 3, 2025 11:54
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 |
wjablon1
force-pushed
the
add_vmh_stats
branch
from
November 13, 2025 15:04
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>
wjablon1
force-pushed
the
add_vmh_stats
branch
from
November 26, 2025 14:40
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