2019-12-24 18:59:02 +00:00
|
|
|
// +build linux freebsd
|
2019-12-23 21:16:11 +00:00
|
|
|
|
|
|
|
package fs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MustFadviseSequentialRead hints the OS that f is read mostly sequentially.
|
|
|
|
//
|
|
|
|
// if prefetch is set, then the OS is hinted to prefetch f data.
|
|
|
|
func MustFadviseSequentialRead(f *os.File, prefetch bool) {
|
|
|
|
fd := int(f.Fd())
|
|
|
|
mode := unix.FADV_SEQUENTIAL
|
|
|
|
if prefetch {
|
|
|
|
mode |= unix.FADV_WILLNEED
|
|
|
|
}
|
|
|
|
if err := unix.Fadvise(int(fd), 0, 0, mode); err != nil {
|
|
|
|
logger.Panicf("FATAL: error returned from unix.Fadvise(%d): %s", mode, err)
|
|
|
|
}
|
|
|
|
}
|