aboutsummaryrefslogtreecommitdiff
path: root/test/fuse_integration/fallocate_linux.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2025-08-31 12:25:41 -0700
committerchrislu <chris.lu@gmail.com>2025-08-31 12:25:41 -0700
commitd7dc9a47d59c44b8ec0e2bd3923b42d10ac37506 (patch)
tree5bbfff429be6bf6f6b318a0740498f793a724b15 /test/fuse_integration/fallocate_linux.go
parentfd1149e5b26c6a762980f2e36c44a19ab081ee8e (diff)
downloadseaweedfs-d7dc9a47d59c44b8ec0e2bd3923b42d10ac37506.tar.xz
seaweedfs-d7dc9a47d59c44b8ec0e2bd3923b42d10ac37506.zip
add more posix tests
Diffstat (limited to 'test/fuse_integration/fallocate_linux.go')
-rw-r--r--test/fuse_integration/fallocate_linux.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/fuse_integration/fallocate_linux.go b/test/fuse_integration/fallocate_linux.go
new file mode 100644
index 000000000..7b1feaa4e
--- /dev/null
+++ b/test/fuse_integration/fallocate_linux.go
@@ -0,0 +1,38 @@
+//go:build linux
+
+package fuse
+
+import (
+ "syscall"
+)
+
+// File allocation support for Linux
+
+const (
+ // Fallocate flags
+ 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 {
+ _, _, errno := syscall.Syscall6(syscall.SYS_FALLOCATE,
+ uintptr(fd),
+ uintptr(mode),
+ uintptr(offset),
+ uintptr(length),
+ 0, 0)
+
+ if errno != 0 {
+ return errno
+ }
+ return nil
+}
+
+func isFallocateSupported() bool {
+ return true
+}