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] Quiet down wbinvd warning for verbose/debug builds of xe

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Quiet down wbinvd warning for verbose/debug builds of xen.
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Thu, 09 Feb 2006 15:08:08 +0000
Delivery-date: Thu, 09 Feb 2006 15:20:52 +0000
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/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/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 smh22@xxxxxxxxxxxxxxxxxxxx
# Node ID 01fa38f7920701c1529d0db72cf2fac478e5e92a
# Parent  66260f1a9bdedf30ece59763c360d7ac3e22a035
Quiet down wbinvd warning for verbose/debug builds of xen.

Signed-off-by: Steven Hand <steven@xxxxxxxxxxxxx>

diff -r 66260f1a9bde -r 01fa38f79207 xen/arch/x86/traps.c
--- a/xen/arch/x86/traps.c      Thu Feb  9 02:20:51 2006
+++ b/xen/arch/x86/traps.c      Thu Feb  9 10:32:17 2006
@@ -877,7 +877,9 @@
     case 0x09: /* WBINVD */
         /* Ignore the instruction if unprivileged. */
         if ( !cache_flush_permitted(v->domain) )
-            DPRINTK("Non-physdev domain attempted WBINVD.\n");
+            /* Non-physdev domain attempted WBINVD; ignore for now since
+               newer linux uses this in some start-of-day timing loops */
+            ;
         else
             wbinvd();
         break;

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Quiet down wbinvd warning for verbose/debug builds of xen., Xen patchbot -unstable <=