Searched refs:pptdev (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/amd64/vmm/io/ |
H A D | ppt.c | 71 struct pptdev *pptdev; member 82 struct pptdev { struct 85 TAILQ_ENTRY(pptdev) next; argument 117 static TAILQ_HEAD(, pptdev) pptdev_list = TAILQ_HEAD_INITIALIZER(pptdev_list); argument 153 struct pptdev *ppt; in ppt_attach() 175 struct pptdev *ppt; in ppt_detach() 198 DEFINE_CLASS_0(ppt, ppt_driver, ppt_methods, sizeof(struct pptdev)); 202 ppt_find(struct vm *vm, int bus, int slot, int func, struct pptdev **pptp) in ppt_find() 205 struct pptdev *ppt; in ppt_find() 226 ppt_unmap_all_mmio(struct vm *vm, struct pptdev *ppt) in ppt_unmap_all_mmio() [all …]
|
/freebsd/sys/amd64/vmm/ |
H A D | vmm_dev_machdep.c | 185 struct vm_pptdev *pptdev; in vmmdev_machdep_ioctl() local 299 pptdev = (struct vm_pptdev *)data; in vmmdev_machdep_ioctl() 300 error = ppt_disable_msix(vm, pptdev->bus, pptdev->slot, in vmmdev_machdep_ioctl() 301 pptdev->func); in vmmdev_machdep_ioctl() 315 pptdev = (struct vm_pptdev *)data; in vmmdev_machdep_ioctl() 316 error = vm_assign_pptdev(vm, pptdev->bus, pptdev->slot, in vmmdev_machdep_ioctl() 317 pptdev->func); in vmmdev_machdep_ioctl() 320 pptdev = (struct vm_pptdev *)data; in vmmdev_machdep_ioctl() 321 error = vm_unassign_pptdev(vm, pptdev->bus, pptdev->slot, in vmmdev_machdep_ioctl() 322 pptdev->func); in vmmdev_machdep_ioctl()
|