support ZFS ARC on freebsd

This commit is contained in:
henrygd
2026-02-26 18:38:54 -05:00
parent b91eb6de40
commit 69fdcb36ab
4 changed files with 57 additions and 29 deletions

View File

@@ -0,0 +1,9 @@
//go:build !linux && !freebsd
package zfs
import "errors"
func ARCSize() (uint64, error) {
return 0, errors.ErrUnsupported
}