aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iommu
diff options
context:
space:
mode:
authorJoerg Roedel <jroedel@suse.de>2014-10-02 05:50:25 -0400
committerJoerg Roedel <jroedel@suse.de>2014-10-02 06:12:25 -0400
commit57384592c43375d2c9a14d82aebbdc95fdda9e9d (patch)
treeee31cf5f8d306c0bddd5ae2cf96c6b5d2b556979 /drivers/iommu
parent1196c2fb0407683c2df92d3d09f9144d42830894 (diff)
iommu/vt-d: Store bus information in RMRR PCI device path
This will be used later to match broken RMRR entries. Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'drivers/iommu')
-rw-r--r--drivers/iommu/dmar.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iommu/dmar.c b/drivers/iommu/dmar.c
index 8ed55b0a1ce4..68da1ab0f2cd 100644
--- a/drivers/iommu/dmar.c
+++ b/drivers/iommu/dmar.c
@@ -155,6 +155,7 @@ dmar_alloc_pci_notify_info(struct pci_dev *dev, unsigned long event)
155 if (event == BUS_NOTIFY_ADD_DEVICE) { 155 if (event == BUS_NOTIFY_ADD_DEVICE) {
156 for (tmp = dev; tmp; tmp = tmp->bus->self) { 156 for (tmp = dev; tmp; tmp = tmp->bus->self) {
157 level--; 157 level--;
158 info->path[level].bus = tmp->bus->number;
158 info->path[level].device = PCI_SLOT(tmp->devfn); 159 info->path[level].device = PCI_SLOT(tmp->devfn);
159 info->path[level].function = PCI_FUNC(tmp->devfn); 160 info->path[level].function = PCI_FUNC(tmp->devfn);
160 if (pci_is_root_bus(tmp->bus)) 161 if (pci_is_root_bus(tmp->bus))