mirror of
https://github.com/postgres/postgres.git
synced 2025-11-06 07:49:08 +03:00
Reduce more the number of calls to GetMaxBackends()
Some of the code paths changed by aa64f23 can reduce the number of times
GetMaxBackends() is called. The performance gain is marginal, but most
of the code changed by this commit already did that. Hence, let's be
clean and apply the same rule everywhere, for consistency.
Some of the code paths, like in deadlock.c, involve only assertions.
These are left unchanged.
Reviewed-by: Nathan Bossart, Robert Haas
Discussion: https://postgr.es/m/YgMpGZhPOjNfS7er@paquier.xyz
This commit is contained in:
@@ -559,13 +559,14 @@ pg_safe_snapshot_blocking_pids(PG_FUNCTION_ARGS)
|
||||
int *blockers;
|
||||
int num_blockers;
|
||||
Datum *blocker_datums;
|
||||
int max_backends = GetMaxBackends();
|
||||
|
||||
/* A buffer big enough for any possible blocker list without truncation */
|
||||
blockers = (int *) palloc(GetMaxBackends() * sizeof(int));
|
||||
blockers = (int *) palloc(max_backends * sizeof(int));
|
||||
|
||||
/* Collect a snapshot of processes waited for by GetSafeSnapshot */
|
||||
num_blockers =
|
||||
GetSafeSnapshotBlockingPids(blocked_pid, blockers, GetMaxBackends());
|
||||
GetSafeSnapshotBlockingPids(blocked_pid, blockers, max_backends);
|
||||
|
||||
/* Convert int array to Datum array */
|
||||
if (num_blockers > 0)
|
||||
|
||||
Reference in New Issue
Block a user