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-unstable] xend: Enable vHPET in HVM guests by defau

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] xend: Enable vHPET in HVM guests by default.
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Mon, 21 Dec 2009 03:05:20 -0800
Delivery-date: Mon, 21 Dec 2009 03:06:06 -0800
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.fraser@xxxxxxxxxx>
# Date 1261392628 0
# Node ID 0856275442705621b81a976801bb665bff2d6786
# Parent  2a48c1b68d51edc3ec46e3fd659068f9aafc3560
xend: Enable vHPET in HVM guests by default.

Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx>
---
 tools/python/xen/xend/XendConfig.py |    2 +-
 tools/python/xen/xm/create.py       |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff -r 2a48c1b68d51 -r 085627544270 tools/python/xen/xend/XendConfig.py
--- a/tools/python/xen/xend/XendConfig.py       Mon Dec 21 10:48:01 2009 +0000
+++ b/tools/python/xen/xend/XendConfig.py       Mon Dec 21 10:50:28 2009 +0000
@@ -501,7 +501,7 @@ class XendConfig(dict):
             if 'rtc_timeoffset' not in self['platform']:
                 self['platform']['rtc_timeoffset'] = 0
             if 'hpet' not in self['platform']:
-                self['platform']['hpet'] = 0
+                self['platform']['hpet'] = 1
             if 'xen_platform_pci' not in self['platform']:
                 self['platform']['xen_platform_pci'] = 1
             if 'vpt_align' not in self['platform']:
diff -r 2a48c1b68d51 -r 085627544270 tools/python/xen/xm/create.py
--- a/tools/python/xen/xm/create.py     Mon Dec 21 10:48:01 2009 +0000
+++ b/tools/python/xen/xm/create.py     Mon Dec 21 10:50:28 2009 +0000
@@ -217,7 +217,7 @@ gopts.var('pae', val='PAE',
           use="Disable or enable PAE of HVM domain.")
 
 gopts.var('hpet', val='HPET',
-          fn=set_int, default=0,
+          fn=set_int, default=1,
           use="Enable virtual high-precision event timer.")
 
 gopts.var('timer_mode', val='TIMER_MODE',

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] xend: Enable vHPET in HVM guests by default., Xen patchbot-unstable <=