Thread: pgsql-server/src backend/storage/buffer/README ...

pgsql-server/src backend/storage/buffer/README ...

From
tgl@svr1.postgresql.org (Tom Lane)
Date:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    tgl@svr1.postgresql.org    04/04/19 20:27:17

Modified files:
    src/backend/storage/buffer: README buf_init.c buf_table.c
                                bufmgr.c freelist.c
    src/backend/storage/ipc: ipci.c
    src/include/storage: buf_internals.h

Log message:
    Code review for ARC patch.  Eliminate static variables, improve handling
    of VACUUM cases so that VACUUM requests don't affect the ARC state at all,
    avoid corner case where BufferSync would uselessly rewrite a buffer that
    no longer contains the page that was to be flushed.  Make some minor
    other cleanups in and around the bufmgr as well, such as moving PinBuffer
    and UnpinBuffer into bufmgr.c where they really belong.