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
This commit is contained in:
François Revol 2011-11-04 17:54:31 +00:00
parent e5081da48c
commit 9b74cc6637

View File

@ -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 {