aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/venti/srv/printmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/venti/srv/printmap.c')
-rw-r--r--src/cmd/venti/srv/printmap.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/cmd/venti/srv/printmap.c b/src/cmd/venti/srv/printmap.c
new file mode 100644
index 00000000..f3392ef8
--- /dev/null
+++ b/src/cmd/venti/srv/printmap.c
@@ -0,0 +1,42 @@
+#include "stdinc.h"
+#include "dat.h"
+#include "fns.h"
+
+void
+usage(void)
+{
+ fprint(2, "usage: printmap [-B blockcachesize] config\n");
+ threadexitsall("usage");
+}
+
+Config conf;
+
+void
+threadmain(int argc, char *argv[])
+{
+ u32int bcmem;
+ int fix;
+
+ fix = 0;
+ bcmem = 0;
+ ARGBEGIN{
+ case 'B':
+ bcmem = unittoull(ARGF());
+ break;
+ default:
+ usage();
+ break;
+ }ARGEND
+
+ if(!fix)
+ readonly = 1;
+
+ if(argc != 1)
+ usage();
+
+ if(initventi(argv[0], &conf) < 0)
+ sysfatal("can't init venti: %r");
+
+ printindex(1, mainindex);
+ threadexitsall(0);
+}