Skip to content

Commit 61df3d0

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 is allocated a couple of weeks ago. With the default settings, they are both 8k, but they can be changed at compile-time.
1 parent 0de1068 commit 61df3d0

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
@@ -2348,7 +2348,7 @@ XLogFileInit(uint32 log, uint32 seg,
23482348
{
23492349
char path[MAXPGPATH];
23502350
char tmppath[MAXPGPATH];
2351-
char zbuffer_raw[BLCKSZ + MAXIMUM_ALIGNOF];
2351+
char zbuffer_raw[XLOG_BLCKSZ + MAXIMUM_ALIGNOF];
23522352
char *zbuffer;
23532353
uint32 installed_log;
23542354
uint32 installed_seg;
@@ -2410,7 +2410,7 @@ XLogFileInit(uint32 log, uint32 seg,
24102410
* cycles transferring data to the kernel.
24112411
*/
24122412
zbuffer = (char *) MAXALIGN(zbuffer_raw);
2413-
memset(zbuffer, 0, BLCKSZ);
2413+
memset(zbuffer, 0, XLOG_BLCKSZ);
24142414
for (nbytes = 0; nbytes < XLogSegSize; nbytes += XLOG_BLCKSZ)
24152415
{
24162416
errno = 0;

0 commit comments

Comments
 (0)