2017-01-08 19:01:46 +00:00
|
|
|
// +build linux
|
|
|
|
|
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
|
2019-09-12 13:18:21 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2019-11-09 08:10:59 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/backend"
|
2017-01-08 19:01:46 +00:00
|
|
|
)
|
|
|
|
|
2019-11-29 02:33:18 +00:00
|
|
|
func createVolumeFile(fileName string, preallocate int64, memoryMapSizeMB uint32) (backend.BackendStorageFile, error) {
|
2019-10-18 10:01:45 +00:00
|
|
|
file, e := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0644)
|
2019-12-24 08:36:15 +00:00
|
|
|
if e != nil {
|
|
|
|
return nil, e
|
|
|
|
}
|
2017-01-08 19:01:46 +00:00
|
|
|
if preallocate != 0 {
|
|
|
|
syscall.Fallocate(int(file.Fd()), 1, 0, preallocate)
|
|
|
|
glog.V(0).Infof("Preallocated %d bytes disk space for %s", preallocate, fileName)
|
|
|
|
}
|
2019-12-24 08:36:15 +00:00
|
|
|
return backend.NewDiskFile(file), nil
|
2017-01-08 19:01:46 +00:00
|
|
|
}
|