From: Peter Geoghegan Date: Mon, 20 Jul 2020 23:03:38 +0000 (-0700) Subject: Assert that buffer is pinned in LockBuffer(). X-Git-Tag: REL_14_BETA1~1949 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6ca7cd89a2d1998b16e8168dda62d43a9e0fdaff;p=thirdparty%2Fpostgresql.git Assert that buffer is pinned in LockBuffer(). Strengthen the LockBuffer() assertion that verifies BufferIsValid() by making it verify BufferIsPinned() instead. Do the same in nearby related functions. There is probably not much chance that anybody will try to lock a buffer that is not already pinned, but we might as well make sure of that. --- diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c index 83d91b14fb1..9b9303ff650 100644 --- a/src/backend/storage/buffer/bufmgr.c +++ b/src/backend/storage/buffer/bufmgr.c @@ -3743,7 +3743,7 @@ LockBuffer(Buffer buffer, int mode) { BufferDesc *buf; - Assert(BufferIsValid(buffer)); + Assert(BufferIsPinned(buffer)); if (BufferIsLocal(buffer)) return; /* local buffers need no lock */ @@ -3769,7 +3769,7 @@ ConditionalLockBuffer(Buffer buffer) { BufferDesc *buf; - Assert(BufferIsValid(buffer)); + Assert(BufferIsPinned(buffer)); if (BufferIsLocal(buffer)) return true; /* act as though we got it */ @@ -3801,7 +3801,7 @@ LockBufferForCleanup(Buffer buffer) BufferDesc *bufHdr; char *new_status = NULL; - Assert(BufferIsValid(buffer)); + Assert(BufferIsPinned(buffer)); Assert(PinCountWaitBuf == NULL); if (BufferIsLocal(buffer))