summaryrefslogtreecommitdiff
path: root/src/backend/storage/buffer
Commit message (Expand)AuthorAgeFilesLines
* Add a check to prevent overwriting valid data if smgrnblocks() gives aTom Lane2006-09-251-4/+21
* Marginal cleanup in arrangements for ensuring StrategyHintVacuum is clearedTom Lane2006-09-171-4/+1
* Fix oversight in sizing of shared buffer lookup hashtable. BecauseTom Lane2006-07-231-4/+11
* Split the buffer mapping table into multiple separately lockableTom Lane2006-07-233-39/+144
* Fix another passel of include-file breakage. Kris Jurka, Tom LaneTom Lane2006-07-141-1/+2
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-142-6/+2
* Remove obsolete comment about VACUUM FULL: it takes buffer content locksTom Lane2006-06-081-6/+8
* Repair a low-probability race condition identified by Qingqing Zhou.Tom Lane2006-04-141-7/+1
* Clean up WAL/buffer interactions as per my recent proposal. Get rid of theTom Lane2006-03-313-115/+70
* Clean up and document the API for XLogOpenRelation and XLogReadBuffer.Tom Lane2006-03-291-3/+3
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-055-10/+10
* Arrange to call AbsorbFsyncRequests every so often while performing aTom Lane2006-03-031-2/+21
* Fix ReadBuffer() to correctly handle the case where it's trying to extendTom Lane2006-01-061-6/+40
* Get rid of the SpinLockAcquire/SpinLockAcquire_NoHoldoff distinctionTom Lane2005-12-291-48/+36
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-222-13/+15
* DropRelFileNodeBuffers failed to fix the state of the lookup hash tableTom Lane2005-11-172-22/+51
* Tweak buffer manager so that 'internal' accesses to a buffer do notTom Lane2005-10-271-14/+26
* Standard pgindent run for 8.1.Bruce Momjian2005-10-155-183/+177
* Do all accesses to shared buffer headers through volatile-qualifiedTom Lane2005-10-122-48/+49
* Convert the arithmetic for shared memory size calculation from 'int'Tom Lane2005-08-204-26/+27
* Reverse out Assert addition.Bruce Momjian2005-08-121-3/+1
* Improve documention on loading large data sets into plperl.Bruce Momjian2005-08-121-1/+3
* Remove BufferBlockPointers array in favor of a base + (bufnum) * BLCKSZTom Lane2005-08-122-25/+4
* Avoid useless loop overhead in AtEOXact routines when the backend isTom Lane2005-08-082-11/+17
* Cause ShutdownPostgres to do a normal transaction abort during backendTom Lane2005-08-082-4/+25
* Tweak BgBufferSync() so that a persistent write error on a dirty bufferTom Lane2005-08-021-8/+15
* Modify hash_search() API to prevent future occurrences of the errorTom Lane2005-05-292-11/+2
* Split the shared-memory array of PGPROC pointers out of the sinvalTom Lane2005-05-192-7/+7
* Remove unnecessary calls of FlushRelationBuffers: there is no needTom Lane2005-03-201-117/+59
* Add temp_buffers GUC variable to allow users to determine the sizeTom Lane2005-03-191-19/+27
* Upgrade localbuf.c to use a hash table instead of linear search toTom Lane2005-03-191-46/+100
* Need to reset local buffer pin counts, not only shared buffer pins,Tom Lane2005-03-181-1/+15
* Avoid infinite loop in InvalidateBuffer if we ourselves are holdingTom Lane2005-03-181-1/+4
* Replace the BufMgrLock with separate locks on the lookup hashtable andTom Lane2005-03-046-1779/+1170
* Ensure that all details of the ARC algorithm are hidden within freelist.c.Tom Lane2005-02-033-28/+114
* Phase 1 of fix for 'SMgrRelation hashtable corrupted' problem. ThisTom Lane2005-01-102-13/+9
* Repair bufmgr deadlock problem reported by Michael Wildpaner. Must takeTom Lane2005-01-031-11/+37
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-315-10/+10
* Assert that BufferIsPinned() in IncrBufferRefCount(), rather than usingNeil Conway2004-11-241-10/+3
* Allow background writing to be shut down by setting limit values to zero.Tom Lane2004-10-171-3/+9
* Give the ResourceOwner mechanism full responsibility for releasing bufferTom Lane2004-10-162-33/+61
* Remove BufferLocks[] array in favor of a single pointer to the bufferTom Lane2004-10-162-42/+33
* Repair possible failure to update hint bits back to disk, perTom Lane2004-10-151-16/+17
* Restructure subtransaction handling to reduce resource consumption,Tom Lane2004-09-161-6/+7
* I can't see any good reason for DropRelFileNodeBuffers to be issuingTom Lane2004-09-061-3/+3
* FlushRelationBuffers was also being a bit cavalier about whether theTom Lane2004-08-311-5/+5
* Pgindent run for 8.0.Bruce Momjian2004-08-295-151/+159
* Update copyright to 2004.Bruce Momjian2004-08-295-10/+10
* Invent ResourceOwner mechanism as per my recent proposal, and use it toTom Lane2004-07-172-135/+126
* Nested transactions. There is still much left to do, especially on theTom Lane2004-07-011-20/+99