Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Arti
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Arti
Commits
c0baf86e
Commit
c0baf86e
authored
3 years ago
by
eta
Browse files
Options
Downloads
Plain Diff
Merge branch 'missing_shrink_to_fit' into 'main'
dirmgr: Call shrink_to_fit on missing-microdesc hashtable Closes
#388
See merge request
!399
parents
258e42ad
d9c15552
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!399
dirmgr: Call shrink_to_fit on missing-microdesc hashtable
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
crates/tor-dirmgr/src/state.rs
+7
-0
7 additions, 0 deletions
crates/tor-dirmgr/src/state.rs
with
7 additions
and
0 deletions
crates/tor-dirmgr/src/state.rs
+
7
−
0
View file @
c0baf86e
...
...
@@ -764,6 +764,13 @@ impl<DM: WriteNetDir> DirState for GetMicrodescsState<DM> {
if
self
.register_microdescs
(
microdescs
)
{
// Just stopped being pending.
self
.mark_consensus_usable
(
storage
)
?
;
// We can save a lot of ram this way, though we don't want to do it
// so often. As a compromise we call `shrink_to_fit at most twice
// per consensus: once when we're ready to use, and once when we are
// complete.
self
.missing
.shrink_to_fit
();
}
else
if
self
.missing
.is_empty
()
{
self
.missing
.shrink_to_fit
();
}
Ok
(
changed
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment