Page MenuHomePhabricator

[core#19011 3/3] Reduce cs_main lock accumulation during GUI startup
ClosedPublic

Authored by PiRK on Jul 5 2021, 07:58.

Details

Summary

PR description:

During the GUI startup, there is currently an accumulation of cs_main locks due to setting initial chain state values at multiple locations (in the GUI main thread).

This PR tries to cache the initial chain state (tip height, tip time, best header, etc.) short after loading the blockindex.

The cached values are then used instead of fetching them again (and thus locking cs_main) during setting the client model.

This should fix the initial GUI blocking often experienced during or short after the splashscreen.

This concludes backport of core#19011 [4/4]
https://github.com/bitcoin/bitcoin/pull/19011/commits/386ec192a57b76492125d691ceda1b4aa832312e

Depends on D9735
Depends on D9737

Test Plan

ninja all check-all

Event Timeline

PiRK requested review of this revision.Jul 5 2021, 07:58
src/qt/bitcoingui.cpp
1225 ↗(On Diff #29060)

This and the following changes to this file is the linter's work

PiRK planned changes to this revision.Jul 5 2021, 08:19

It is better to backport core#19104 for this one

PiRK edited the summary of this revision. (Show Details)

rebase on D9737, fix RegisterMetaTypes

Fabien added inline comments.
src/qt/bitcoingui.cpp
1223 ↗(On Diff #29062)

There is something weird with your linter, mine is reverting the changes

downgrade clang-format from version 12 to 10

This undoes the unrelated changes. clang-format-8 has been obsoleted in the latest ubuntu version and in the LLVM install script.

This revision is now accepted and ready to land.Jul 5 2021, 19:02