diff options
author | Jakob Unterwurzacher | 2015-10-04 15:43:46 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-10-04 15:45:46 +0200 |
commit | aa6fa7f3cf0c7a2ab078ad4648eca742e5acd232 (patch) | |
tree | 6f55bbc7ff7eba2d0fbfc2916c6866ad81f23641 /pathfs_frontend/file_holes.go | |
parent | b27edba2bbf374b2e98d19d9fb3aa9f84721baf7 (diff) |
Truncate: Logging improvements, show number of blocks as float
Diffstat (limited to 'pathfs_frontend/file_holes.go')
-rw-r--r-- | pathfs_frontend/file_holes.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pathfs_frontend/file_holes.go b/pathfs_frontend/file_holes.go index db27805..f906aa6 100644 --- a/pathfs_frontend/file_holes.go +++ b/pathfs_frontend/file_holes.go @@ -2,6 +2,7 @@ package pathfs_frontend import ( "github.com/hanwen/go-fuse/fuse" + "github.com/rfjakob/gocryptfs/cryptfs" ) // Will a write to offset "off" create a file hole? @@ -19,6 +20,7 @@ func (f *file) zeroPad(plainSize uint64) fuse.Status { lastBlockLen := plainSize % f.cfs.PlainBS() missing := f.cfs.PlainBS() - lastBlockLen pad := make([]byte, missing) + cryptfs.Debug.Printf("zeroPad: Writing %d bytes\n", missing) _, status := f.doWrite(pad, int64(plainSize)) return status } |