mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-03 09:56:38 -05:00
index: decrease ThreadSync cs_main contention
Only NextSyncBlock requires cs_main lock. The other function calls like Commit or Rewind will lock or not cs_main internally when they need it. Avoiding keeping cs_main locked when Commit() or Rewind() write data to disk.
This commit is contained in:
parent
f1469eb454
commit
0faafb57f8
1 changed files with 13 additions and 16 deletions
|
@ -159,9 +159,7 @@ void BaseIndex::Sync()
|
|||
return;
|
||||
}
|
||||
|
||||
{
|
||||
LOCK(cs_main);
|
||||
const CBlockIndex* pindex_next = NextSyncBlock(pindex, m_chainstate->m_chain);
|
||||
const CBlockIndex* pindex_next = WITH_LOCK(cs_main, return NextSyncBlock(pindex, m_chainstate->m_chain));
|
||||
if (!pindex_next) {
|
||||
SetBestBlockIndex(pindex);
|
||||
m_synced = true;
|
||||
|
@ -170,12 +168,11 @@ void BaseIndex::Sync()
|
|||
break;
|
||||
}
|
||||
if (pindex_next->pprev != pindex && !Rewind(pindex, pindex_next->pprev)) {
|
||||
FatalErrorf("%s: Failed to rewind index %s to a previous chain tip",
|
||||
__func__, GetName());
|
||||
FatalErrorf("%s: Failed to rewind index %s to a previous chain tip", __func__, GetName());
|
||||
return;
|
||||
}
|
||||
pindex = pindex_next;
|
||||
}
|
||||
|
||||
|
||||
auto current_time{std::chrono::steady_clock::now()};
|
||||
if (last_log_time + SYNC_LOG_INTERVAL < current_time) {
|
||||
|
|
Loading…
Add table
Reference in a new issue