WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-4.0-testing] Vt-d: fix feature boot messages

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-4.0-testing] Vt-d: fix feature boot messages
From: "Xen patchbot-4.0-testing" <patchbot-4.0-testing@xxxxxxxxxxxxxxxxxxx>
Date: Sun, 17 Oct 2010 05:55:24 -0700
Delivery-date: Sun, 17 Oct 2010 05:57:36 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir@xxxxxxx>
# Date 1286028601 -3600
# Node ID 7f190f6f1f5a861383fc1a3a877ab63841c00a15
# Parent  b98a20571670d905bb32eef98e2991a563e9f4fa
Vt-d: fix feature boot messages

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@xxxxxxxxx>
xen-unstable changeset:   22221:3518149c4d5d
xen-unstable date:        Sat Oct 02 15:00:05 2010 +0100
---
 xen/drivers/passthrough/vtd/iommu.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff -r b98a20571670 -r 7f190f6f1f5a xen/drivers/passthrough/vtd/iommu.c
--- a/xen/drivers/passthrough/vtd/iommu.c       Fri Sep 24 15:58:28 2010 +0100
+++ b/xen/drivers/passthrough/vtd/iommu.c       Sat Oct 02 15:10:01 2010 +0100
@@ -1982,9 +1982,9 @@ int 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

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-4.0-testing] Vt-d: fix feature boot messages, Xen patchbot-4.0-testing <=