pgsql: Fix a rare race condition when commit_siblings > 0 and a - Mailing list pgsql-committers

From [email protected] (Heikki Linnakangas)
Subject pgsql: Fix a rare race condition when commit_siblings > 0 and a
Date
Msg-id [email protected]
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Fix a rare race condition when commit_siblings > 0 and a transaction commits
at the same instant as a new backend is spawned. Since CountActiveBackends()
doesn't hold ProcArrayLock, it needs to be prepared for the case that a
pointer at the end of the proc array is still NULL even though numProcs says
it should be valid, since it doesn't hold ProcArrayLock. Backpatch to 8.1.
8.0 and earlier had this right, but it was broken in the split of PGPROC and
sinval shared memory arrays.

Per report and proposal by Marko Kreen.

Modified Files:
--------------
    pgsql/src/backend/storage/ipc:
        procarray.c (r1.47 -> r1.48)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/ipc/procarray.c?r1=1.47&r2=1.48)

pgsql-committers by date:

Previous
From: [email protected] (Bruce Momjian)
Date:
Subject: pgsql: Update release note introductory description.
Next
From: [email protected] (Heikki Linnakangas)
Date:
Subject: pgsql: Fix a rare race condition when commit_siblings > 0 and a