-
Notifications
You must be signed in to change notification settings - Fork 0
PR 2: #125 client async-state reduction — buffer pool extraction (socket-loop future 2224→776 B) #132
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
Closed
JustinKovacich
wants to merge
12
commits into
feature/pr1_124_followups
from
feature/pr2_125_client_async_state
Closed
PR 2: #125 client async-state reduction — buffer pool extraction (socket-loop future 2224→776 B) #132
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
27db35a
docs: implementation plan for PR 2 (#125 client async-state reduction)
JustinKovacich 9124c1b
feat(static_channels): BufferPool + BufferLease claim/release primiti…
JustinKovacich 34b1d07
test(static_channels): isolate buffer_pool tests per-pool; doc unsafe…
JustinKovacich e4b19e9
feat(transport): BufferProvider trait + static/tokio impls; relocate …
JustinKovacich 2f6552c
style(transport): blank line after buffer_pool mod; document required…
JustinKovacich bca75a0
feat(client): move socket-loop buffer out of the future via BufferPro…
JustinKovacich d8c4b79
test(client): rename buffer-claim test to match its actual coverage (…
JustinKovacich a121539
test+docs(client): tighten socket-loop future budget to 1024 B; rewri…
JustinKovacich c997ac0
docs: repair pre-existing unresolved intra-doc links + transport doct…
JustinKovacich 7367b2b
fix(client): E2E-protect send must bound-check against buf.len(), not…
JustinKovacich 8e6e245
fix(client): replace per-client Box::leak with Arc-backed buffer pool…
JustinKovacich 6b0aaa3
fix(client): make inbound-oversize drop+survive real on embassy-net; …
JustinKovacich 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
765 changes: 765 additions & 0 deletions
765
docs/simple_someip/plans/2026-06-17-pr2-125-client-async-state-reduction.md
Large diffs are not rendered by default.
Oops, something went wrong.
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.
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.
Addressed in #133 (commit 82be01d): bumped the example pool to
BufferPool<10, _>(UNICAST_SOCKETS_CAP + discovery + release-lag slack), matching the tokio provider and the documented sizing guidance.