]> granicus.if.org Git - postgresql/commit
Fix deadlock with LWLockAcquireWithVar and LWLockWaitForVar.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 14 Oct 2014 06:55:26 +0000 (09:55 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 14 Oct 2014 06:55:26 +0000 (09:55 +0300)
commit4dbc7606cfc8188646a2e302ef5e6a5ec3c962af
tree8b56a18710092395c33e0e21ca46b145d22dd0a5
parent79ec6e399f1377a56633c0e4b4c8ed768c230ec2
Fix deadlock with LWLockAcquireWithVar and LWLockWaitForVar.

LWLockRelease should release all backends waiting with LWLockWaitForVar,
even when another backend has already been woken up to acquire the lock,
i.e. when releaseOK is false. LWLockWaitForVar can return as soon as the
protected value changes, even if the other backend will acquire the lock.
Fix that by resetting releaseOK to true in LWLockWaitForVar, whenever
adding itself to the wait queue.

This should fix the bug reported by MauMau, where the system occasionally
hangs when there is a lot of concurrent WAL activity and a checkpoint.
Backpatch to 9.4, where this code was added.
src/backend/storage/lmgr/lwlock.c