diff options
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/intel-iommu.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/pci/intel-iommu.c b/drivers/pci/intel-iommu.c index 97c36b2ee611..f23a02054bf7 100644 --- a/drivers/pci/intel-iommu.c +++ b/drivers/pci/intel-iommu.c | |||
@@ -168,6 +168,16 @@ struct dmar_domain { | |||
168 | int flags; | 168 | int flags; |
169 | }; | 169 | }; |
170 | 170 | ||
171 | /* PCI domain-device relationship */ | ||
172 | struct device_domain_info { | ||
173 | struct list_head link; /* link to domain siblings */ | ||
174 | struct list_head global; /* link to global list */ | ||
175 | u8 bus; /* PCI bus numer */ | ||
176 | u8 devfn; /* PCI devfn number */ | ||
177 | struct pci_dev *dev; /* it's NULL for PCIE-to-PCI bridge */ | ||
178 | struct dmar_domain *domain; /* pointer to domain */ | ||
179 | }; | ||
180 | |||
171 | static void flush_unmaps_timeout(unsigned long data); | 181 | static void flush_unmaps_timeout(unsigned long data); |
172 | 182 | ||
173 | DEFINE_TIMER(unmap_timer, flush_unmaps_timeout, 0, 0); | 183 | DEFINE_TIMER(unmap_timer, flush_unmaps_timeout, 0, 0); |