From 9b74cc663747ea962a5087fd009dbbcd1f29fb3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Fri, 4 Nov 2011 17:54:31 +0000 Subject: [PATCH] Further reduced the region allocated for the uncompressed data to 8 MB. Wastes a bit less time allocating pages for nothing, and makes debugging mmu support less verbose as well. The (gunzipped) tar file is still less than 4MB and will never be 8MB realistically anyway. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@43183 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/loader/file_systems/tarfs/tarfs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/boot/loader/file_systems/tarfs/tarfs.cpp b/src/system/boot/loader/file_systems/tarfs/tarfs.cpp index c85cb896a3..6b75f2733c 100644 --- a/src/system/boot/loader/file_systems/tarfs/tarfs.cpp +++ b/src/system/boot/loader/file_systems/tarfs/tarfs.cpp @@ -35,7 +35,7 @@ static const uint32 kFloppyArchiveOffset = BOOT_ARCHIVE_IMAGE_OFFSET * 1024; // defined at build time, see build/jam/BuildSetup -static const size_t kTarRegionSize = 16 * 1024 * 1024; // 16 MB +static const size_t kTarRegionSize = 8 * 1024 * 1024; // 8 MB namespace TarFS {