pgsql: Fix wrong keysize in PrivateRefCountHash creation.

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix wrong keysize in PrivateRefCountHash creation.
Date: 2016-02-22 06:55:03
Message-ID: E1aXkOd-0001A6-Dt@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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(at)BPXM01GP(dot)gisp(dot)nec(dot)co(dot)jp
Backpatch: 9.5, where thew new ref count infrastructure was introduced

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/ea56b06cf77a6932a74f9d4ec6c950a333d1527d

Modified Files
--------------
src/backend/storage/buffer/bufmgr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2016-02-22 06:55:04 pgsql: Fix wrong keysize in PrivateRefCountHash creation.
Previous Message Tom Lane 2016-02-21 21:26:06 Re: Re: [COMMITTERS] pgsql: Add some isolation tests for deadlock detection and resolution.