aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/venti
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2008-07-03 22:40:58 -0400
committerRuss Cox <rsc@swtch.com>2008-07-03 22:40:58 -0400
commit030fb939ccf6883c70d5d04884e5b4a34527690f (patch)
tree049ef3a867acfa8368096ce6f15792afd961dd12 /src/cmd/venti
parent01c1b7633c0576ad30880ce8dd96aa20e9bfdbc2 (diff)
downloadplan9port-030fb939ccf6883c70d5d04884e5b4a34527690f.tar.gz
plan9port-030fb939ccf6883c70d5d04884e5b4a34527690f.tar.bz2
plan9port-030fb939ccf6883c70d5d04884e5b4a34527690f.zip
venti: mark checksum-queued arenas in http output
Diffstat (limited to 'src/cmd/venti')
-rw-r--r--src/cmd/venti/srv/httpd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cmd/venti/srv/httpd.c b/src/cmd/venti/srv/httpd.c
index 623d4e47..5a3f3c6f 100644
--- a/src/cmd/venti/srv/httpd.c
+++ b/src/cmd/venti/srv/httpd.c
@@ -562,6 +562,8 @@ darena(Hio *hout, Arena *arena)
hprint(hout, " mem=sealed");
if(arena->diskstats.sealed)
hprint(hout, " disk=sealed");
+ if(arena->inqueue)
+ hprint(hout, " inqueue");
hprint(hout, "\n");
if(scorecmp(zeroscore, arena->score) != 0)
hprint(hout, "\tscore=%V\n", arena->score);