mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
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
This commit is contained in:
@ -1165,7 +1165,7 @@ PinBufferForBlock(Relation rel,
|
||||
}
|
||||
if (*foundPtr)
|
||||
{
|
||||
pgstat_count_io_op(io_object, io_context, IOOP_HIT);
|
||||
pgstat_count_io_op(io_object, io_context, IOOP_HIT, 1);
|
||||
if (VacuumCostActive)
|
||||
VacuumCostBalance += VacuumCostPageHit;
|
||||
|
||||
@ -2073,7 +2073,7 @@ again:
|
||||
* pinners or erroring out.
|
||||
*/
|
||||
pgstat_count_io_op(IOOBJECT_RELATION, io_context,
|
||||
from_ring ? IOOP_REUSE : IOOP_EVICT);
|
||||
from_ring ? IOOP_REUSE : IOOP_EVICT, 1);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user