From: | Michael Paquier <michael(at)paquier(dot)xyz> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Merge pgstat_count_io_op_n() and pgstat_count_io_op() |
Date: | 2025-01-10 00:59:12 |
Message-ID: | E1tW3Mm-000kXw-Nh@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Merge pgstat_count_io_op_n() and pgstat_count_io_op()
The pgstat_count_io_op() function, which counts a single I/O operation,
wraps pgstat_count_io_op_n() with a counter value of 1. The latter is
declared in pgstat.h and used nowhere in the code, so let's remove it in
favor of the former.
This change makes also the code more symmetric with
pgstat_count_io_op_time(), that already uses a similar set of arguments,
except that it counts also the I/O time. This will ease a bit the
integration of a follow-up patch that adds byte-level tracking in
pg_stat_io for some of its attributes, lifting the current restriction
based on BLCKSZ as all I/O operations are assumed to be block-based.
Author: Nazir Bilal Yavuz
Reviewed-by: Bertrand Drouvot
Discussion: https://postgr.es/m/CAN55FZ32ze812=yjyZg1QeXhKvACUM_Nu0_gyPQcUKKuVHL5xA@mail.gmail.com
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/f0bf7857befefa3ff00c7d2ac5c611c525f5cd3e
Modified Files
--------------
src/backend/storage/buffer/bufmgr.c | 4 ++--
src/backend/storage/buffer/localbuf.c | 2 +-
src/backend/utils/activity/pgstat_io.c | 12 +++---------
src/include/pgstat.h | 4 ++--
4 files changed, 8 insertions(+), 14 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | David Rowley | 2025-01-10 01:31:20 | pgsql: Fix UNION planner datatype issue |
Previous Message | Michael Paquier | 2025-01-10 00:01:36 | pgsql: Refactor some code related to backend statistics |