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

Commita4c4e0b

Browse files
committed
Use correctly-sized buffer when zero-filling a WAL file.
I mixed up BLCKSZ and XLOG_BLCKSZ when I changed the way the buffer isallocated a couple of weeks ago. With the default settings, they are both8k, but they can be changed at compile-time.
1 parent2b3136d commita4c4e0b

File tree

1 file changed

+2
-2
lines changed
  • src/backend/access/transam

1 file changed

+2
-2
lines changed

‎src/backend/access/transam/xlog.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2449,7 +2449,7 @@ XLogFileInit(uint32 log, uint32 seg,
24492449
{
24502450
charpath[MAXPGPATH];
24512451
chartmppath[MAXPGPATH];
2452-
charzbuffer_raw[BLCKSZ+MAXIMUM_ALIGNOF];
2452+
charzbuffer_raw[XLOG_BLCKSZ+MAXIMUM_ALIGNOF];
24532453
char*zbuffer;
24542454
uint32installed_log;
24552455
uint32installed_seg;
@@ -2511,7 +2511,7 @@ XLogFileInit(uint32 log, uint32 seg,
25112511
* cycles transferring data to the kernel.
25122512
*/
25132513
zbuffer= (char*)MAXALIGN(zbuffer_raw);
2514-
memset(zbuffer,0,BLCKSZ);
2514+
memset(zbuffer,0,XLOG_BLCKSZ);
25152515
for (nbytes=0;nbytes<XLogSegSize;nbytes+=XLOG_BLCKSZ)
25162516
{
25172517
errno=0;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp