svm: cache sysvar read lock per transaction batch#11604
Open
atorrers wants to merge 1 commit intoanza-xyz:masterfrom
Open
svm: cache sysvar read lock per transaction batch#11604atorrers wants to merge 1 commit intoanza-xyz:masterfrom
atorrers wants to merge 1 commit intoanza-xyz:masterfrom
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #11604 +/- ##
=========================================
- Coverage 83.0% 83.0% -0.1%
=========================================
Files 850 850
Lines 322429 322437 +8
=========================================
- Hits 267842 267807 -35
- Misses 54587 54630 +43 🚀 New features to boost your workflow:
|
Lichtso
approved these changes
Mar 27, 2026
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.
Problem
TransactionBatchProcessorcurrently readssysvar_cacheinsideexecute_loaded_transactionfor each transaction, which adds repeatedRwLockread overhead on a hot execution path.Summary of Changes
sysvar_cacheread to batch scope inload_and_execute_sanitized_transactionsand reuse it across transactions.&SysvarCacheintoexecute_loaded_transactioninstead of reading the lock inside that function.#[allow(clippy::too_many_arguments)]onexecute_loaded_transactionto satisfy CI clippy rules after adding the new parameter.