summaryrefslogtreecommitdiff
path: root/src/backend/storage/buffer/bufmgr.c
AgeCommit message (Expand)Author
2006-10-22Remove an unnecessary HOLD_INTERRUPTS/RESUME_INTERRUPTS pair.Tom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-09-25Add a check to prevent overwriting valid data if smgrnblocks() gives aTom Lane
2006-09-17Marginal cleanup in arrangements for ensuring StrategyHintVacuum is clearedTom Lane
2006-07-23Split the buffer mapping table into multiple separately lockableTom Lane
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-04-14Repair a low-probability race condition identified by Qingqing Zhou.Tom Lane
2006-03-31Clean up WAL/buffer interactions as per my recent proposal. Get rid of theTom Lane
2006-03-29Clean up and document the API for XLogOpenRelation and XLogReadBuffer.Tom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-03-03Arrange to call AbsorbFsyncRequests every so often while performing aTom Lane
2006-01-06Fix ReadBuffer() to correctly handle the case where it's trying to extendTom Lane
2005-12-29Get rid of the SpinLockAcquire/SpinLockAcquire_NoHoldoff distinctionTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-17DropRelFileNodeBuffers failed to fix the state of the lookup hash tableTom Lane
2005-10-27Tweak buffer manager so that 'internal' accesses to a buffer do notTom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-12Do all accesses to shared buffer headers through volatile-qualifiedTom Lane
2005-08-12Reverse out Assert addition.Bruce Momjian
2005-08-12Improve documention on loading large data sets into plperl.Bruce Momjian
2005-08-12Remove BufferBlockPointers array in favor of a base + (bufnum) * BLCKSZTom Lane
2005-08-08Avoid useless loop overhead in AtEOXact routines when the backend isTom Lane
2005-08-08Cause ShutdownPostgres to do a normal transaction abort during backendTom Lane
2005-08-02Tweak BgBufferSync() so that a persistent write error on a dirty bufferTom Lane
2005-05-19Split the shared-memory array of PGPROC pointers out of the sinvalTom Lane
2005-03-20Remove unnecessary calls of FlushRelationBuffers: there is no needTom Lane
2005-03-18Avoid infinite loop in InvalidateBuffer if we ourselves are holdingTom Lane
2005-03-04Replace the BufMgrLock with separate locks on the lookup hashtable andTom Lane
2005-01-10Phase 1 of fix for 'SMgrRelation hashtable corrupted' problem. ThisTom Lane
2005-01-03Repair bufmgr deadlock problem reported by Michael Wildpaner. Must takeTom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-11-24Assert that BufferIsPinned() in IncrBufferRefCount(), rather than usingNeil Conway
2004-10-17Allow background writing to be shut down by setting limit values to zero.Tom Lane
2004-10-16Give the ResourceOwner mechanism full responsibility for releasing bufferTom Lane
2004-10-16Remove BufferLocks[] array in favor of a single pointer to the bufferTom Lane
2004-10-15Repair possible failure to update hint bits back to disk, perTom Lane
2004-09-06I can't see any good reason for DropRelFileNodeBuffers to be issuingTom Lane
2004-08-31FlushRelationBuffers was also being a bit cavalier about whether theTom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-07-17Invent ResourceOwner mechanism as per my recent proposal, and use it toTom Lane
2004-07-01Nested transactions. There is still much left to do, especially on theTom Lane
2004-06-18Tablespaces. Alternate database locations are dead, long live tablespaces.Tom Lane
2004-06-11Add some code to Assert that when we release pin on a buffer, we areTom Lane
2004-05-31Additional mop-up for sync-to-fsync changes: avoid issuing fsyncs forTom Lane
2004-05-31Minor code rationalization: FlushRelationBuffers just returns void,Tom Lane
2004-05-31Per previous discussions, get rid of use of sync(2) in favor ofTom Lane
2004-05-29Separate out bgwriter code into a logically separate module, ratherTom Lane
2004-05-08Get rid of rd_nblocks field in relcache entries. Turns out this wasTom Lane
2004-04-25Tiny assorted fixes: correct a typo in a comment in vacuumlazy.c, removeNeil Conway