Lines Matching refs:drhd
43 struct list_head list; /* list of drhd units */
49 u8 ignored:1; /* ignore drhd */
73 #define for_each_drhd_unit(drhd) \
74 list_for_each_entry_rcu(drhd, &dmar_drhd_units, list, \
77 #define for_each_active_drhd_unit(drhd) \
78 list_for_each_entry_rcu(drhd, &dmar_drhd_units, list, \
80 if (drhd->ignored) {} else
82 #define for_each_active_iommu(i, drhd) \
83 list_for_each_entry_rcu(drhd, &dmar_drhd_units, list, \
85 if (i=drhd->iommu, drhd->ignored) {} else
87 #define for_each_iommu(i, drhd) \
88 list_for_each_entry_rcu(drhd, &dmar_drhd_units, list, \
90 if (i=drhd->iommu, 0) {} else