-
Notifications
You must be signed in to change notification settings - Fork 276
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
Dataplane mockup #135
Merged
Merged
Dataplane mockup #135
Changes from all commits
Commits
Show all changes
60 commits
Select commit
Hold shift + click to select a range
a0bf351
Merge branch 'bytes' into dataplane_mockup
frankmcsherry 33b40a3
dataplane mockp
frankmcsherry 0eae052
Merge branch 'master' into dataplane_mockup
frankmcsherry 96748ca
ByteExchange added
frankmcsherry 8330cb8
don't panic on shutdown returning empty buffers
frankmcsherry 666a710
updates
frankmcsherry 58d9f70
Merge branch 'master' into dataplane_mockup
frankmcsherry 2dcfe1a
tracking master
frankmcsherry 72290be
Merge branch 'master' into dataplane_mockup
frankmcsherry 4826c63
merge
frankmcsherry ecb6bbf
Merge branch 'master' into dataplane_mockup
frankmcsherry f895f28
default size
frankmcsherry f7574fe
remove vestigial drain
frankmcsherry 2850a71
new trait
frankmcsherry 2bc8ab8
bytes update
frankmcsherry 7e1929b
communication update
frankmcsherry f0bf2fd
bytes oriented
frankmcsherry 20064dd
communication revamp
frankmcsherry 4eeb0d3
merge
frankmcsherry 8030b45
use Message::push_at
frankmcsherry 0a9c7d6
no clue
frankmcsherry 802bc40
merge master
frankmcsherry 7f5aefd
Merge branch 'master' into dataplane_mockup
frankmcsherry 35ed728
Merge branch 'master' into dataplane_mockup
frankmcsherry b314103
merge, examples fixed
frankmcsherry dcf1595
merge
frankmcsherry 9fd21fd
Merge branch 'master' into dataplane_mockup
frankmcsherry 9e80451
Merge branch 'master' into dataplane_mockup
frankmcsherry 8875539
re-enable logging
frankmcsherry e832f76
reintroduce broadcast
frankmcsherry 42c47e9
push more
frankmcsherry 1e31738
re-enable execution filtering
frankmcsherry 0ccc5f7
re-introduce thread process
frankmcsherry e0cd029
merge
frankmcsherry d585791
Merge branch 'master' into dataplane_mockup
frankmcsherry 3c2f4ec
Merge branch 'master' into dataplane_mockup
frankmcsherry 667bcc6
new tcp beginnings
frankmcsherry ae34b8f
compiling checkpoint
frankmcsherry 1ae27f1
reorganization
frankmcsherry b09e61b
hello example works
frankmcsherry b39dff2
seems to work
frankmcsherry 6cfff5a
working, better perf
frankmcsherry 372752e
more reliable performance
frankmcsherry 62629f6
unknown
frankmcsherry 3392352
end with empty message
frankmcsherry faf245c
re-export communication
frankmcsherry 8f29c3f
oops
frankmcsherry 45b98f1
zerocopy process allocator
frankmcsherry 20c2e38
tidy
frankmcsherry b37bb3e
sizing bug in bytesslab
frankmcsherry 06a36eb
sizing bug in bytesslab
frankmcsherry afb5b04
use prior default process allocator
frankmcsherry 8124a46
documenting, reorganization, perf bugs
frankmcsherry 83a3806
choice of inequality is important
frankmcsherry db5a856
stop eager posting
frankmcsherry 400665c
add try_merge functionality
frankmcsherry aa7dab4
merge_queue
frankmcsherry a002ffa
drop in-progress on resize
frankmcsherry 88cfb72
panic propagation
frankmcsherry 03b44d6
public fns, process serialization
frankmcsherry 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 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 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 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 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.
Why did you decide to switch to
Box<Any>
?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.
Ah, this was because otherwise the
B
type pervades the rest of the code, and everything needs to be generic with respect toB
, or written for one specificB
, and it seemed likely that we might have more than one type (e.g.Vec<u8>
for process-local stuff, and maybe something different (Arc<Vec<u8>>
?) for networking stuff).(on the road at the moment, will try to be more helpful soon!)