1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2025-09-09 21:02:46 +02:00
seaweedfs/test/fuse_integration/directio_linux.go
2025-08-31 12:25:41 -07:00

21 lines
318 B
Go

//go:build linux
package fuse
import (
"syscall"
)
// Direct I/O support for Linux
const (
O_DIRECT = 0x4000 // Direct I/O flag for Linux
)
func openDirectIO(path string, flags int, mode uint32) (int, error) {
return syscall.Open(path, flags|O_DIRECT, mode)
}
func isDirectIOSupported() bool {
return true
}