Drop slot's LWLock before returning from SaveSlotToPath()
authorPeter Eisentraut <peter@eisentraut.org>
Thu, 26 Mar 2020 10:51:39 +0000 (11:51 +0100)
committerPeter Eisentraut <peter@eisentraut.org>
Thu, 26 Mar 2020 12:51:07 +0000 (13:51 +0100)
commitba4cc05ce22d8b83194f46085f54c23b7e2f448c
tree53d2a2a16488fa4b7c78a56250665f7de0f36ab1
parent58995db07e374c2878960e0516acc49683ea102b
Drop slot's LWLock before returning from SaveSlotToPath()

When SaveSlotToPath() is called with elevel=LOG, the early exits didn't
release the slot's io_in_progress_lock.

This could result in a walsender being stuck on the lock forever.  A
possible way to get into this situation is if the offending code paths
are triggered in a low disk space situation.

Author: Pavan Deolasee <pavan.deolasee@2ndquadrant.com>
Reported-by: Craig Ringer <craig@2ndquadrant.com>
Discussion: https://www.postgresql.org/message-id/flat/56a138c5-de61-f553-7e8f-6789296de785%402ndquadrant.com
src/backend/replication/slot.c