From 1c10e8337a8f7497758058da87032bb844e87dea Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 19 Sep 2018 13:11:51 +0200 Subject: vm/vmm: don't prefix vm name with syzkaller I am getting: failed to run vmctl -name syzkaller-ci-openbsd-main-test-0 vmctl: name too long The name is auto-generated from parts which ensure that it is unique. We can't easily name it shorter. So strip the syzkaller prefix, which is not strictly necessary. --- vm/vmm/vmm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/vmm/vmm.go b/vm/vmm/vmm.go index 4d67fc67e..dcf417f17 100644 --- a/vm/vmm/vmm.go +++ b/vm/vmm/vmm.go @@ -100,7 +100,7 @@ func (pool *Pool) Create(workdir string, index int) (vmimpl.Instance, error) { return nil, err } - name := fmt.Sprintf("syzkaller-%v-%v", pool.env.Name, index) + name := fmt.Sprintf("%v-%v", pool.env.Name, index) inst := &instance{ cfg: pool.cfg, index: index, -- cgit mrf-deployment