From 94caf40a8ee70ee69a7da4820319186fdf7af59f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 17 Oct 2005 13:52:18 +0000 Subject: [PATCH] Enlarged the buffer size to the standard CD block size - this greatly speeds up the boot process. Will experiment with larger sizes later (24k is the current limit, due to the memory layout used by the platform dependent code). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14402 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 c3020cacf7..9170bde2fb 100644 --- a/src/system/boot/loader/file_systems/tarfs/tarfs.cpp +++ b/src/system/boot/loader/file_systems/tarfs/tarfs.cpp @@ -522,7 +522,7 @@ TarFS::Volume::Init(boot::Partition *partition) char *out = NULL; - char in[512]; + char in[2048]; z_stream zStream = { (Bytef*)in, // next in sizeof(in), // avail in