Thread: pgsql: process startup: Always call Init[Auxiliary]Process() before Bas

pgsql: process startup: Always call Init[Auxiliary]Process() before Bas

From
Andres Freund
Date:
process startup: Always call Init[Auxiliary]Process() before BaseInit().

For EXEC_BACKEND InitProcess()/InitAuxiliaryProcess() needs to have been
called well before we call BaseInit(), as SubPostmasterMain() needs LWLocks to
work. Having the order of initialization differ between platforms makes it
unnecessarily hard to understand the system and to add initialization points
for new subsystems without a lot of duplication.

To be able to change the order, BaseInit() cannot trigger
CreateSharedMemoryAndSemaphores() anymore - obviously that needs to have
happened before we can call InitProcess(). It seems cleaner to create shared
memory explicitly in single user/bootstrap mode anyway.

After this change the separation of bufmgr initialization into
InitBufferPoolAccess() / InitBufferPoolBackend() is not meaningful anymore so
the latter is removed.

Author: Andres Freund <andres@anarazel.de>
Reviewed-By: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
Discussion: https://postgr.es/m/20210802164124.ufo5buo4apl6yuvs@alap3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/b406478b87e2234c0be4ca4105eee3bb466a646b

Modified Files
--------------
src/backend/bootstrap/bootstrap.c   | 18 ++++++++++--------
src/backend/postmaster/autovacuum.c | 12 ++++++------
src/backend/postmaster/auxprocess.c |  7 ++-----
src/backend/postmaster/bgworker.c   | 16 ++++++++--------
src/backend/storage/buffer/bufmgr.c | 23 +++++------------------
src/backend/tcop/postgres.c         |  8 +++++---
src/backend/utils/init/postinit.c   | 37 +++----------------------------------
src/include/storage/bufmgr.h        |  1 -
8 files changed, 39 insertions(+), 83 deletions(-)