cosim: Remove unnecessary allocations and copying in cosim-plugin#816
Merged
Giftzwerg02 merged 4 commits intomasterfrom Mar 24, 2026
Merged
cosim: Remove unnecessary allocations and copying in cosim-plugin#816Giftzwerg02 merged 4 commits intomasterfrom
Giftzwerg02 merged 4 commits intomasterfrom
Conversation
Jozott00
approved these changes
Mar 16, 2026
Contributor
Jozott00
left a comment
There was a problem hiding this comment.
Nice! This reminds me of the ringbuffer synchronization in the OS lecture ^^
f0652e9 to
96b77f1
Compare
Jozott00
approved these changes
Mar 16, 2026
eff0f3a to
9eae6e8
Compare
9eae6e8 to
a2377a9
Compare
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.
My intuition was that letting a QEMU-client collect all the data and then just copy into the ringbuffer when done (asking for a mutex-lock only for copying) would be better than getting the mutex lock first and writing directly into the ringbuffer.
That was just wrong, a) because copying seems to take a considerable amount of time and b) because the mutex is only required when checking/waiting if the buffer is writable.
Removing this indirection using a simple refactor gains roughly 2-3x performance for the cosim!