aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2016-02-21 22:48:44 -0800
committerAndres Freund <andres@anarazel.de>2016-02-21 22:49:52 -0800
commit815a31cdd18ff92ec6aff323fb3d2b6175acabbf (patch)
tree85db0954667944016ba1ef35547a3c22907497c0
parent68d68ff8333c106962d4a936e07eba24d63a2e07 (diff)
downloadpostgresql-815a31cdd18ff92ec6aff323fb3d2b6175acabbf.tar.gz
postgresql-815a31cdd18ff92ec6aff323fb3d2b6175acabbf.zip
Fix wrong keysize in PrivateRefCountHash creation.
In 4b4b680c3 I accidentally used sizeof(PrivateRefCountArray) instead of sizeof(PrivateRefCountEntry) when creating the refcount overflow hashtable. As the former is bigger than the latter, this luckily only resulted in a slightly increased memory usage when many buffers are pinned in a backend. Reported-By: Takashi Horikawa Discussion: 73FA3881462C614096F815F75628AFCD035A48C3@BPXM01GP.gisp.nec.co.jp Backpatch: 9.5, where thew new ref count infrastructure was introduced
-rw-r--r--src/backend/storage/buffer/bufmgr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c
index f1564ee4434..75e3aa5ecdd 100644
--- a/src/backend/storage/buffer/bufmgr.c
+++ b/src/backend/storage/buffer/bufmgr.c
@@ -2103,7 +2103,7 @@ InitBufferPoolAccess(void)
MemSet(&hash_ctl, 0, sizeof(hash_ctl));
hash_ctl.keysize = sizeof(int32);
- hash_ctl.entrysize = sizeof(PrivateRefCountArray);
+ hash_ctl.entrysize = sizeof(PrivateRefCountEntry);
PrivateRefCountHash = hash_create("PrivateRefCount", 100, &hash_ctl,
HASH_ELEM | HASH_BLOBS);