9078a77850
"git status" for reference: renamed: pathfs_frontend/args.go -> internal/fusefrontend/args.go renamed: pathfs_frontend/compat_darwin.go -> internal/fusefrontend/compat_darwin.go renamed: pathfs_frontend/compat_linux.go -> internal/fusefrontend/compat_linux.go renamed: pathfs_frontend/file.go -> internal/fusefrontend/file.go renamed: pathfs_frontend/file_holes.go -> internal/fusefrontend/file_holes.go renamed: pathfs_frontend/fs.go -> internal/fusefrontend/fs.go renamed: pathfs_frontend/fs_dir.go -> internal/fusefrontend/fs_dir.go renamed: pathfs_frontend/names.go -> internal/fusefrontend/names.go renamed: pathfs_frontend/write_lock.go -> internal/fusefrontend/write_lock.go modified: main.go
13 lines
426 B
Go
13 lines
426 B
Go
package fusefrontend
|
|
|
|
// prealloc - preallocate space without changing the file size. This prevents
|
|
// us from running out of space in the middle of an operation.
|
|
func prealloc(fd int, off int64, len int64) (err error) {
|
|
//
|
|
// Sorry, fallocate is not available on OSX at all and
|
|
// fcntl F_PREALLOCATE is not accessible from Go.
|
|
//
|
|
// See https://github.com/rfjakob/gocryptfs/issues/18 if you want to help.
|
|
return nil
|
|
}
|