diff options
| author | rsc <devnull@localhost> | 2004-03-13 04:35:13 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2004-03-13 04:35:13 +0000 |
| commit | 333c1dccc2f9af67b9c3d8513cca492d022fab4f (patch) | |
| tree | db2339b876058f9b21c228ce500336a88d6b954e /src/cmd/venti/stats.c | |
| parent | 9ffbb5adcaeec878d3b6db0f8b1f654e839b4689 (diff) | |
| download | plan9port-333c1dccc2f9af67b9c3d8513cca492d022fab4f.tar.gz plan9port-333c1dccc2f9af67b9c3d8513cca492d022fab4f.zip | |
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.
Diffstat (limited to 'src/cmd/venti/stats.c')
| -rw-r--r-- | src/cmd/venti/stats.c | 1 |
1 files changed, 1 insertions, 0 deletions
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, |
