Files
podman/pkg/machine/qemu/options_linux_amd64.go
Colin Walters 406f130590 machine/linux: Use memory-backend-memfd by default
This is prep for using virtiofsd; it has no real
impact otherwise.

Signed-off-by: Colin Walters <walters@verbum.org>
2024-06-07 10:03:06 -04:00

17 lines
263 B
Go

//go:build linux && amd64
package qemu
var (
QemuCommand = "qemu-system-x86_64"
)
func (q *QEMUStubber) addArchOptions(_ *setNewMachineCMDOpts) []string {
opts := []string{
"-accel", "kvm",
"-cpu", "host",
"-M", "memory-backend=mem",
}
return opts
}