From: Heikki Linnakangas Date: Wed, 16 Apr 2014 07:21:09 +0000 (+0300) Subject: Use correctly-sized buffer when zero-filling a WAL file. X-Git-Tag: REL9_1_14~71 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=61df3d090c0e42fd0ad06e5a3d70aca148107c30;p=postgresql 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. --- diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 6b9209d882..d0672a54d0 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -2348,7 +2348,7 @@ XLogFileInit(uint32 log, uint32 seg, { char path[MAXPGPATH]; char tmppath[MAXPGPATH]; - char zbuffer_raw[BLCKSZ + MAXIMUM_ALIGNOF]; + char zbuffer_raw[XLOG_BLCKSZ + MAXIMUM_ALIGNOF]; char *zbuffer; uint32 installed_log; uint32 installed_seg; @@ -2410,7 +2410,7 @@ XLogFileInit(uint32 log, uint32 seg, * cycles transferring data to the kernel. */ zbuffer = (char *) MAXALIGN(zbuffer_raw); - memset(zbuffer, 0, BLCKSZ); + memset(zbuffer, 0, XLOG_BLCKSZ); for (nbytes = 0; nbytes < XLogSegSize; nbytes += XLOG_BLCKSZ) { errno = 0;