From 333c1dccc2f9af67b9c3d8513cca492d022fab4f Mon Sep 17 00:00:00 2001 From: rsc Date: Sat, 13 Mar 2004 04:35:13 +0000 Subject: Add binary fraction tree index. The old index code is still supported too. Buildindex and checkindex need to be revisited, though they should be easy to adapt. --- src/cmd/venti/stats.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/cmd/venti/stats.c') diff --git a/src/cmd/venti/stats.c b/src/cmd/venti/stats.c index a4d73248..079fd97b 100644 --- a/src/cmd/venti/stats.c +++ b/src/cmd/venti/stats.c @@ -44,6 +44,7 @@ printstats(void) fprint(2, "index disk reads=%,ld\n", stats.indexreads); fprint(2, "index disk reads for modify=%,ld\n", stats.indexwreads); fprint(2, "index disk reads for allocation=%,ld\n", stats.indexareads); + fprint(2, "index block splits=%,ld\n", stats.indexsplits); fprint(2, "index cache lookups=%,ld\n", stats.iclookups); fprint(2, "index cache hits=%,ld %d%%\n", stats.ichits, -- cgit v1.2.3