Vt-d: fix feature boot messages
authorKeir Fraser <keir@xen.org>
Sat, 2 Oct 2010 14:00:05 +0000 (15:00 +0100)
committerKeir Fraser <keir@xen.org>
Sat, 2 Oct 2010 14:00:05 +0000 (15:00 +0100)
Changed vt-d feature boot messages from "supported" to "enabled" since
they reflect what is currently enabled in this Xen boot - not what is
supported by VT-d hardware.

Signed-off-by: Allen Kay <allen.m.kay@intel.com>
xen/drivers/passthrough/vtd/iommu.c

index c1bf71b84344bd3dbfd733a3e083c37fbaa0c03f..5e43a80e229c7370f8eb0d6d01c3401442d690be 100644 (file)
@@ -1987,9 +1987,9 @@ int __init intel_vtd_setup(void)
             "since Queued Invalidation isn't supported or enabled.\n");
     }
 
-#define P(p,s) printk("Intel VT-d %s %ssupported.\n", s, (p)? "" : "not ")
+#define P(p,s) printk("Intel VT-d %s %senabled.\n", s, (p)? "" : "not ")
     P(iommu_snoop, "Snoop Control");
-    P(iommu_passthrough, "DMA Passthrough");
+    P(iommu_passthrough, "Dom0 DMA Passthrough");
     P(iommu_qinval, "Queued Invalidation");
     P(iommu_intremap, "Interrupt Remapping");
 #undef P