pgsql: Introduce pg_pwrite_zeros() in fileutils.c

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Introduce pg_pwrite_zeros() in fileutils.c
Date: 2022-11-08 03:24:24
Message-ID: E1osFDr-0006y4-3l@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Introduce pg_pwrite_zeros() in fileutils.c

This routine is designed to write zeros to a file using vectored I/O,
for a size given by its caller, being useful when it comes to
initializing a file with a final size already known.

XLogFileInitInternal() in xlog.c is changed to use this new routine when
initializing WAL segments with zeros (wal_init_zero enabled). Note that
the aligned buffers used for the vectored I/O writes have a size of
XLOG_BLCKSZ, and not BLCKSZ anymore, as pg_pwrite_zeros() relies on
PGAlignedBlock while xlog.c originally used PGAlignedXLogBlock.

This routine will be used in a follow-up patch to do the pre-padding of
WAL segments for pg_receivewal and pg_basebackup when these are not
compressed.

Author: Bharath Rupireddy
Reviewed-by: Nathan Bossart, Andres Freund, Thomas Munro, Michael
Paquier
Discussion: https://www.postgresql.org/message-id/CALj2ACUq7nAb7%3DbJNbK3yYmp-SZhJcXFR_pLk8un6XgDzDF3OA%40mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/3bdbdf5d06f2179d4c17926d77ff734ea9e7d525

Modified Files
--------------
src/backend/access/transam/xlog.c | 33 +++---------------
src/common/file_utils.c | 73 +++++++++++++++++++++++++++++++++++++++
src/include/common/file_utils.h | 2 ++
3 files changed, 80 insertions(+), 28 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2022-11-08 03:40:05 pgsql: Use pg_pwrite_zeros() in walmethods.c
Previous Message Michael Paquier 2022-11-08 01:51:05 pgsql: Fix initialization of pg_stat_get_lastscan()