aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/venti/readfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/venti/readfile.c')
-rw-r--r--src/cmd/venti/readfile.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/cmd/venti/readfile.c b/src/cmd/venti/readfile.c
index 2883350a..00eb43ef 100644
--- a/src/cmd/venti/readfile.c
+++ b/src/cmd/venti/readfile.c
@@ -4,6 +4,12 @@
#include <libsec.h>
#include <thread.h>
+enum
+{
+ // XXX What to do here?
+ VtMaxLumpSize = 65536,
+};
+
int chatty;
void
@@ -92,7 +98,7 @@ threadmain(int argc, char *argv[])
sysfatal("not a single file");
// open and read file
- c = vtcachealloc(z, root.blocksize, 32);
+ c = vtcachealloc(z, root.blocksize*32);
if(c == nil)
sysfatal("vtcachealloc: %r");
f = vtfileopenroot(c, &e);