From 5ca3645cb3fb4b8b359ea560f6a1a230ea59c8bc Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Thu, 10 Nov 2022 16:32:29 +0900 Subject: [PATCH] Fix comment of SimpleLruInit() in slru.c sync_handler was not mentioned in the comment block of the function. Oversight in dee663f. Author: Aleksander Alekseev Discussion: https://postgr.es/m/CAJ7c6TPUd9BwNY47TtMxaijLHSbyHNdhu=kvbGnvO_bi+oC6_Q@mail.gmail.com Backpatch-through: 14 --- src/backend/access/transam/slru.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/access/transam/slru.c b/src/backend/access/transam/slru.c index 6c57fae3121..6feda87f574 100644 --- a/src/backend/access/transam/slru.c +++ b/src/backend/access/transam/slru.c @@ -182,6 +182,7 @@ SimpleLruShmemSize(int nslots, int nlsns) * ctllock: LWLock to use to control access to the shared control structure. * subdir: PGDATA-relative subdirectory that will contain the files. * tranche_id: LWLock tranche ID to use for the SLRU's per-buffer LWLocks. + * sync_handler: which set of functions to use to handle sync requests */ void SimpleLruInit(SlruCtl ctl, const char *name, int nslots, int nlsns, -- 2.39.5