From da11b26ec16ef9ed61045fdbb03c4090286bfeba Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 4 May 2026 02:07:52 +0900 Subject: container/initoverlay: configure via fsconfig This works around the page size limit at the cost of negligible performance regressions. Closes #34. Signed-off-by: Ophestra --- container/dispatcher_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'container/dispatcher_test.go') diff --git a/container/dispatcher_test.go b/container/dispatcher_test.go index c8a7b492..49631854 100644 --- a/container/dispatcher_test.go +++ b/container/dispatcher_test.go @@ -468,6 +468,14 @@ func (k *kstub) mountTmpfs(fsname, target string, flags uintptr, size int, perm stub.CheckArg(k.Stub, "perm", perm, 4)) } +func (k *kstub) mountOverlay(target string, options [][2]string) error { + k.Helper() + return k.Expects("mountOverlay").Error( + stub.CheckArg(k.Stub, "target", target, 0), + stub.CheckArgReflect(k.Stub, "options", options, 1), + ) +} + func (k *kstub) ensureFile(name string, perm, pperm os.FileMode) error { k.Helper() return k.Expects("ensureFile").Error( -- cgit v1.3.1