-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Bluetooth: L2CAP: Queue packets when a segment could not be allocated #20661
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
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
c654bcf
Bluetooth: L2CAP: Queue packets when a segment could not be allocated
Vudentz 37d05f3
Bluetooth: conn: Add debug variant to buffer allocation
Vudentz a769673
Bluetooth: L2CAP: Use NET_BUF_TX_COUNT as fragment count
Vudentz c0eac20
Bluetooth: Use NET_BUF_RX_COUNT if NET_L2_BT is enabled
Vudentz 1248d64
Bluetooth: L2CAP: Add dedicated pool for disconnect request
Vudentz 2cf0951
Bluetooth: L2CAP: Ignore packets received while disconnecting
Vudentz 7483ed2
Bluetooth: L2CAP: Offload processing of tx_queue to a work
Vudentz a1a17ea
net: bt: Disconnect in case of errors sending a packet
Vudentz 4dabce3
net: bt: Don't wait for buffer indefinatelly
Vudentz 088526c
Bluetooth: L2CAP: Introduce BT_L2CAP_STATUS_SHUTDOWN flag
Vudentz 2688899
Bluetooth: L2CAP: Fix data leaks when segment cannot be sent
Vudentz 1386bfc
Bluetooth: L2CAP: Document cases where -EAGAIN is returned
Vudentz 71bdf6c
Bluetooth: L2CAP: Add define for signalling timeout
Vudentz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
Maybe create a define for this? It would make the code more readable if we could avoid all those#ifs in the code.Similar to the definition of this function itself.