Lines Matching refs:add
46 struct physdev_pci_device_add add; in xen_add_device() member
49 .add.seg = pci_domain_nr(pci_dev->bus), in xen_add_device()
50 .add.bus = pci_dev->bus->number, in xen_add_device()
51 .add.devfn = pci_dev->devfn in xen_add_device()
53 struct physdev_pci_device_add *add = &add_ext.add; in xen_add_device() local
61 add->flags = XEN_PCI_DEV_VIRTFN; in xen_add_device()
62 add->physfn.bus = physfn->bus->number; in xen_add_device()
63 add->physfn.devfn = physfn->devfn; in xen_add_device()
67 add->flags = XEN_PCI_DEV_EXTFN; in xen_add_device()
96 add->optarr[0] = pxm; in xen_add_device()
97 add->flags |= XEN_PCI_DEV_PXM; in xen_add_device()
105 r = HYPERVISOR_physdev_op(PHYSDEVOP_pci_device_add, add); in xen_add_device()