Searched refs:fLogSize (Results 1 – 4 of 4) sorted by relevance
/haiku/src/add-ons/kernel/file_systems/bfs/ |
H A D | Journal.cpp | 405 fLogSize(volume->Log().Length()), in Journal() 406 fMaxTransactionSize(fLogSize / 2 - 5), in Journal() 483 off_t firstBlockNumber = *_start % fLogSize; in _ReplayRunArray() 499 firstBlockNumber = (firstBlockNumber + 1) % fLogSize; in _ReplayRunArray() 523 blockNumber = (blockNumber + 1) % fLogSize; in _ReplayRunArray() 549 blockNumber = (blockNumber + 1) % fLogSize; in _ReplayRunArray() 603 start = start % fLogSize; in ReplayLog() 633 return CurrentTransactionSize() > fLogSize; in CurrentTransactionTooLarge() 663 % journal->fLogSize); in _TransactionWritten() 735 if (_TransactionSize() > fLogSize) { in _WriteTransactionToLog() [all …]
|
H A D | Journal.h | 69 uint32 fLogSize; variable 89 ? fLogSize - fVolume->LogEnd() + fVolume->LogStart() in FreeLogBlocks()
|
/haiku/src/add-ons/kernel/file_systems/ext2/ |
H A D | Journal.cpp | 96 fLogSize(0), in Journal() 143 fLogSize(0), in Journal() 328 ", size: %" B_PRIu32 "\n", fLogStart, fLogEnd, fLogSize); in FreeLogBlocks() 330 ? fLogSize - fLogEnd + fLogStart - 1 in FreeLogBlocks() 495 fMaxTransactionSize, fLogSize); in _WriteTransactionToLog() 654 if (status == B_OK && _FullTransactionSize() > fLogSize) { in _WriteTransactionToLog() 658 B_PRIu32 ")!\n", _FullTransactionSize(), fLogSize); in _WriteTransactionToLog() 776 fLogSize = superblock.NumBlocks(); in _LoadSuperBlock() 781 uint32 maxDescriptors = (fLogSize - 1) / (descriptorTags + 2); in _LoadSuperBlock() 784 fMaxTransactionSize += (fLogSize - 1) - fMaxTransactionSize - 2; in _LoadSuperBlock() [all …]
|
H A D | Journal.h | 281 uint32 fLogSize; variable
|