pgsql: Print lwlock stats also for aux processes, when built with LWLOC

From: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Print lwlock stats also for aux processes, when built with LWLOC
Date: 2023-11-30 23:02:34
Message-ID: E1r8q3G-0081ER-Dr@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Print lwlock stats also for aux processes, when built with LWLOCK_STATS

InitAuxiliaryProcess() closely resembles InitProcess(), but it didn't
call InitLWLockAccess(). But because InitLWLockAccess() is a no-op
unless compiled with LWLOCK_STATS, and everything works even if it's
not called, the only consequence was that the stats were not printed
for aux processes.

This was an oversight in commit 1c6821be31f, in version 9.5, so it is
missing in all supported branches. But since it only affects
developers using LWLOCK_STATS and no one has complained, no
backpatching.

Discussion: https://www.postgresql.org/message-id/20231130202648.7k6agmuizdilufnv@awork3.anarazel.de

Branch
------
master

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

Modified Files
--------------
src/backend/storage/lmgr/proc.c | 7 +++++++
1 file changed, 7 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Thomas Munro 2023-12-01 02:20:36 pgsql: Adjust obsolete comment explaining set_stack_base().
Previous Message Alexander Korotkov 2023-11-30 11:48:05 pgsql: Fix typo in 5a1dfde8334b