aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vmm
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-09-11 15:33:45 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-09-11 15:33:45 +0200
commita54c2b7b920e69215f16cd02bb95957902ab1541 (patch)
tree639d5554879f3e475fc806cffa5608f9cfa630fd /vm/vmm
parent472947468d9571f86c2fde301a04478f22b3544b (diff)
syz-ci: de-hardcode list of VMs that support overcommit
We currently have this list in multiple places (somewhat diverged). Specify this "overcommit" property in VM implementations. In particular, we also want to allow overcommit for "vmm" type. Update #712
Diffstat (limited to 'vm/vmm')
-rw-r--r--vm/vmm/vmm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vmm/vmm.go b/vm/vmm/vmm.go
index 8d2ce5121..bbe820a6e 100644
--- a/vm/vmm/vmm.go
+++ b/vm/vmm/vmm.go
@@ -20,7 +20,7 @@ import (
)
func init() {
- vmimpl.Register("vmm", ctor)
+ vmimpl.Register("vmm", ctor, true)
}
type Config struct {