volume_create.go 535 B

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