-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
Bluetooth: Controller: Fix spurious ISO Sync receiver stall #80894
Bluetooth: Controller: Fix spurious ISO Sync receiver stall #80894
Conversation
Fix spurious ISO Sync Receiver stall due to uninitialised value accessed due to regression introduced by commit 64facee ("Bluetooth: controller: Stop Sync ISO ticker when establishment fails"). Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
What's preventing us from merging #80775 as a hotfix? |
@cvinayak this commit makes the linked issue pass. That issue is currently triggering in quite a few PRs.
@Thalley that PR is also including configuration changes to a test. We are past RC2 so in principle that would require an exception. If those configuration changes are not needed right now, instead of complicating things, I think it is best to just merge this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR passes CI, and as a sanity check, have got increased test coverage changes too passing in #80788, the PR LGTM.
Fix spurious ISO Sync Receiver stall due to uninitialised value accessed due to regression introduced by
commit 64facee ("Bluetooth: controller: Stop Sync ISO ticker when establishment fails").
Cherry-pick of the bugfix from #80775 so it can go in right away as a hotfix
Fixes #80734
This is just the first commit from from #80775 as is. So that we can have a path to fix the linked issue even if it would be considered to late to merge that whole PR as is.