2016-02-06 19:27:59 +01:00
|
|
|
package fusefrontend
|
2016-01-07 21:39:41 +01:00
|
|
|
|
|
|
|
// 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.
|
2016-01-09 13:04:48 +01:00
|
|
|
return nil
|
2016-01-07 21:39:41 +01:00
|
|
|
}
|