Lines Matching refs:add
47 struct physdev_pci_device_add add; in xen_add_device() member
50 .add.seg = pci_domain_nr(pci_dev->bus), in xen_add_device()
51 .add.bus = pci_dev->bus->number, in xen_add_device()
52 .add.devfn = pci_dev->devfn in xen_add_device()
54 struct physdev_pci_device_add *add = &add_ext.add; in xen_add_device() local
62 add->flags = XEN_PCI_DEV_VIRTFN; in xen_add_device()
63 add->physfn.bus = physfn->bus->number; in xen_add_device()
64 add->physfn.devfn = physfn->devfn; in xen_add_device()
68 add->flags = XEN_PCI_DEV_EXTFN; in xen_add_device()
97 add->optarr[0] = pxm; in xen_add_device()
98 add->flags |= XEN_PCI_DEV_PXM; in xen_add_device()
106 r = HYPERVISOR_physdev_op(PHYSDEVOP_pci_device_add, add); in xen_add_device()