diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2009-04-03 10:19:32 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2009-04-03 16:45:46 -0400 |
commit | 8f912ba4d7cdaf7d31cf39fe5a9b7732308a256d (patch) | |
tree | 2f2e63e48c32471d729289c0772be1a093529228 /include/linux/dmar.h | |
parent | 20bec8ab1458c24bed0d5492ee15d87807fc415a (diff) |
intel-iommu: Add for_each_iommu() and for_each_active_iommu() macros
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Acked-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/dmar.h')
-rw-r--r-- | include/linux/dmar.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/dmar.h b/include/linux/dmar.h index 2f3427468956..0b4aa8069985 100644 --- a/include/linux/dmar.h +++ b/include/linux/dmar.h | |||
@@ -44,6 +44,14 @@ extern struct list_head dmar_drhd_units; | |||
44 | #define for_each_drhd_unit(drhd) \ | 44 | #define for_each_drhd_unit(drhd) \ |
45 | list_for_each_entry(drhd, &dmar_drhd_units, list) | 45 | list_for_each_entry(drhd, &dmar_drhd_units, list) |
46 | 46 | ||
47 | #define for_each_active_iommu(i, drhd) \ | ||
48 | list_for_each_entry(drhd, &dmar_drhd_units, list) \ | ||
49 | if (i=drhd->iommu, drhd->ignored) {} else | ||
50 | |||
51 | #define for_each_iommu(i, drhd) \ | ||
52 | list_for_each_entry(drhd, &dmar_drhd_units, list) \ | ||
53 | if (i=drhd->iommu, 0) {} else | ||
54 | |||
47 | extern int dmar_table_init(void); | 55 | extern int dmar_table_init(void); |
48 | extern int dmar_dev_scope_init(void); | 56 | extern int dmar_dev_scope_init(void); |
49 | 57 | ||