Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit815a31c

Browse files
committed
Fix wrong keysize in PrivateRefCountHash creation.
In4b4b680 I accidentally used sizeof(PrivateRefCountArray) instead ofsizeof(PrivateRefCountEntry) when creating the refcount overflowhashtable. As the former is bigger than the latter, this luckily onlyresulted in a slightly increased memory usage when many buffers arepinned in a backend.Reported-By: Takashi HorikawaDiscussion: 73FA3881462C614096F815F75628AFCD035A48C3@BPXM01GP.gisp.nec.co.jpBackpatch: 9.5, where thew new ref count infrastructure was introduced
1 parent68d68ff commit815a31c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/backend/storage/buffer/bufmgr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2103,7 +2103,7 @@ InitBufferPoolAccess(void)
21032103

21042104
MemSet(&hash_ctl,0,sizeof(hash_ctl));
21052105
hash_ctl.keysize=sizeof(int32);
2106-
hash_ctl.entrysize=sizeof(PrivateRefCountArray);
2106+
hash_ctl.entrysize=sizeof(PrivateRefCountEntry);
21072107

21082108
PrivateRefCountHash=hash_create("PrivateRefCount",100,&hash_ctl,
21092109
HASH_ELEM |HASH_BLOBS);

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp