[noup] zephyr: Create dedicated heap for supplicant#74
Merged
carlescufi merged 1 commit intozephyrproject-rtos:mainfrom Jul 21, 2025
Merged
[noup] zephyr: Create dedicated heap for supplicant#74carlescufi merged 1 commit intozephyrproject-rtos:mainfrom
carlescufi merged 1 commit intozephyrproject-rtos:mainfrom
Conversation
Collaborator
|
why we need this dedicated heap for supplicant? |
Contributor
Author
Updated the description to correct this. Since the kernel heap is shared across various subsystems, we cannot enforce a minimum availability for supplicant. Using a pre-allocated heap solves this problem. |
krish2718
reviewed
Jan 2, 2025
84f3e4d to
7c3d29d
Compare
krish2718
reviewed
Jun 9, 2025
Collaborator
krish2718
left a comment
There was a problem hiding this comment.
Please add a config option to use global or dedicated heap.
7c3d29d to
a8bf183
Compare
krish2718
reviewed
Jul 1, 2025
a8bf183 to
30ab616
Compare
krish2718
approved these changes
Jul 2, 2025
jukkar
reviewed
Jul 3, 2025
Create dedicated heap for supplicant operations. Signed-off-by: Ravi Dondaputi <ravi.dondaputi@nordicsemi.no>
30ab616 to
9220b5a
Compare
jukkar
approved these changes
Jul 4, 2025
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.
Create dedicated heap for supplicant operations. Currently, WPA supplicant uses the k_malloc, which is shared across various subsystems, and we cannot enforce a minimum availability. Using a dedicated HEAP that can be pre-allocated solves this by always having necessary memory.