]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix using injection points at backend startup in EXEC_BACKEND mode
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Fri, 26 Jul 2024 11:55:04 +0000 (14:55 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Fri, 26 Jul 2024 12:12:12 +0000 (15:12 +0300)
commitf19beba3e3acfd804d678af3f768bee069038486
treee751294fe470e4bc080f2458eb04d3a347518b08
parentf06a632a77ed27aab087d62bd76bc52be3a2ac6f
Fix using injection points at backend startup in EXEC_BACKEND mode

Commit 86db52a506 changed the locking of injection points to use only
atomic ops and spinlocks, to make it possible to define injection
points in processes that don't have a PGPROC entry (yet). However, it
didn't work in EXEC_BACKEND mode, because the pointer to shared memory
area was not initialized until the process "attaches" to all the
shared memory structs. To fix, pass the pointer to the child process
along with other global variables that need to be set up early.

Backpatch-through: 17
src/backend/postmaster/launch_backend.c
src/backend/utils/misc/injection_point.c
src/include/utils/injection_point.h