Cherry-pick from upstream#4
Merged
asmellby merged 8 commits intoSiliconLabsSoftware:silabs/v2025.12from Dec 3, 2025
Merged
Conversation
Fix a missing unref of a bt_conn reference, leading to a ref count mismatch, and causing the following warning to be printed: bt_conn: Found valid connection ... in disconnected state. Signed-off-by: Aleksandar Stanoev <aleksandar.stanoev@nordicsemi.no> (cherry picked from commit 1eea6ad) Upstream-status: available
As the loop unpacking the DNS name from records checks the current label length on each iteration, it's also needed to update the remaining buffer length on each iteration, otherwise the buffer length checks doesn't work as expected. Additionally, the remaining buffer checks while technically worked, they were conceptually wrong and unintuitive. The buf->data pointer doesn't move, so comparing against this pointer when adding new labels doesn't make sense. It's more intuitive to simply compare the label size vs the remaining buffer space. Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no> (cherry picked from commit 7bd45cd) Upstream-status: available
Verify that dns_unpack_name() generates a valid DNS name when unpacking records and that it returns an error in case of overflow. Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no> (cherry picked from commit 7a9ca8e) Upstream-status: available
Set Log Level to Info when the HTTP socket reports ENETDOWN, instead of logging an error each time the network is down. Signed-off-by: Joel Schaller <joel.schaller16@gmail.com> (cherry picked from commit f22899e) Upstream-status: available
Enable clock control by default for siwx91x SoCs. Moreover, most drivers for siwx91x soc depend on clock control, but didn't declare it. Signed-off-by: Martin Hoff <martin.hoff@silabs.com> (cherry picked from commit ff3637b) Upstream-status: available
To enhance throughput performance on the SiWx91x series, Added some Siwx91x configurations by deafult. Signed-off-by: Rahul Gurram <rahul.gurram@silabs.com> (cherry picked from commit e02845b) Upstream-status: available
This commit adds the GPIO overlay files for the brd4342a board, enabling gpio_basic_api support in Zephyr. Signed-off-by: S Mohamed Fiaz <Fiaz.Mohamed@silabs.com> (cherry picked from commit 376747f) Upstream-status: available
jerome-pouiller
approved these changes
Dec 3, 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.
Cherry-pick several bugfixes from upstream.