Skip to content

Commit

Permalink
stop padding new append vecs to page size (solana-labs#33607)
Browse files Browse the repository at this point in the history
* stop padding new append vecs to page size

* for creating test accounts, allocate larger like we used to
  • Loading branch information
jeffwashington authored Oct 10, 2023
1 parent 6c7d3c8 commit b7962a3
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions accounts-db/src/accounts_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5733,11 +5733,7 @@ impl AccountsDb {
.create_store_count
.fetch_add(1, Ordering::Relaxed);
let path_index = thread_rng().gen_range(0..paths.len());
let store = Arc::new(self.new_storage_entry(
slot,
Path::new(&paths[path_index]),
Self::page_align(size),
));
let store = Arc::new(self.new_storage_entry(slot, Path::new(&paths[path_index]), size));

debug!(
"creating store: {} slot: {} len: {} size: {} from: {} path: {:?}",
Expand Down Expand Up @@ -9913,7 +9909,7 @@ pub mod test_utils {
// allocate an append vec for this slot that can hold all the test accounts. This prevents us from creating more than 1 append vec for this slot.
_ = accounts.accounts_db.create_and_insert_store(
slot,
bytes_required as u64,
AccountsDb::page_align(bytes_required as u64),
"create_test_accounts",
);
}
Expand Down

0 comments on commit b7962a3

Please sign in to comment.