pgsql: bufmgr: Pass io_object and io_context through to PinBufferForBlo - Mailing list pgsql-committers

From Andres Freund
Subject pgsql: bufmgr: Pass io_object and io_context through to PinBufferForBlo
Date
Msg-id E1w5nd3-001ZDy-2Z@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
bufmgr: Pass io_object and io_context through to PinBufferForBlock()

PinBufferForBlock() is always_inline and called in a loop in
StartReadBuffersImpl(). Previously it computed io_context and io_object
internally, which required calling IOContextForStrategy() -- a non-inline
function the compiler cannot prove is side-effect-free. This could potential
cause unneeded redundant function calls.

Compute io_context and io_object in the callers instead, allowing
StartReadBuffersImpl() to do so once before entering the loop.

Author: Melanie Plageman <melanieplageman@gmail.com>
Suggested-by: Andres Freund <andres@anarazel.de>
Discussion: https://postgr.es/m/zljergweqti7x67lg5ije2rzjusie37nslsnkjkkby4laqqbfw@3p3zu522yykv

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/c2a68e08b13f3cb437c92102fb11ab0f45dbd67f

Modified Files
--------------
src/backend/storage/buffer/bufmgr.c | 45 +++++++++++++++++++++++++------------
1 file changed, 31 insertions(+), 14 deletions(-)


pgsql-committers by date:

Previous
From: Robert Haas
Date:
Subject: pgsql: pg_plan_advice: Refactor to invent pgpa_planner_info
Next
From: Andres Freund
Date:
Subject: pgsql: Address perlcritic complaint in response to 906a0469728