From c022a7c54d8162109adba6a8ead8ec6bc1306489 Mon Sep 17 00:00:00 2001 From: Bharath Rupireddy Date: Thu, 11 Aug 2022 16:09:19 +0000 Subject: [PATCH v1] Use SetInstallXLogFileSegmentActive() Use SetInstallXLogFileSegmentActive() for setting XLogCtl->InstallXLogFileSegmentActive. --- src/backend/access/transam/xlog.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 9cedd6876f..87b243e0d4 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -4501,9 +4501,7 @@ BootStrapXLOG(void) pg_crc32c crc; /* allow ordinary WAL segment creation, like StartupXLOG() would */ - LWLockAcquire(ControlFileLock, LW_EXCLUSIVE); - XLogCtl->InstallXLogFileSegmentActive = true; - LWLockRelease(ControlFileLock); + SetInstallXLogFileSegmentActive(); /* * Select a hopefully-unique system identifier code for this installation. @@ -5368,9 +5366,7 @@ StartupXLOG(void) * Allow ordinary WAL segment creation before possibly switching to a new * timeline, which creates a new segment, and after the last ReadRecord(). */ - LWLockAcquire(ControlFileLock, LW_EXCLUSIVE); - XLogCtl->InstallXLogFileSegmentActive = true; - LWLockRelease(ControlFileLock); + SetInstallXLogFileSegmentActive(); /* * Consider whether we need to assign a new timeline ID. -- 2.34.1