aboutsummaryrefslogtreecommitdiff
path: root/test/fuse_integration/fallocate_unsupported.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fuse_integration/fallocate_unsupported.go')
-rw-r--r--test/fuse_integration/fallocate_unsupported.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/fuse_integration/fallocate_unsupported.go b/test/fuse_integration/fallocate_unsupported.go
new file mode 100644
index 000000000..8be54785d
--- /dev/null
+++ b/test/fuse_integration/fallocate_unsupported.go
@@ -0,0 +1,30 @@
+//go:build !linux && !darwin
+
+package fuse
+
+import (
+ "errors"
+)
+
+// File allocation support for unsupported platforms
+
+var ErrFallocateNotSupported = errors.New("fallocate not supported on this platform")
+
+const (
+ // Dummy flags for compatibility
+ FALLOC_FL_KEEP_SIZE = 0x01
+ FALLOC_FL_PUNCH_HOLE = 0x02
+ FALLOC_FL_NO_HIDE_STALE = 0x04
+ FALLOC_FL_COLLAPSE_RANGE = 0x08
+ FALLOC_FL_ZERO_RANGE = 0x10
+ FALLOC_FL_INSERT_RANGE = 0x20
+ FALLOC_FL_UNSHARE_RANGE = 0x40
+)
+
+func fallocateFile(fd int, mode int, offset int64, length int64) error {
+ return ErrFallocateNotSupported
+}
+
+func isFallocateSupported() bool {
+ return false
+}