From 805cd92d90bc34bb8ced464cac8048595d014afd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 12 Dec 2004 20:47:50 +0000 Subject: [PATCH] Just a commentary changed. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10401 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp b/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp index 6eda4da0f7..b724242b52 100644 --- a/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp +++ b/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp @@ -648,6 +648,7 @@ BlockAllocator::Allocate(Transaction &transaction, Inode *inode, off_t numBlocks // b) reduce the maximum amount of blocks per block_run, so that the remaining // number of free blocks can be used in a useful manner (like 4 blocks) - // but that would also reduce the maximum file size + // c) have BlockRun::Length() return (length + 1). if (numBlocks > MAX_BLOCK_RUN_LENGTH) numBlocks = MAX_BLOCK_RUN_LENGTH;