From: | Nathan Bossart <nathan(at)postgresql(dot)org> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Fix re-initialization of LWLock-related shared memory. |
Date: | 2025-09-18 14:56:22 |
Message-ID: | E1uzG3Z-001LcK-2Q@gemulon.postgresql.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Fix re-initialization of LWLock-related shared memory.
When shared memory is re-initialized after a crash, the named
LWLock tranche request array that was copied to shared memory will
no longer be accessible. To fix, save the pointer to the original
array in postmaster's local memory, and switch to it when
re-initializing the LWLock-related shared memory.
Oversight in commit ed1aad15e0. Per buildfarm member batta.
Reported-by: Michael Paquier <michael(at)paquier(dot)xyz>
Reported-by: Alexander Lakhin <exclusion(at)gmail(dot)com>
Reviewed-by: Michael Paquier <michael(at)paquier(dot)xyz>
Discussion: https://postgr.es/m/aMoejB3iTWy1SxfF%40paquier.xyz
Discussion: https://postgr.es/m/f8ca018f-3479-49f6-a92c-e31db9f849d7%40gmail.com
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/c3cc2ab87d72a1ce17a7f574756158479ef32f20
Modified Files
--------------
src/backend/storage/lmgr/lwlock.c | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Nathan Bossart | 2025-09-18 14:56:44 | Re: pgsql: Move named LWLock tranche requests to shared memory. |
Previous Message | Bruce Momjian | 2025-09-18 14:20:43 | pgsql: doc PG 18 relnotes: update description of skip scan item |