MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vcpu_unlock_all

Function vcpu_unlock_all

freebsd/amd64/vmm/vmm_dev.c:160–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158}
159
160static void
161vcpu_unlock_all(struct vmmdev_softc *sc)
162{
163 int vcpu;
164 uint16_t maxcpus;
165
166 maxcpus = vm_get_maxcpus(sc->vm);
167 for (vcpu = 0; vcpu < maxcpus; vcpu++)
168 vcpu_unlock_one(sc, vcpu);
169}
170
171static struct vmmdev_softc *
172vmmdev_lookup(const char *name)

Callers 1

vmmdev_ioctlFunction · 0.85

Calls 2

vm_get_maxcpusFunction · 0.85
vcpu_unlock_oneFunction · 0.85

Tested by

no test coverage detected