volume_create_linux.go 561 B

1234567891011121314151617181920
  1. // +build linux
  2. package storage
  3. import (
  4. "os"
  5. "syscall"
  6. "github.com/chrislusf/seaweedfs/weed/glog"
  7. "github.com/chrislusf/seaweedfs/weed/storage/backend"
  8. )
  9. func createVolumeFile(fileName string, preallocate int64, memoryMapSizeMB uint32) (backend.DataStorageBackend, error) {
  10. file, e := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0644)
  11. if preallocate != 0 {
  12. syscall.Fallocate(int(file.Fd()), 1, 0, preallocate)
  13. glog.V(0).Infof("Preallocated %d bytes disk space for %s", preallocate, fileName)
  14. }
  15. return backend.NewDiskFile(file), e
  16. }