volume_create_linux.go 597 B

1234567891011121314151617181920212223
  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.BackendStorageFile, error) {
  10. file, e := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0644)
  11. if e != nil {
  12. return nil, e
  13. }
  14. if preallocate != 0 {
  15. syscall.Fallocate(int(file.Fd()), 1, 0, preallocate)
  16. glog.V(0).Infof("Preallocated %d bytes disk space for %s", preallocate, fileName)
  17. }
  18. return backend.NewDiskFile(file), nil
  19. }