You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
318 B
21 lines
318 B
//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
|
|
}
|