Home
last modified time | relevance | path

Searched refs:xen_pcibk_backend (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.10/drivers/xen/xen-pciback/
Dpciback.h99 struct xen_pcibk_backend { struct
116 extern const struct xen_pcibk_backend xen_pcibk_vpci_backend; argument
117 extern const struct xen_pcibk_backend xen_pcibk_passthrough_backend;
118 extern const struct xen_pcibk_backend *xen_pcibk_backend;
125 if (xen_pcibk_backend && xen_pcibk_backend->add) in xen_pcibk_add_pci_dev()
126 return xen_pcibk_backend->add(pdev, dev, devid, publish_cb); in xen_pcibk_add_pci_dev()
133 if (xen_pcibk_backend && xen_pcibk_backend->release) in xen_pcibk_release_pci_dev()
134 return xen_pcibk_backend->release(pdev, dev, lock); in xen_pcibk_release_pci_dev()
141 if (xen_pcibk_backend && xen_pcibk_backend->get) in xen_pcibk_get_pci_dev()
142 return xen_pcibk_backend->get(pdev, domain, bus, devfn); in xen_pcibk_get_pci_dev()
[all …]
Dxenbus.c730 const struct xen_pcibk_backend *__read_mostly xen_pcibk_backend; variable
734 xen_pcibk_backend = &xen_pcibk_vpci_backend; in xen_pcibk_xenbus_register()
736 xen_pcibk_backend = &xen_pcibk_passthrough_backend; in xen_pcibk_xenbus_register()
737 pr_info("backend is %s\n", xen_pcibk_backend->name); in xen_pcibk_xenbus_register()
Dpassthrough.c188 const struct xen_pcibk_backend xen_pcibk_passthrough_backend = {
Dvpci.c262 const struct xen_pcibk_backend xen_pcibk_vpci_backend = {