Обсуждение: pgsql: Fix longstanding race condition in transaction log management:

Поиск
Список
Период
Сортировка

pgsql: Fix longstanding race condition in transaction log management:

От
tgl@svr1.postgresql.org (Tom Lane)
Дата:
Log Message:
-----------
Fix longstanding race condition in transaction log management: there was a
very narrow window in which SimpleLruReadPage or SimpleLruWritePage could
think that I/O was needed when it wasn't (and indeed the buffer had already
been assigned to another page).  This would result in an Assert failure if
Asserts were enabled, and probably in silent data corruption if not.
Reported independently by Jim Nasby and Robert Creager.

I intend a more extensive fix when 8.2 development starts, but this is a
reasonably low-impact patch for the existing branches.

Modified Files:
--------------
    pgsql/src/backend/access/transam:
        slru.c (r1.28 -> r1.29)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/slru.c.diff?r1=1.28&r2=1.29)