diff options
author | Jakob Unterwurzacher | 2015-09-06 11:42:01 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-09-06 11:42:01 +0200 |
commit | 5f4c9240ca1092b47553fe34b9cc1b7836222b6a (patch) | |
tree | 4dd15443b1dd881f7df3ba9d8c4eb81364d0ab65 /frontend/fe_file.go | |
parent | 58d1e24b7c4eb69376dd0ec230c42ea9aeb70f2d (diff) |
Add streaming read and write benchmarks
Run using
./main_benchmark.bash
Also, rewrite command line args handling
Diffstat (limited to 'frontend/fe_file.go')
-rw-r--r-- | frontend/fe_file.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/fe_file.go b/frontend/fe_file.go index b417227..4679589 100644 --- a/frontend/fe_file.go +++ b/frontend/fe_file.go @@ -68,7 +68,7 @@ func (f *File) Open(ctx context.Context, req *fuse.OpenRequest, resp *fuse.OpenR func (f *File) Read(ctx context.Context, req *fuse.ReadRequest, resp *fuse.ReadResponse) error { - fmt.Printf("Read: o=%d l=%d\n", req.Offset, req.Size) + cryptfs.Debug.Printf("Read: o=%d l=%d\n", req.Offset, req.Size) // Read the backing ciphertext in one go iblocks := f.crfs.SplitRange(uint64(req.Offset), uint64(req.Size)) |